diff --git a/move-basics/ownership-and-scope.html b/move-basics/ownership-and-scope.html index 4766831..f1b1995 100644 --- a/move-basics/ownership-and-scope.html +++ b/move-basics/ownership-and-scope.html @@ -205,10 +205,15 @@

Ownership

let a = 1; // a is owned by the `owner` function } // a is dropped here + public fun other() { + let b = 2; // b is owned by the `other` function + } // b is dropped here + #[test] fun test_owner() { owner(); - // a is not valid here + other(); + // a & b is not valid here } } diff --git a/print.html b/print.html index 5d1f1e8..86b5618 100644 --- a/print.html +++ b/print.html @@ -3327,10 +3327,15 @@

Ownership

let a = 1; // a is owned by the `owner` function } // a is dropped here + public fun other() { + let b = 2; // b is owned by the `other` function + } // b is dropped here + #[test] fun test_owner() { owner(); - // a is not valid here + other(); + // a & b is not valid here } } @@ -4818,7 +4823,7 @@

init
fun init(ctx: &mut TxContext) { /* ... */}
 fun init(otw: OTW, ctx: &mut TxContext) { /* ... */ }
@@ -5711,7 +5716,7 @@ 

Witness in Mo } }

-

The instance of the struct W is passed into the new function to create an Instance<W>, thereby +

The instance of the struct W is passed into the new_instance function to create an Instance<W>, thereby proving that the module book::witness_source owns the type W.

Instantiating a Generic Type

Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting @@ -5987,7 +5992,7 @@

Capabilities, such as type -safety and expressiveness. The signature for the admin_function is not very explicit, can be +safety and expressiveness. The signature for the admin_action is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.

@@ -6383,7 +6388,7 @@

Encoding

let bool_bytes = bcs::to_bytes(&true); // 0x2a - just a single byte let u8_bytes = bcs::to_bytes(&42u8); -// 0x000000000000002a - 8 bytes +// 0x2a00000000000000 - 8 bytes let u64_bytes = bcs::to_bytes(&42u64); // address is a fixed sequence of 32 bytes // 0x0000000000000000000000000000000000000000000000000000000000000002 diff --git a/programmability/bcs.html b/programmability/bcs.html index 2b485d0..f72f13e 100644 --- a/programmability/bcs.html +++ b/programmability/bcs.html @@ -221,7 +221,7 @@

Encoding

let bool_bytes = bcs::to_bytes(&true); // 0x2a - just a single byte let u8_bytes = bcs::to_bytes(&42u8); -// 0x000000000000002a - 8 bytes +// 0x2a00000000000000 - 8 bytes let u64_bytes = bcs::to_bytes(&42u64); // address is a fixed sequence of 32 bytes // 0x0000000000000000000000000000000000000000000000000000000000000002 diff --git a/programmability/module-initializer.html b/programmability/module-initializer.html index 808bfe4..9ccb669 100644 --- a/programmability/module-initializer.html +++ b/programmability/module-initializer.html @@ -241,7 +241,7 @@

init
fun init(ctx: &mut TxContext) { /* ... */}
 fun init(otw: OTW, ctx: &mut TxContext) { /* ... */ }
diff --git a/programmability/publisher.html b/programmability/publisher.html
index ef654e0..b63e633 100644
--- a/programmability/publisher.html
+++ b/programmability/publisher.html
@@ -248,7 +248,7 @@ 

Capabilities, such as type -safety and expressiveness. The signature for the admin_function is not very explicit, can be +safety and expressiveness. The signature for the admin_action is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.

diff --git a/programmability/witness-pattern.html b/programmability/witness-pattern.html index 5a8fa96..1b617de 100644 --- a/programmability/witness-pattern.html +++ b/programmability/witness-pattern.html @@ -225,7 +225,7 @@

Witness in Mo } }

-

The instance of the struct W is passed into the new function to create an Instance<W>, thereby +

The instance of the struct W is passed into the new_instance function to create an Instance<W>, thereby proving that the module book::witness_source owns the type W.

Instantiating a Generic Type

Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting diff --git a/reference/print.html b/reference/print.html index f34f1b5..7f111bd 100644 --- a/reference/print.html +++ b/reference/print.html @@ -1094,7 +1094,7 @@

Multiple declarations with structs

-

let can also introduce more than one local at a time when destructuring (or matching against) a +

let can also introduce more than one local variables at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this:

public struct T { f1: u64, f2: u64 }
@@ -1107,7 +1107,7 @@ 

public struct P(u64, u64)

and

-
let P(local1, local2) = T { f1: 1, f2: 2 };
+
let P (local1, local2) = P ( 1, 2 );
 // local1: u64
 // local2: u64
 
diff --git a/reference/searchindex.js b/reference/searchindex.js index 7b1422a..1fd36db 100644 --- a/reference/searchindex.js +++ b/reference/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["introduction.html#the-move-reference","modules.html#modules","modules.html#syntax","modules.html#names","modules.html#members","primitive-types.html#primitive-types","primitive-types/integers.html#integers","primitive-types/integers.html#literals","primitive-types/integers.html#examples","primitive-types/integers.html#operations","primitive-types/integers.html#arithmetic","primitive-types/integers.html#bitwise","primitive-types/integers.html#bit-shifts","primitive-types/integers.html#comparisons","primitive-types/integers.html#equality","primitive-types/integers.html#casting","primitive-types/integers.html#ownership","primitive-types/bool.html#bool","primitive-types/bool.html#literals","primitive-types/bool.html#operations","primitive-types/bool.html#logical","primitive-types/bool.html#control-flow","primitive-types/bool.html#ownership","primitive-types/address.html#address","primitive-types/address.html#addresses-and-their-syntax","primitive-types/address.html#named-addresses","primitive-types/address.html#examples","primitive-types/vector.html#vector","primitive-types/vector.html#literals","primitive-types/vector.html#general-vector-literals","primitive-types/vector.html#vector-literals","primitive-types/vector.html#operations","primitive-types/vector.html#example","primitive-types/vector.html#destroying-and-copying-vectors","primitive-types/vector.html#ownership","primitive-types/references.html#references","primitive-types/references.html#reference-operators","primitive-types/references.html#reading-and-writing-through-references","primitive-types/references.html#freeze-inference","primitive-types/references.html#subtyping","primitive-types/references.html#ownership","primitive-types/references.html#references-cannot-be-stored","primitive-types/tuples.html#tuples-and-unit","primitive-types/tuples.html#literals","primitive-types/tuples.html#examples","primitive-types/tuples.html#operations","primitive-types/tuples.html#destructuring","primitive-types/tuples.html#subtyping","primitive-types/tuples.html#ownership","variables.html#local-variables-and-scope","variables.html#declaring-local-variables","variables.html#let-bindings","variables.html#variables-must-be-assigned-before-use","variables.html#valid-variable-names","variables.html#type-annotations","variables.html#when-annotations-are-necessary","variables.html#multiple-declarations-with-tuples","variables.html#multiple-declarations-with-structs","variables.html#destructuring-against-references","variables.html#ignoring-values","variables.html#general-let-grammar","variables.html#mutations","variables.html#assignments","variables.html#mutating-through-a-reference","variables.html#scopes","variables.html#expression-blocks","variables.html#shadowing","variables.html#move-and-copy","variables.html#safety","variables.html#inference","equality.html#equality","equality.html#operations","equality.html#typing","equality.html#typing-with-references","equality.html#automatic-borrowing","equality.html#restrictions","equality.html#avoid-extra-copies","abort-and-assert.html#abort-and-assert","abort-and-assert.html#abort","abort-and-assert.html#assert","abort-and-assert.html#abort-codes-in-the-move-vm","abort-and-assert.html#the-type-of-abort","control-flow.html#control-flow","control-flow/conditionals.html#conditional-if-expressions","control-flow/conditionals.html#grammar-for-conditionals","control-flow/loops.html#loop-constructs-in-move","control-flow/loops.html#while-loops","control-flow/loops.html#using-break-inside-of-while-loops","control-flow/loops.html#using-continue-inside-of-while-loops","control-flow/loops.html#loop-expressions","control-flow/loops.html#using-break-with-values-in-loop","control-flow/loops.html#using-continue-inside-of-loop-expressions","control-flow/loops.html#the-type-of-while-and-loop","control-flow/labeled-control-flow.html#labeled-control-flow","control-flow/pattern-matching.html#pattern-matching","control-flow/pattern-matching.html#match-syntax","control-flow/pattern-matching.html#pattern-syntax","control-flow/pattern-matching.html#patterns-and-variables","control-flow/pattern-matching.html#combining-patterns","control-flow/pattern-matching.html#restrictions-on-some-patterns","control-flow/pattern-matching.html#pattern-typing","control-flow/pattern-matching.html#matching","control-flow/pattern-matching.html#matching-constructors","control-flow/pattern-matching.html#ability-constraints","control-flow/pattern-matching.html#exhaustiveness","control-flow/pattern-matching.html#guards","control-flow/pattern-matching.html#limitations-on-specific-patterns","control-flow/pattern-matching.html#mutability-usage","control-flow/pattern-matching.html#-usage","functions.html#functions","functions.html#declaration","functions.html#visibility","functions.html#entry-modifier","functions.html#name","functions.html#type-parameters","functions.html#parameters","functions.html#return-type","functions.html#function-body","functions.html#native-functions","functions.html#calling","functions.html#returning-values","functions.html#return-expression","structs.html#structs-and-resources","structs.html#defining-structs","structs.html#visibility","structs.html#abilities","structs.html#naming","structs.html#using-structs","structs.html#creating-structs","structs.html#destroying-structs-via-pattern-matching","structs.html#accessing-struct-fields","structs.html#borrowing-structs-and-fields","structs.html#reading-and-writing-fields","structs.html#privileged-struct-operations","structs.html#ownership","structs.html#storage","enums.html#enumerations","enums.html#defining-enums","enums.html#visibility","enums.html#abilities","enums.html#naming","enums.html#using-enums","enums.html#creating-enum-variants","enums.html#pattern-matching-enum-variants-and-destructuring","enums.html#overwriting-to-enum-values","constants.html#constants","constants.html#declaration","constants.html#naming","constants.html#visibility","constants.html#valid-expressions","constants.html#values","constants.html#complex-expressions","generics.html#generics","generics.html#declaring-type-parameters","generics.html#generic-functions","generics.html#generic-structs","generics.html#type-arguments","generics.html#calling-generic-functions","generics.html#using-generic-structs","generics.html#type-argument-mismatch","generics.html#type-inference","generics.html#integers","generics.html#unused-type-parameters","generics.html#phantom-type-parameters","generics.html#constraints","generics.html#declaring-constraints","generics.html#verifying-constraints","generics.html#limitations-on-recursions","generics.html#recursive-structs","generics.html#advanced-topic-type-level-recursions","abilities.html#abilities","abilities.html#the-four-abilities","abilities.html#copy","abilities.html#drop","abilities.html#store","abilities.html#key","abilities.html#builtin-types","abilities.html#annotating-structs-and-enums","abilities.html#conditional-abilities-and-generic-types","abilities.html#example-conditional-copy","abilities.html#example-conditional-drop","abilities.html#example-conditional-store","abilities.html#example-conditional-key","uses.html#uses-and-aliases","uses.html#syntax","uses.html#multiple-aliases","uses.html#self-aliases","uses.html#multiple-aliases-for-the-same-definition","uses.html#nested-imports","uses.html#inside-a-module","uses.html#inside-an-expression","uses.html#naming-rules","uses.html#uniqueness","uses.html#shadowing","uses.html#unused-use-or-alias","method-syntax.html#methods","method-syntax.html#syntax","method-syntax.html#method-resolution","method-syntax.html#functions-in-the-defining-module","method-syntax.html#use-fun-aliases","method-syntax.html#public-use-fun-aliases","method-syntax.html#interactions-with-use-aliases","method-syntax.html#scoping","method-syntax.html#automatic-borrowing","method-syntax.html#chaining","index-syntax.html#index-syntax","index-syntax.html#overview-and-summary","index-syntax.html#usage","index-syntax.html#index-functions-take-flexible-arguments","index-syntax.html#defining-index-syntax-functions","index-syntax.html#declaration","index-syntax.html#type-constraints","index-syntax.html#type-compatibility","packages.html#packages","packages.html#package-layout-and-manifest-syntax","packages.html#movetoml","packages.html#named-addresses-during-compilation","packages.html#declaring-named-addresses","packages.html#scope-and-renaming-of-named-addresses","packages.html#instantiating-named-addresses","packages.html#usage-and-artifacts","packages.html#artifacts","packages.html#movelock","packages.html#the-move-section","packages.html#the-movepackage-sections","packages.html#the-movetoolchain-version-section","unit-testing.html#unit-tests","unit-testing.html#test-annotations","unit-testing.html#expected-failures","unit-testing.html#1-expected_failureabort_code--","unit-testing.html#2-expected_failurearithmetic_error-location--","unit-testing.html#3-expected_failureout_of_gas-location--","unit-testing.html#4-expected_failurevector_error-minor_status---location--","unit-testing.html#5-expected_failure","unit-testing.html#test-only-annotations","unit-testing.html#running-unit-tests","unit-testing.html#example","unit-testing.html#running-tests","unit-testing.html#using-test-flags","coding-conventions.html","friends.html#deprecated-friends","friends.html#friend-declaration","friends.html#friend-declaration-rules"],"index":{"documentStore":{"docInfo":{"0":{"body":61,"breadcrumbs":4,"title":2},"1":{"body":52,"breadcrumbs":2,"title":1},"10":{"body":79,"breadcrumbs":4,"title":1},"100":{"body":89,"breadcrumbs":6,"title":2},"101":{"body":209,"breadcrumbs":5,"title":1},"102":{"body":148,"breadcrumbs":6,"title":2},"103":{"body":95,"breadcrumbs":6,"title":2},"104":{"body":231,"breadcrumbs":5,"title":1},"105":{"body":148,"breadcrumbs":5,"title":1},"106":{"body":6,"breadcrumbs":7,"title":3},"107":{"body":109,"breadcrumbs":6,"title":2},"108":{"body":123,"breadcrumbs":5,"title":1},"109":{"body":16,"breadcrumbs":2,"title":1},"11":{"body":44,"breadcrumbs":4,"title":1},"110":{"body":38,"breadcrumbs":2,"title":1},"111":{"body":188,"breadcrumbs":2,"title":1},"112":{"body":125,"breadcrumbs":3,"title":2},"113":{"body":25,"breadcrumbs":2,"title":1},"114":{"body":28,"breadcrumbs":3,"title":2},"115":{"body":46,"breadcrumbs":2,"title":1},"116":{"body":62,"breadcrumbs":3,"title":2},"117":{"body":34,"breadcrumbs":3,"title":2},"118":{"body":49,"breadcrumbs":3,"title":2},"119":{"body":105,"breadcrumbs":2,"title":1},"12":{"body":68,"breadcrumbs":5,"title":2},"120":{"body":59,"breadcrumbs":3,"title":2},"121":{"body":114,"breadcrumbs":3,"title":2},"122":{"body":65,"breadcrumbs":3,"title":2},"123":{"body":68,"breadcrumbs":3,"title":2},"124":{"body":29,"breadcrumbs":2,"title":1},"125":{"body":139,"breadcrumbs":2,"title":1},"126":{"body":43,"breadcrumbs":2,"title":1},"127":{"body":0,"breadcrumbs":3,"title":2},"128":{"body":118,"breadcrumbs":3,"title":2},"129":{"body":174,"breadcrumbs":6,"title":5},"13":{"body":31,"breadcrumbs":4,"title":1},"130":{"body":77,"breadcrumbs":4,"title":3},"131":{"body":89,"breadcrumbs":4,"title":3},"132":{"body":249,"breadcrumbs":4,"title":3},"133":{"body":100,"breadcrumbs":4,"title":3},"134":{"body":190,"breadcrumbs":2,"title":1},"135":{"body":18,"breadcrumbs":2,"title":1},"136":{"body":86,"breadcrumbs":2,"title":1},"137":{"body":118,"breadcrumbs":3,"title":2},"138":{"body":23,"breadcrumbs":2,"title":1},"139":{"body":87,"breadcrumbs":2,"title":1},"14":{"body":33,"breadcrumbs":4,"title":1},"140":{"body":46,"breadcrumbs":2,"title":1},"141":{"body":0,"breadcrumbs":3,"title":2},"142":{"body":127,"breadcrumbs":4,"title":3},"143":{"body":392,"breadcrumbs":6,"title":5},"144":{"body":35,"breadcrumbs":4,"title":3},"145":{"body":26,"breadcrumbs":2,"title":1},"146":{"body":26,"breadcrumbs":2,"title":1},"147":{"body":75,"breadcrumbs":2,"title":1},"148":{"body":16,"breadcrumbs":2,"title":1},"149":{"body":18,"breadcrumbs":3,"title":2},"15":{"body":69,"breadcrumbs":4,"title":1},"150":{"body":25,"breadcrumbs":2,"title":1},"151":{"body":122,"breadcrumbs":3,"title":2},"152":{"body":50,"breadcrumbs":2,"title":1},"153":{"body":12,"breadcrumbs":4,"title":3},"154":{"body":45,"breadcrumbs":3,"title":2},"155":{"body":31,"breadcrumbs":3,"title":2},"156":{"body":0,"breadcrumbs":3,"title":2},"157":{"body":26,"breadcrumbs":4,"title":3},"158":{"body":49,"breadcrumbs":4,"title":3},"159":{"body":33,"breadcrumbs":4,"title":3},"16":{"body":15,"breadcrumbs":4,"title":1},"160":{"body":105,"breadcrumbs":3,"title":2},"161":{"body":87,"breadcrumbs":2,"title":1},"162":{"body":116,"breadcrumbs":4,"title":3},"163":{"body":362,"breadcrumbs":4,"title":3},"164":{"body":49,"breadcrumbs":2,"title":1},"165":{"body":38,"breadcrumbs":3,"title":2},"166":{"body":97,"breadcrumbs":3,"title":2},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":53,"breadcrumbs":3,"title":2},"169":{"body":169,"breadcrumbs":6,"title":5},"17":{"body":8,"breadcrumbs":4,"title":1},"170":{"body":80,"breadcrumbs":3,"title":1},"171":{"body":61,"breadcrumbs":4,"title":2},"172":{"body":29,"breadcrumbs":3,"title":1},"173":{"body":52,"breadcrumbs":3,"title":1},"174":{"body":48,"breadcrumbs":3,"title":1},"175":{"body":42,"breadcrumbs":3,"title":1},"176":{"body":62,"breadcrumbs":4,"title":2},"177":{"body":209,"breadcrumbs":5,"title":3},"178":{"body":159,"breadcrumbs":6,"title":4},"179":{"body":67,"breadcrumbs":5,"title":3},"18":{"body":4,"breadcrumbs":4,"title":1},"180":{"body":91,"breadcrumbs":5,"title":3},"181":{"body":49,"breadcrumbs":5,"title":3},"182":{"body":50,"breadcrumbs":5,"title":3},"183":{"body":18,"breadcrumbs":4,"title":2},"184":{"body":143,"breadcrumbs":3,"title":1},"185":{"body":38,"breadcrumbs":4,"title":2},"186":{"body":38,"breadcrumbs":4,"title":2},"187":{"body":22,"breadcrumbs":6,"title":4},"188":{"body":34,"breadcrumbs":4,"title":2},"189":{"body":45,"breadcrumbs":4,"title":2},"19":{"body":0,"breadcrumbs":4,"title":1},"190":{"body":121,"breadcrumbs":4,"title":2},"191":{"body":40,"breadcrumbs":4,"title":2},"192":{"body":64,"breadcrumbs":3,"title":1},"193":{"body":98,"breadcrumbs":3,"title":1},"194":{"body":18,"breadcrumbs":5,"title":3},"195":{"body":79,"breadcrumbs":3,"title":1},"196":{"body":12,"breadcrumbs":3,"title":1},"197":{"body":73,"breadcrumbs":4,"title":2},"198":{"body":57,"breadcrumbs":5,"title":3},"199":{"body":332,"breadcrumbs":5,"title":3},"2":{"body":41,"breadcrumbs":2,"title":1},"20":{"body":34,"breadcrumbs":4,"title":1},"200":{"body":261,"breadcrumbs":6,"title":4},"201":{"body":75,"breadcrumbs":5,"title":3},"202":{"body":57,"breadcrumbs":3,"title":1},"203":{"body":173,"breadcrumbs":4,"title":2},"204":{"body":98,"breadcrumbs":3,"title":1},"205":{"body":50,"breadcrumbs":5,"title":2},"206":{"body":103,"breadcrumbs":5,"title":2},"207":{"body":85,"breadcrumbs":4,"title":1},"208":{"body":92,"breadcrumbs":8,"title":5},"209":{"body":87,"breadcrumbs":7,"title":4},"21":{"body":12,"breadcrumbs":5,"title":2},"210":{"body":179,"breadcrumbs":4,"title":1},"211":{"body":116,"breadcrumbs":5,"title":2},"212":{"body":191,"breadcrumbs":5,"title":2},"213":{"body":48,"breadcrumbs":2,"title":1},"214":{"body":157,"breadcrumbs":5,"title":4},"215":{"body":386,"breadcrumbs":2,"title":1},"216":{"body":42,"breadcrumbs":5,"title":4},"217":{"body":144,"breadcrumbs":4,"title":3},"218":{"body":188,"breadcrumbs":5,"title":4},"219":{"body":79,"breadcrumbs":4,"title":3},"22":{"body":15,"breadcrumbs":4,"title":1},"220":{"body":35,"breadcrumbs":3,"title":2},"221":{"body":54,"breadcrumbs":2,"title":1},"222":{"body":114,"breadcrumbs":2,"title":1},"223":{"body":73,"breadcrumbs":3,"title":2},"224":{"body":52,"breadcrumbs":3,"title":2},"225":{"body":56,"breadcrumbs":4,"title":3},"226":{"body":48,"breadcrumbs":4,"title":2},"227":{"body":128,"breadcrumbs":4,"title":2},"228":{"body":11,"breadcrumbs":4,"title":2},"229":{"body":70,"breadcrumbs":5,"title":3},"23":{"body":91,"breadcrumbs":4,"title":1},"230":{"body":62,"breadcrumbs":6,"title":4},"231":{"body":57,"breadcrumbs":6,"title":4},"232":{"body":118,"breadcrumbs":8,"title":6},"233":{"body":33,"breadcrumbs":4,"title":2},"234":{"body":78,"breadcrumbs":4,"title":2},"235":{"body":97,"breadcrumbs":5,"title":3},"236":{"body":90,"breadcrumbs":3,"title":1},"237":{"body":36,"breadcrumbs":4,"title":2},"238":{"body":231,"breadcrumbs":5,"title":3},"239":{"body":5,"breadcrumbs":2,"title":2},"24":{"body":82,"breadcrumbs":5,"title":2},"240":{"body":29,"breadcrumbs":3,"title":2},"241":{"body":102,"breadcrumbs":3,"title":2},"242":{"body":161,"breadcrumbs":4,"title":3},"25":{"body":71,"breadcrumbs":5,"title":2},"26":{"body":64,"breadcrumbs":4,"title":1},"27":{"body":27,"breadcrumbs":4,"title":1},"28":{"body":0,"breadcrumbs":4,"title":1},"29":{"body":70,"breadcrumbs":6,"title":3},"3":{"body":139,"breadcrumbs":2,"title":1},"30":{"body":145,"breadcrumbs":5,"title":2},"31":{"body":196,"breadcrumbs":4,"title":1},"32":{"body":27,"breadcrumbs":4,"title":1},"33":{"body":115,"breadcrumbs":6,"title":3},"34":{"body":13,"breadcrumbs":4,"title":1},"35":{"body":31,"breadcrumbs":4,"title":1},"36":{"body":151,"breadcrumbs":5,"title":2},"37":{"body":125,"breadcrumbs":7,"title":4},"38":{"body":87,"breadcrumbs":5,"title":2},"39":{"body":135,"breadcrumbs":4,"title":1},"4":{"body":34,"breadcrumbs":2,"title":1},"40":{"body":53,"breadcrumbs":4,"title":1},"41":{"body":108,"breadcrumbs":5,"title":2},"42":{"body":128,"breadcrumbs":6,"title":2},"43":{"body":68,"breadcrumbs":5,"title":1},"44":{"body":43,"breadcrumbs":5,"title":1},"45":{"body":5,"breadcrumbs":5,"title":1},"46":{"body":97,"breadcrumbs":5,"title":1},"47":{"body":75,"breadcrumbs":5,"title":1},"48":{"body":26,"breadcrumbs":5,"title":1},"49":{"body":25,"breadcrumbs":6,"title":3},"5":{"body":31,"breadcrumbs":4,"title":2},"50":{"body":0,"breadcrumbs":6,"title":3},"51":{"body":74,"breadcrumbs":4,"title":1},"52":{"body":39,"breadcrumbs":7,"title":4},"53":{"body":43,"breadcrumbs":6,"title":3},"54":{"body":92,"breadcrumbs":5,"title":2},"55":{"body":114,"breadcrumbs":5,"title":2},"56":{"body":77,"breadcrumbs":6,"title":3},"57":{"body":174,"breadcrumbs":6,"title":3},"58":{"body":146,"breadcrumbs":6,"title":3},"59":{"body":48,"breadcrumbs":5,"title":2},"6":{"body":71,"breadcrumbs":4,"title":1},"60":{"body":129,"breadcrumbs":5,"title":2},"61":{"body":0,"breadcrumbs":4,"title":1},"62":{"body":124,"breadcrumbs":4,"title":1},"63":{"body":79,"breadcrumbs":6,"title":3},"64":{"body":67,"breadcrumbs":4,"title":1},"65":{"body":182,"breadcrumbs":5,"title":2},"66":{"body":136,"breadcrumbs":4,"title":1},"67":{"body":110,"breadcrumbs":5,"title":2},"68":{"body":21,"breadcrumbs":4,"title":1},"69":{"body":116,"breadcrumbs":4,"title":1},"7":{"body":48,"breadcrumbs":4,"title":1},"70":{"body":5,"breadcrumbs":2,"title":1},"71":{"body":21,"breadcrumbs":2,"title":1},"72":{"body":79,"breadcrumbs":2,"title":1},"73":{"body":64,"breadcrumbs":3,"title":2},"74":{"body":41,"breadcrumbs":3,"title":2},"75":{"body":97,"breadcrumbs":2,"title":1},"76":{"body":82,"breadcrumbs":4,"title":3},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":137,"breadcrumbs":3,"title":1},"79":{"body":111,"breadcrumbs":3,"title":1},"8":{"body":97,"breadcrumbs":4,"title":1},"80":{"body":162,"breadcrumbs":6,"title":4},"81":{"body":44,"breadcrumbs":4,"title":2},"82":{"body":44,"breadcrumbs":4,"title":2},"83":{"body":137,"breadcrumbs":6,"title":2},"84":{"body":7,"breadcrumbs":6,"title":2},"85":{"body":34,"breadcrumbs":6,"title":3},"86":{"body":42,"breadcrumbs":4,"title":1},"87":{"body":67,"breadcrumbs":7,"title":4},"88":{"body":64,"breadcrumbs":7,"title":4},"89":{"body":65,"breadcrumbs":5,"title":2},"9":{"body":0,"breadcrumbs":4,"title":1},"90":{"body":59,"breadcrumbs":7,"title":4},"91":{"body":40,"breadcrumbs":8,"title":5},"92":{"body":98,"breadcrumbs":5,"title":2},"93":{"body":187,"breadcrumbs":8,"title":3},"94":{"body":84,"breadcrumbs":6,"title":2},"95":{"body":80,"breadcrumbs":6,"title":2},"96":{"body":229,"breadcrumbs":6,"title":2},"97":{"body":51,"breadcrumbs":6,"title":2},"98":{"body":77,"breadcrumbs":6,"title":2},"99":{"body":54,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"Welcome to Move, a next generation language for secure asset programming. Its primary use case is in blockchain environments, where Move programs are used to construct state changes. Move allows developers to write programs that flexibly manage and transfer assets, while providing the security and protections against attacks on those assets. However, Move has been developed with use cases in mind outside a blockchain context as well. Move takes its cue from Rust by using resource types with move (hence the name) semantics as an explicit representation of digital assets, such as currency.","breadcrumbs":"The Move Reference » The Move Reference","id":"0","title":"The Move Reference"},"1":{"body":"Modules are the core program unit that define types along with functions that operate on these types. Struct types define the schema of Move's storage , and module functions define the rules interacting with values of those types. While modules themselves are also stored in storage, they are not accessible from within a Move program. In a blockchain environment, the modules are stored on chain in a process typically referred to as \"publishing\". After being published, entry and public functions can be invoked according to the rules of that particular Move instance.","breadcrumbs":"Modules » Modules","id":"1","title":"Modules"},"10":{"body":"Each of these types supports the same set of checked arithmetic operations. For all of these operations, both arguments (the left and right side operands) must be of the same type. If you need to operate over values of different types, you will need to first perform a cast . Similarly, if you expect the result of the operation to be too large for the integer type, perform a cast to a larger size before performing the operation. All arithmetic operations abort instead of behaving in a way that mathematical integers would not (e.g., overflow, underflow, divide-by-zero). Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0","breadcrumbs":"Primitive Types » Integers » Arithmetic","id":"10","title":"Arithmetic"},"100":{"body":"Patterns are not expressions, but they are nevertheless typed. This means that the type of a pattern must match the type of the value it matches. For example, the pattern 1 has an integer type, the pattern MyEnum::Variant(1, true) has type MyEnum, the pattern MyStruct { x, y } has type MyStruct, and OtherStruct { x: true, y: 1} has type OtherStruct. If you try to match on an expression that differs from the type of the pattern in the match, this will result in a type error. For example: match (1) { // The `true` literal pattern is of type `bool` so this is a type error. true => 1, // TYPE ERROR: expected type u64, found bool _ => 2,\n} Similarly, the following would also result in a type error because MyEnum and MyStruct are different types: match (MyStruct { x: 0, y: 0 }) { MyEnum::Variant(..) => 1, // TYPE ERROR: expected type MyEnum, found MyStruct\n}","breadcrumbs":"Control Flow » Patterm Matching » Pattern Typing","id":"100","title":"Pattern Typing"},"101":{"body":"Prior to delving into the specifics of pattern matching and what it means for a value to \"match\" a pattern, let's examine a few examples to provide an intuition for the concept. fun test_lit(x: u64): u8 { match (x) { 1 => 2, 2 => 3, _ => 4, }\n}\ntest_lit(1); // returns 2\ntest_lit(2); // returns 3\ntest_lit(3); // returns 4\ntest_lit(10); // returns 4 fun test_var(x: u64): u64 { match (x) { y => y, }\n}\ntest_var(1); // returns 1\ntest_var(2); // returns 2\ntest_var(3); // returns 3\n... const MyConstant: u64 = 10;\nfun test_constant(x: u64): u64 { match (x) { MyConstant => 1, _ => 2, }\n}\ntest_constant(MyConstant); // returns 1\ntest_constant(10); // returns 1\ntest_constant(20); // returns 2 fun test_or_pattern(x: u64): u64 { match (x) { 1 | 2 | 3 => 1, 4 | 5 | 6 => 2, _ => 3, }\n}\ntest_or_pattern(3); // returns 1\ntest_or_pattern(5); // returns 2\ntest_or_pattern(70); // returns 3 fun test_or_at_pattern(x: u64): u64 { match (x) { x @ (1 | 2 | 3) => x + 1, y @ (4 | 5 | 6) => y + 2, z => z + 3, }\n}\ntest_or_pattern(2); // returns 3\ntest_or_pattern(5); // returns 7\ntest_or_pattern(70); // returns 73 The most important thing to note from these examples is that a pattern matches a value if the value is equal to the pattern, and wildcard/variable patterns match anything. This is true for literals, variables, and constants. For example, in the test_lit function, the value 1 matches the pattern 1, the value 2 matches the pattern 2, and the value 3 matches the wildcard _. Similarly, in the test_var function, both the value 1 and the value 2 matches the pattern y. A variable x matches (or \"equals\") any value, and a wildcard _ matches any value (but only one value). Or-patterns are like a logical OR, where a value matches the pattern if it matches any of patterns in the or-pattern so p1 | p2 | p3 should be read \"matches p1, or p2, or p3\".","breadcrumbs":"Control Flow » Patterm Matching » Matching","id":"101","title":"Matching"},"102":{"body":"Pattern matching includes the concept of constructor patterns. These patterns allow you to inspect and access deep within both structs and enums, and are one of the most powerful parts of pattern matching. Constructor patterns, coupled with variable bindings, allow you to match on values by their structure, and pull out the parts of the value you care about for usage on the right-hand side of the match arm. Take the following: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 3\nf(MyEnum::OtherVariant(false, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 2)); // returns 4 This is saying that \"if x is MyEnum::Variant with the fields 1 and true, then return 1. If it is MyEnum::OtherVariant with any value for the first field, and 3 for the second, then return 2. If it is MyEnum::Variant with any fields, then return 3. Finally, if it is MyEnum::OtherVariant with any fields, then return 4\". You can also nest patterns. So, if you wanted to match either 1, 2, or 10, instead of just matching 1 in the previous MyEnum::Variant, you could do so with an or-pattern: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1 | 2 | 10, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 1\nf(MyEnum::Variant(10, true)); // returns 1\nf(MyEnum::Variant(10, false)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Matching Constructors","id":"102","title":"Matching Constructors"},"103":{"body":"Additionally, match bindings are subject to the same ability restrictions as other aspects of Move. In particular, the compiler will signal an error if you try to match a value (not-reference) without drop using a wildcard, as the wildcard expects to drop the value. Similarly, if you bind a non-drop value using a binder, it must be used in the right-hand side of the match arm. In addition, if you fully destruct that value, you have unpacked it, matching the semantics of non-drop struct unpacking . See the abilities section on drop for more details about the drop capability. public struct NonDrop(u64) fun drop_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, _ => 2 // ERROR: cannot wildcard match on a non-droppable value }\n} fun destructure_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, NonDrop(_) => 2 // OK! }\n} fun use_nondrop(x: NonDrop): NonDrop { match (x) { NonDrop(1) => NonDrop(8), x => x }\n}","breadcrumbs":"Control Flow » Patterm Matching » Ability Constraints","id":"103","title":"Ability Constraints"},"104":{"body":"The match expression in Move must be exhaustive : every possible value of the type being matched must be covered by one of the patterns in one of the match's arms. If the series of match arms is not exhaustive, the compiler will raise an error. Note that any arm with a guard expression does not contribute to match exhaustion, as it might fail to match at runtime. As an example, a match on a u8 is exhaustive only if it matches on every number from 0 to 255 inclusive, unless there is a wildcard or variable pattern present. Similarly, a match on a bool would need to match on both true and false, unless there is a wildcard or variable pattern present. For structs, because there is only one type of constructor for the type, only one constructor needs to be matched, but the fields within the struct need to be matched exhaustively as well. Conversely, enums may define multiple variants, and each variant must be matched (including any sub-fields) for the match to be considered exhaustive. Because underscores and variables are wildcards that match anything, they count as matching all values of the type they are matching on in that position. Additionally, the multi-arity wildcard pattern .. can be used to match on multiple values within a struct or enum variant. To see some examples of non-exhaustive matches, consider the following: public enum MyEnum { Variant(u64, bool), OtherVariant(bool, u64),\n} public struct Pair(T, T) fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // ERROR: not exhaustive as the value `MyEnum::OtherVariant(_, 4)` is not matched. }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // ERROR: not exhaustive as the value `Pair(false, true)` is not matched. }\n} These examples can then be made exhaustive by adding a wildcard pattern to the end of the match arm, or by fully matching on the remaining values: fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // Now exhaustive since this will match all values of MyEnum::OtherVariant MyEnum::OtherVariant(..) => 2, }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // Now exhaustive since this will match all values of Pair Pair(false, true) => 1, }\n}","breadcrumbs":"Control Flow » Patterm Matching » Exhaustiveness","id":"104","title":"Exhaustiveness"},"105":{"body":"As previously mentioned, you can add a guard to a match arm by adding an if clause after the pattern. This guard will run after the pattern has been matched but before the expression on the right hand side of the arrow is evaluated. If the guard expression evaluates to true then the expression on the right hand side of the arrow will be evaluated, if it evaluates to false then it will be considered a failed match and the next match arm in the match expression will be checked. fun match_with_guard(x: u64): u64 { match (x) { 1 if (false) => 1, 1 => 2, _ => 3, }\n} match_with_guard(1); // returns 2\nmatch_with_guard(0); // returns 3 Guard expressions can reference variables bound in the pattern during evaluation. However, note that variables are only available as immutable reference in guards regardless of the pattern being matched -- even if there are mutability specifiers on the variable or if the pattern is being matched by value. fun incr(x: &mut u64) { *x = *x + 1;\n} fun match_with_guard_incr(x: u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} fun match_with_guard_incr2(x: &mut u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} Additionally, it is important to note any match arms that have guard expressions will not be considered either for exhaustivity purposes because the compiler has no way of evaluating the guard expression statically.","breadcrumbs":"Control Flow » Patterm Matching » Guards","id":"105","title":"Guards"},"106":{"body":"There are some restrictions on when the .. and mut pattern modifiers can be used in a pattern.","breadcrumbs":"Control Flow » Patterm Matching » Limitations on Specific Patterns","id":"106","title":"Limitations on Specific Patterns"},"107":{"body":"A mut modifier can be placed on a variable pattern to specify that the variable is to be mutated in the right-hand expression of the match arm. Note that since the mut modifier only signifies that the variable is to be mutated, not the underlying data, this can be used on all types of match (by value, immutable reference, and mutable reference). Note that the mut modifier can only be applied to variables, and not other types of patterns. public struct MyStruct(u64) fun top_level_mut(x: MyStruct) { match (x) { mut MyStruct(y) => 1, // ERROR: cannot use mut on a non-variable pattern }\n} fun mut_on_immut(x: &MyStruct): u64 { match (x) { MyStruct(mut y) => { y = &(*y + 1); *y } }\n} fun mut_on_value(x: MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} fun mut_on_mut(x: &mut MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} let mut x = MyStruct(1); mut_on_mut(&mut x); // returns 2\nx.0; // returns 2 mut_on_immut(&x); // returns 3\nx.0; // returns 2 mut_on_value(x); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Mutability Usage","id":"107","title":"Mutability Usage"},"108":{"body":"The .. pattern can only be used within a constructor pattern as a wildcard that matches any number of fields -- the the compiler expands the .. to inserting _ in any missing fields in the constructor pattern (if any). So MyStruct(_, _, _) is the same as MyStruct(..), MyStruct(1, _, _) is the same as MyStruct(1, ..). Because of this, there are some restrictions on how, and where the .. pattern can be used: It can only be used once within the constructor pattern; In positional arguments it can be used at the beginning, middle, or end of the patterns within the constructor; In named arguments it can only be used at the end of the patterns within the constructor; public struct MyStruct(u64, u64, u64, u64) has drop; public struct MyStruct2 { x: u64, y: u64, z: u64, w: u64,\n} fun wild_match(x: MyStruct) { match (x) { MyStruct(.., 1) => 1, // OK! The `..` pattern can be used at the begining of the constructor pattern MyStruct(1, ..) => 2, // OK! The `..` pattern can be used at the end of the constructor pattern MyStruct(1, .., 1) => 3, // OK! The `..` pattern can be used at the middle of the constructor pattern MyStruct(1, .., 1, 1) => 4, MyStruct(..) => 5, }\n} fun wild_match2(x: MyStruct2) { match (x) { MyStruct2 { x: 1, .. } => 1, MyStruct2 { x: 1, w: 2 .. } => 2, MyStruct2 { .. } => 3, }\n}","breadcrumbs":"Control Flow » Patterm Matching » .. Usage","id":"108","title":".. Usage"},"109":{"body":"Functions are declared inside of modules and define the logic and behavior of the module. Functions can be reused, either being called from other functions or as entry points for execution.","breadcrumbs":"Functions » Functions","id":"109","title":"Functions"},"11":{"body":"The integer types support the following bitwise operations that treat each number as a series of individual bits, either 0 or 1, instead of as numerical integer values. Bitwise operations do not abort. Syntax Operation Description & bitwise and Performs a boolean and for each bit pairwise | bitwise or Performs a boolean or for each bit pairwise ^ bitwise xor Performs a boolean exclusive or for each bit pairwise","breadcrumbs":"Primitive Types » Integers » Bitwise","id":"11","title":"Bitwise"},"110":{"body":"Functions are declared with the fun keyword followed by the function name, type parameters, parameters, a return type, and finally the function body. ? ? fun <[type_parameters: constraint],*>([identifier: type],*): For example fun foo(x: u64, y: T1, z: T2): (T2, T1, u64) { (z, y, x) }","breadcrumbs":"Functions » Declaration","id":"110","title":"Declaration"},"111":{"body":"Module functions, by default, can only be called within the same module. These internal (sometimes called private) functions cannot be called from other modules or as entry points. module a::m { fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} To allow access from other modules, the function must be declared public or public(package). Tangential to visibility, an entry function can be called as an entry point for execution. public visibility A public function can be called by any function defined in any module. As shown in the following example, a public function can be called by: other functions defined in the same module, functions defined in another module, or as an entry point for execution. module a::m { public fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // valid }\n} Fore more details on the entry point to execution see the section below . public(package) visibility The public(package) visibility modifier is a more restricted form of the public modifier to give more control about where a function can be used. A public(package) function can be called by: other functions defined in the same module, or other functions defined in the same package (the same address) module a::m { public(package) fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // valid, also in `a` }\n} module b::other { fun calls_m_foo(): u64 { b::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' can only be called from a module in `a` }\n} DEPRECATED public(friend) visibility Before the addition of public(package), public(friend) was used to allow limited public access to functions in the same package, but where the list of allowed modules had to be explicitly enumerated by the callee's module. see Friends for more details.","breadcrumbs":"Functions » Visibility","id":"111","title":"Visibility"},"112":{"body":"In addition to public functions, you might have some functions in your modules that you want to use as the entry point to execution. The entry modifier is designed to allow module functions to initiate execution, without having to expose the functionality to other modules. Essentially, the combination of pbulic and entry functions define the \"main\" functions of a module, and they specify where Move programs can start executing. Keep in mind though, an entry function can still be called by other Move functions. So while they can serve as the start of a Move program, they aren't restricted to that case. For example: module a::m { entry fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid!\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} entry functions may have restrictions on their parameters and return types. Although, these restrictions are specific to each individual deployment of Move. The documentation for entry functions on Sui can be found here. . To enable easier testing, entry functions can be called from #[test] and #[test_only] contexts. module a::m { entry fun foo(): u64 { 0 }\n}\nmodule a::m_test { #[test] fun my_test(): u64 { a::m::foo() } // valid! #[test_only] fun my_test_helper(): u64 { a::m::foo() } // valid!\n}","breadcrumbs":"Functions » entry modifier","id":"112","title":"entry modifier"},"113":{"body":"Function names can start with letters a to z. After the first character, function names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. fun fOO() {}\nfun bar_42() {}\nfun bAZ_19() {}","breadcrumbs":"Functions » Name","id":"113","title":"Name"},"114":{"body":"After the name, functions can have type parameters fun id(x: T): T { x }\nfun example(x: T1, y: T2): (T1, T1, T2) { (copy x, x, y) } For more details, see Move generics .","breadcrumbs":"Functions » Type Parameters","id":"114","title":"Type Parameters"},"115":{"body":"Functions parameters are declared with a local variable name followed by a type annotation fun add(x: u64, y: u64): u64 { x + y } We read this as x has type u64 A function does not have to have any parameters at all. fun useless() { } This is very common for functions that create new or empty data structures module a::example { public struct Counter { count: u64 } fun new_counter(): Counter { Counter { count: 0 } }\n}","breadcrumbs":"Functions » Parameters","id":"115","title":"Parameters"},"116":{"body":"After the parameters, a function specifies its return type. fun zero(): u64 { 0 } Here : u64 indicates that the function's return type is u64. Using tuples , a function can return multiple values: fun one_two_three(): (u64, u64, u64) { (0, 1, 2) } If no return type is specified, the function has an implicit return type of unit (). These functions are equivalent: fun just_unit(): () { () }\nfun just_unit() { () }\nfun just_unit() { } As mentioned in the tuples section , these tuple \"values\" do not exist as runtime values. This means that a function that returns unit () does not return any value during execution.","breadcrumbs":"Functions » Return type","id":"116","title":"Return type"},"117":{"body":"A function's body is an expression block. The return value of the function is the last value in the sequence fun example(): u64 { let x = 0; x = x + 1; x // returns 'x'\n} See the section below for more information on returns For more information on expression blocks, see Move variables .","breadcrumbs":"Functions » Function body","id":"117","title":"Function body"},"118":{"body":"Some functions do not have a body specified, and instead have the body provided by the VM. These functions are marked native. Without modifying the VM source code, a programmer cannot add new native functions. Furthermore, it is the intent that native functions are used for either standard library code or for functionality needed for the given Move environment. Most native functions you will likely see are in standard library code, such as vector module std::vector { native public fun length(v: &vector): u64; ...\n}","breadcrumbs":"Functions » Native Functions","id":"118","title":"Native Functions"},"119":{"body":"When calling a function, the name can be specified either through an alias or fully qualified module a::example { public fun zero(): u64 { 0 }\n} module b::other { use a::example::{Self, zero}; fun call_zero() { // With the `use` above all of these calls are equivalent a::example::zero(); example::zero(); zero(); }\n} When calling a function, an argument must be given for every parameter. module a::example { public fun takes_none(): u64 { 0 } public fun takes_one(x: u64): u64 { x } public fun takes_two(x: u64, y: u64): u64 { x + y } public fun takes_three(x: u64, y: u64, z: u64): u64 { x + y + z }\n} module b::other { fun call_all() { a::example::takes_none(); a::example::takes_one(0); a::example::takes_two(0, 1); a::example::takes_three(0, 1, 2); }\n} Type arguments can be either specified or inferred. Both calls are equivalent. module aexample { public fun id(x: T): T { x }\n} module b::other { fun call_all() { a::example::id(0); a::example::id(0); }\n} For more details, see Move generics .","breadcrumbs":"Functions » Calling","id":"119","title":"Calling"},"12":{"body":"Similar to the bitwise operations, each integer type supports bit shifts. But unlike the other operations, the righthand side operand (how many bits to shift by) must always be a u8 and need not match the left side operand (the number you are shifting). Bit shifts can abort if the number of bits to shift by is greater than or equal to 8, 16, 32, 64, 128 or 256 for u8, u16, u32, u64, u128 and u256 respectively. Syntax Operation Aborts if << shift left Number of bits to shift by is greater than the size of the integer type >> shift right Number of bits to shift by is greater than the size of the integer type","breadcrumbs":"Primitive Types » Integers » Bit Shifts","id":"12","title":"Bit Shifts"},"120":{"body":"The result of a function, its \"return value\", is the final value of its function body. For example fun add(x: u64, y: u64): u64 { x + y\n} The return value here is the result of x + y. As mentioned above , the function's body is an expression block . The expression block can sequence various statements, and the final expression in the block will be be the value of that block fun double_and_add(x: u64, y: u64): u64 { let double_x = x * 2; let double_y = y * 2; double_x + double_y\n} The return value here is the result of double_x + double_y","breadcrumbs":"Functions » Returning values","id":"120","title":"Returning values"},"121":{"body":"A function implicitly returns the value that its body evaluates to. However, functions can also use the explicit return expression: fun f1(): u64 { return 0 }\nfun f2(): u64 { 0 } These two functions are equivalent. In this slightly more involved example, the function subtracts two u64 values, but returns early with 0 if the second value is too large: fun safe_sub(x: u64, y: u64): u64 { if (y > x) return 0; x - y\n} Note that the body of this function could also have been written as if (y > x) 0 else x - y. However return really shines is in exiting deep within other control flow constructs. In this example, the function iterates through a vector to find the index of a given value: use std::vector;\nuse std::option::{Self, Option};\nfun index_of(v: &vector, target: &T): Option { let i = 0; let n = vector::length(v); while (i < n) { if (vector::borrow(v, i) == target) return option::some(i); i = i + 1 }; option::none()\n} Using return without an argument is shorthand for return (). That is, the following two functions are equivalent: fun foo() { return }\nfun foo() { return () }","breadcrumbs":"Functions » return expression","id":"121","title":"return expression"},"122":{"body":"A struct is a user-defined data structure containing typed fields. Structs can store any non-reference, non-tuple type, including other structs. Structs can be used to define all \"asset\" values or unrestricted values, where the operations performed on those values can be controlled by the struct's abilities . By default, structs are linear and ephemeral. By this we mean that they: cannot be copied, cannot be dropped, and cannot be stored in storage. This means that all values have to have ownership transferred (linear) and the values must be dealt with by the end of the program's execution (ephemeral). We can relax this behavior by giving the struct abilities which allow values to be copied or dropped and also to be stored in storage or to define storage schemas.","breadcrumbs":"Structs » Structs and Resources","id":"122","title":"Structs and Resources"},"123":{"body":"Structs must be defined inside a module, and the struct's fields can either be named or positional: module a::m { public struct Foo { x: u64, y: bool } public struct Bar {} public struct Baz { foo: Foo, } // ^ note: it is fine to have a trailing comma public struct PosFoo(u64, bool) public struct PosBar() public struct PosBaz(Foo)\n} Structs cannot be recursive, so the following definitions are invalid: public struct Foo { x: Foo }\n// ^ ERROR! recursive definition public struct A { b: B }\npublic struct B { a: A }\n// ^ ERROR! recursive definition public struct D(D)\n// ^ ERROR! recursive definition","breadcrumbs":"Structs » Defining Structs","id":"123","title":"Defining Structs"},"124":{"body":"As you may have noticed, all structs are declared as public. This means that the type of the struct can be referred to from any other module. However, the fields of the struct, and the ability to create or destroy the struct, are still internal to the module that defines the struct. In the future, we plan on adding to declare structs as public(package) or as internal, much like functions .","breadcrumbs":"Structs » Visibility","id":"124","title":"Visibility"},"125":{"body":"As mentioned above: by default, a struct declaration is linear and ephemeral. So to allow the value to be used in these ways (e.g., copied, dropped, stored in an object , or used to define a storable object ), structs can be granted abilities by annotating them with has : module a::m { public struct Foo has copy, drop { x: u64, y: bool }\n} The ability declaration can occur either before or after the struct's fields. However, only one or the other can be used, and not both. If declared after the struct's fields, the ability declaration must be terminated with a semicolon: module a::m { public struct PreNamedAbilities has copy, drop { x: u64, y: bool } public struct PostNamedAbilities { x: u64, y: bool } has copy, drop; public struct PostNamedAbilitiesInvalid { x: u64, y: bool } has copy, drop // ^ ERROR! missing semicolon public struct NamedInvalidAbilities has copy { x: u64, y: bool } has drop; // ^ ERROR! duplicate ability declaration public struct PrePositionalAbilities has copy, drop (u64, bool) public struct PostPositionalAbilities (u64, bool) has copy, drop; public struct PostPositionalAbilitiesInvalid (u64, bool) has copy, drop // ^ ERROR! missing semicolon public struct InvalidAbilities has copy (u64, bool) has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating a struct's abilities .","breadcrumbs":"Structs » Abilities","id":"125","title":"Abilities"},"126":{"body":"Structs must start with a capital letter A to Z. After the first letter, struct names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. public struct Foo {}\npublic struct BAR {}\npublic struct B_a_z_4_2 {}\npublic struct P_o_s_Foo() This naming restriction of starting with A to Z is in place to give room for future language features. It may or may not be removed later.","breadcrumbs":"Structs » Naming","id":"126","title":"Naming"},"127":{"body":"","breadcrumbs":"Structs » Using Structs","id":"127","title":"Using Structs"},"128":{"body":"Values of a struct type can be created (or \"packed\") by indicating the struct name, followed by value for each field. For a struct with named fields, the order of the fields does not matter, but the field name needs to be provided. For a struct with positional fields, the order of the fields must match the order of the fields in the struct definition, and it must be created using () instead of {} to enclose the parameters. module a::m { public struct Foo has drop { x: u64, y: bool } public struct Baz has drop { foo: Foo } public struct Positional(u64, bool) has drop; fun example() { let foo = Foo { x: 0, y: false }; let baz = Baz { foo: foo }; // Note: positional struct values are created using parentheses and // based on position instead of name. let pos = Positional(0, false); let pos_invalid = Positional(false, 0); // ^ ERROR! Fields are out of order and the types don't match. }\n} For structs with named fields, you can use the following shorthand if you have a local variable with the same name as the field: let baz = Baz { foo: foo };\n// is equivalent to\nlet baz = Baz { foo }; This is sometimes called \"field name punning\".","breadcrumbs":"Structs » Creating Structs","id":"128","title":"Creating Structs"},"129":{"body":"Struct values can be destroyed by binding or assigning them in patterns using similar syntax to constructing them. module a::m { public struct Foo { x: u64, y: bool } public struct Bar(Foo) public struct Baz {} public struct Qux() fun example_destroy_foo() { let foo = Foo { x: 3, y: false }; let Foo { x, y: foo_y } = foo; // ^ shorthand for `x: x` // two new bindings // x: u64 = 3 // foo_y: bool = false } fun example_destroy_foo_wildcard() { let foo = Foo { x: 3, y: false }; let Foo { x, y: _ } = foo; // only one new binding since y was bound to a wildcard // x: u64 = 3 } fun example_destroy_foo_assignment() { let x: u64; let y: bool; Foo { x, y } = Foo { x: 3, y: false }; // mutating existing variables x and y // x = 3, y = false } fun example_foo_ref() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &foo; // two new bindings // x: &u64 // y: &bool } fun example_foo_ref_mut() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &mut foo; // two new bindings // x: &mut u64 // y: &mut bool } fun example_destroy_bar() { let bar = Bar(Foo { x: 3, y: false }); let Bar(Foo { x, y }) = bar; // ^ nested pattern // two new bindings // x: u64 = 3 // y: bool = false } fun example_destroy_baz() { let baz = Baz {}; let Baz {} = baz; } fun example_destroy_qux() { let qux = Qux(); let Qux() = qux; }\n}","breadcrumbs":"Structs » Destroying Structs via Pattern Matching","id":"129","title":"Destroying Structs via Pattern Matching"},"13":{"body":"Integer types are the only types in Move that can use the comparison operators. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Comparison operations do not abort. Syntax Operation < less than > greater than <= less than or equal to >= greater than or equal to","breadcrumbs":"Primitive Types » Integers » Comparisons","id":"13","title":"Comparisons"},"130":{"body":"Fields of a struct can be accessed using the dot operator .. For structs with named fields, the fields can be accessed by their name: public struct Foo { x: u64, y: bool }\nlet foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true For positional structs, fields can be accessed by their position in the struct definition: public struct PosFoo(u64, bool)\nlet pos_foo = PosFoo(3, true);\nlet x = pos_foo.0; // x == 3\nlet y = pos_foo.1; // y == true Accessing struct fields without borrowing or copying them is subject to the field's ability constraints. For more details see the sections on borrowing structs and fields and reading and writing fields for more information.","breadcrumbs":"Structs » Accessing Struct Fields","id":"130","title":"Accessing Struct Fields"},"131":{"body":"The & and &mut operator can be used to create references to structs or fields. These examples include some optional type annotations (e.g., : &Foo) to demonstrate the type of operations. let foo = Foo { x: 3, y: true };\nlet foo_ref: &Foo = &foo;\nlet y: bool = foo_ref.y; // reading a field via a reference to the struct\nlet x_ref: &u64 = &foo.x; // borrowing a field by extending a reference to the struct let x_ref_mut: &mut u64 = &mut foo.x;\n*x_ref_mut = 42; // modifying a field via a mutable reference It is possible to borrow inner fields of nested structs: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo); let x_ref = &bar.0.x; You can also borrow a field via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &foo;\nlet x_ref = &foo_ref.x;\n// this has the same effect as let x_ref = &foo.x","breadcrumbs":"Structs » Borrowing Structs and Fields","id":"131","title":"Borrowing Structs and Fields"},"132":{"body":"If you need to read and copy a field's value, you can then dereference the borrowed field: let foo = Foo { x: 3, y: true };\nlet bar = Bar(copy foo);\nlet x: u64 = *&foo.x;\nlet y: bool = *&foo.y;\nlet foo2: Foo = *&bar.0; More canonically, the dot operator can be used to read fields of a struct without any borrowing. As is true with dereferencing , the field type must have the copy ability . let foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true Dot operators can be chained to access nested fields: let bar = Bar(Foo { x: 3, y: true });\nlet x = baz.0.x; // x = 3; However, this is not permitted for fields that contain non-primitive types, such a vector or another struct: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo);\nlet foo2: Foo = *&bar.0;\nlet foo3: Foo = bar.0; // error! must add an explicit copy with *& We can mutably borrow a field to a struct to assign it a new value: let mut foo = Foo { x: 3, y: true };\n*&mut foo.x = 42; // foo = Foo { x: 42, y: true }\n*&mut foo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\n*&mut bar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\n*&mut bar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) Similar to dereferencing, we can instead directly use the dot operator to modify a field. And in both cases, the field type must have the drop ability . let mut foo = Foo { x: 3, y: true };\nfoo.x = 42; // foo = Foo { x: 42, y: true }\nfoo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\nbar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\nbar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) The dot syntax for assignment also works via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &mut foo;\nfoo_ref.x = foo_ref.x + 1;","breadcrumbs":"Structs » Reading and Writing Fields","id":"132","title":"Reading and Writing Fields"},"133":{"body":"Most struct operations on a struct type T can only be performed inside the module that declares T: Struct types can only be created (\"packed\"), destroyed (\"unpacked\") inside the module that defines the struct. The fields of a struct are only accessible inside the module that defines the struct. Following these rules, if you want to modify your struct outside the module, you will need to provide public APIs for them. The end of the chapter contains some examples of this. However as stated in the visibility section above , struct types are always visible to another module module a::m { public struct Foo has drop { x: u64 } public fun new_foo(): Foo { Foo { x: 42 } }\n} module a::n { use a::m::Foo; public struct Wrapper has drop { foo: Foo // ^ valid the type is public } fun f1(foo: Foo) { let x = foo.x; // ^ ERROR! cannot access fields of `Foo` outside of `a::m` } fun f2() { let foo_wrapper = Wrapper { foo: m::new_foo() }; // ^ valid the function is public }\n}","breadcrumbs":"Structs » Privileged Struct Operations","id":"133","title":"Privileged Struct Operations"},"134":{"body":"As mentioned above in Defining Structs , structs are by default linear and ephemeral. This means they cannot be copied or dropped. This property can be very useful when modeling real world assets like money, as you do not want money to be duplicated or get lost in circulation. module a::m { public struct Foo { x: u64 } public fun copying() { let foo = Foo { x: 100 }; let foo_copy = copy foo; // ERROR! 'copy'-ing requires the 'copy' ability let foo_ref = &foo; let another_copy = *foo_ref // ERROR! dereference requires the 'copy' ability } public fun destroying_1() { let foo = Foo { x: 100 }; // error! when the function returns, foo still contains a value. // This destruction requires the 'drop' ability } public fun destroying_2(f: &mut Foo) { *f = Foo { x: 100 } // error! // destroying the old value via a write requires the 'drop' ability }\n} To fix the example fun destroying_1, you would need to manually \"unpack\" the value: module a::m { public struct Foo { x: u64 } public fun destroying_1_fixed() { let foo = Foo { x: 100 }; let Foo { x: _ } = foo; }\n} Recall that you are only able to deconstruct a struct within the module in which it is defined. This can be leveraged to enforce certain invariants in a system, for example, conservation of money. If on the other hand, your struct does not represent something valuable, you can add the abilities copy and drop to get a struct value that might feel more familiar from other programming languages: module a::m { public struct Foo has copy, drop { x: u64 } public fun run() { let foo = Foo { x: 100 }; let foo_copy = foo; // ^ this code copies foo, // whereas `let x = move foo` would move foo let x = foo.x; // x = 100 let x_copy = foo_copy.x; // x = 100 // both foo and foo_copy are implicitly discarded when the function returns }\n}","breadcrumbs":"Structs » Ownership","id":"134","title":"Ownership"},"135":{"body":"Structs can be used to define storage schemas, but the details are different per deployment of Move. See the documentation for the key ability and Sui objects for more details.","breadcrumbs":"Structs » Storage","id":"135","title":"Storage"},"136":{"body":"An enum is a user-defined data structure containing one or more variants . Each variant can optionally contain typed fields. The number, and types of these fields can differ for each variant in the enumeration. Fields in enums can store any non-reference, non-tuple type, including other structs or enums. As a simple example, consider the following enum definition in Move: public enum Action { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64),\n} This declares an enum Action that represents different actions that can be taken by a game -- you can Stop, Pause for a given duration, MoveTo a specific location, or Jump to a specific height. Similar to structs, enums can have abilities that control what operations can be performed on them. It is important to note however that enums cannot have the key ability since they cannot be top-level objects.","breadcrumbs":"Enums » Enumerations","id":"136","title":"Enumerations"},"137":{"body":"Enums must be defined in a module, an enum must contain at least one variant, and each variant of an enum can either have no fields, positional fields, or named fields. Here are some examples of each: module a::m { public enum Foo has drop { VariantWithNoFields, // ^ note: it is fine to have a trailing comma after variant declarations } public enum Bar has copy, drop { VariantWithPositionalFields(u64, bool), } public enum Baz has drop { VariantWithNamedFields { x: u64, y: bool, z: Bar }, }\n} Enums cannot be recursive in any of their variants, so the following definitions of an enum are not allowed because they would be recursive in at least one variant. Incorrect: module a::m { public enum Foo { Recursive(Foo), // ^ error: recursive enum variant } public enum List { Nil, Cons { head: u64, tail: List }, // ^ error: recursive enum variant } public enum BTree { Leaf(T), Node { left: BTree, right: BTree }, // ^ error: recursive enum variant } // Mutually recursive enums are also not allowed public enum MutuallyRecursiveA { Base, Other(MutuallyRecursiveB), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant } public enum MutuallyRecursiveB { Base, Other(MutuallyRecursiveA), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant }\n}","breadcrumbs":"Enums » Defining Enums","id":"137","title":"Defining Enums"},"138":{"body":"All enums are declared as public. This means that the type of the enum can be referred to from any other module. However, the variants of the enum, the fields within each variant, and the ability to create or destroy variants of the enum are internal to the module that defines the enum.","breadcrumbs":"Enums » Visibility","id":"138","title":"Visibility"},"139":{"body":"Just like with structs, by default an enum declaration is linear and ephemeral. To use an enum value in a non-linear or non-ephemeral way -- i.e., copied, dropped, or stored in an object -- you need to grant it additional abilities by annotating them with has : module a::m { public enum Foo has copy, drop { VariantWithNoFields, }\n} The ability declaration can occur either before or after the enum's variants, however only one or the other can be used, and not both. If declared after the variants, the ability declaration must be terminated with a semicolon: module a::m { public enum PreNamedAbilities has copy, drop { Variant } public enum PostNamedAbilities { Variant } has copy, drop; public enum PostNamedAbilitiesInvalid { Variant } has copy, drop // ^ ERROR! missing semicolon public enum NamedInvalidAbilities has copy { Variant } has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating abilities .","breadcrumbs":"Enums » Abilities","id":"139","title":"Abilities"},"14":{"body":"Like all types with drop , all integer types support the \"equal\" and \"not equal\" operations. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Equality operations do not abort. Syntax Operation == equal != not equal For more details see the section on equality","breadcrumbs":"Primitive Types » Integers » Equality","id":"14","title":"Equality"},"140":{"body":"Enums and variants within enums must start with a capital letter A to Z. After the first letter, enum names can contain underscores _, lowercase letters a to z, uppercase letters A to Z, or digits 0 to 9. public enum Foo { Variant }\npublic enum BAR { Variant }\npublic enum B_a_z_4_2 { V_a_riant_0 } This naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Enums » Naming","id":"140","title":"Naming"},"141":{"body":"","breadcrumbs":"Enums » Using Enums","id":"141","title":"Using Enums"},"142":{"body":"Values of an enum type can be created (or \"packed\") by indicating a variant of the enum, followed by a value for each field in the variant. The variant name must always be qualified by the enum's name. Similarly to structs, for a variant with named fields, the order of the fields does not matter but the field names need to be provided. For a variant with positional fields, the order of the fields matters and the order of the fields must match the order in the variant declaration. It must also be created using () instead of {}. If the variant has no fields, the variant name is sufficient and no () or {} needs to be used. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public enum Other has drop { Stop(u64), } fun example() { // Note: The `Stop` variant of `Action` doesn't have fields so no parentheses or curlies are needed. let stop = Action::Stop; let pause = Action::Pause { duration: 10 }; let move_to = Action::MoveTo { x: 10, y: 20 }; let jump = Action::Jump(10); // Note: The `Stop` variant of `Other` does have positional fields so we need to supply them. let other_stop = Other::Stop(10); }\n} For variants with named fields you can also use the shorthand syntax that you might be familiar with from structs to create the variant: let duration = 10; let pause = Action::Pause { duration: duration };\n// is equivalent to\nlet pause = Action::Pause { duration };","breadcrumbs":"Enums » Creating Enum Variants","id":"142","title":"Creating Enum Variants"},"143":{"body":"Since enum values can take on different shapes, dot access to fields of variants is not allowed like it is for struct fields. Instead, to access fields within a variant -- either by value, or immutable or mutable reference -- you must use pattern matching. You can pattern match on Move values by value, immutable reference, and mutable reference. When pattern matching by value, the value is moved into the match arm. When pattern matching by reference, the value is borrowed into the match arm (either immutably or mutably). We'll go through a brief description of pattern matching using match here, but for more information on pattern matching using match in Move see the Pattern Matching section. A match statement is used to pattern match on a Move value and consists of a number of match arms . Each match arm consists of a pattern, an arrow =>, and an expression, followed by a comma ,. The pattern can be a struct, enum variant, binding (x, y), wildcard (_ or ..), constant (ConstValue), or literal value (true, 42, and so on). The value is matched against each pattern from the top-down, and will match the first pattern that structurally matches the value. Once the value is matched, the expression on the right hand side of the => is executed. Additionally, match arms can have optional guards that are checked after the pattern matches but before the expression is executed. Guards are specified by the if keyword followed by an expression that must evaluate to a boolean value before the =>. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public struct GameState { // Fields containing a game state character_x: u64, character_y: u64, character_height: u64, // ... } fun perform_action(stat: &mut GameState, action: Action) { match (action) { // Handle the `Stop` variant Action::Stop => state.stop(), // Handle the `Pause` variant // If the duration is 0, do nothing Action::Pause { duration: 0 } => (), Action::Pause { duration } => state.pause(duration), // Handle the `MoveTo` variant Action::MoveTo { x, y } => state.move_to(x, y), // Handle the `Jump` variant // if the game disallows jumps then do nothing Action::Jump(_) if (state.jumps_not_allowed()) => (), // otherwise, jump to the specified height Action::Jump(height) => state.jump(height), } }\n} To see how to pattern match on an enum to update values within it mutably, let's take the following example of a simple enum that has two variants, each with a single field. We can then write two functions, one that only increments the value of the first variant, and another that only increments the value of the second variant: module a::m { public enum SimpleEnum { Variant1(u64), Variant2(u64), } public fun incr_enum_variant1(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant1(mut value) => *value += 1, _ => (), } } public fun incr_enum_variant2(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant2(mut value) => *value += 1, _ => (), } }\n} Now, if we have a value of SimpleEnum we can use the functions to increment the value of this variant: let mut x = SimpleEnum::Variant1(10);\nincr_enum_variant1(&mut x);\nassert!(x == SimpleEnum::Variant1(11));\n// Doesn't increment since it increments a different variant\nincr_enum_variant2(&mut x);\nassert!(x == SimpleEnum::Variant1(11)); When pattern matching on a Move value that does not have the drop ability, the value must be consumed or destructured in each match arm. If the value is not consumed or destructured in a match arm, the compiler will raise an error. This is to ensure that all possible values are handled in the match statement. As an example, consider the following code: module a::m { public enum X { Variant { x: u64 } } public fun bad(x: X) { match x { _ => () // ^ ERROR! value of type `X` is not consumed or destructured in this match arm } }\n} To properly handle this, you will need to destructure X and all its variants in the match's arm(s): module a::m { public enum X { Variant { x: u64 } } public fun good(x: X) { match x { // OK! Compiles since the value is destructured X::Variant { x: _ } => () } }\n}","breadcrumbs":"Enums » Pattern Matching Enum Variants and Destructuring","id":"143","title":"Pattern Matching Enum Variants and Destructuring"},"144":{"body":"As long as the enum has the drop ability, you can overwrite the value of an enum with a new value of the same type just as you might with other values in Move. module a::m { public enum X has drop { A(u64), B(u64), } public fun overwrite_enum(x: &mut X) { *x = X::A(10); }\n} let mut x = X::B(20);\noverwrite_enum(&mut x);\nassert!(x == X::A(10));","breadcrumbs":"Enums » Overwriting to Enum Values","id":"144","title":"Overwriting to Enum Values"},"145":{"body":"Constants are a way of giving a name to shared, static values inside of a module. The constant's value must be known at compilation. The constant's value is stored in the compiled module. And each time the constant is used, a new copy of that value is made.","breadcrumbs":"Constants » Constants","id":"145","title":"Constants"},"146":{"body":"Constant declarations begin with the const keyword, followed by a name, a type, and a value. const : = ; For example module a::example { const MY_ADDRESS: address = @a; public fun permissioned(addr: address) { assert!(addr == MY_ADDRESS, 0); }\n}","breadcrumbs":"Constants » Declaration","id":"146","title":"Declaration"},"147":{"body":"Constants must start with a capital letter A to Z. After the first letter, constant names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. const FLAG: bool = false;\nconst EMyErrorCode: u64 = 0;\nconst ADDRESS_42: address = @0x42; Even though you can use letters a to z in a constant. The general style guidelines are to use just uppercase letters A to Z, with underscores _ between each word. For error codes, we use E as a prefix and then upper camel case (also known as Pascal case) for the rest of the name, as seen in EMyErrorCode. The current naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Constants » Naming","id":"147","title":"Naming"},"148":{"body":"public or public(package) constants are not currently supported. const values can be used only in the declaring module. However, as a convenience, they can be used across modules in unit tests attributes .","breadcrumbs":"Constants » Visibility","id":"148","title":"Visibility"},"149":{"body":"Currently, constants are limited to the primitive types bool, u8, u16, u32, u64, u128, u256, address, and vector, where T is the valid type for a constant.","breadcrumbs":"Constants » Valid Expressions","id":"149","title":"Valid Expressions"},"15":{"body":"Integer types of one size can be cast to integer types of another size. Integers are the only types in Move that support casting. Casts do not truncate. Casting aborts if the result is too large for the specified type. Syntax Operation Aborts if (e as T) Cast integer expression e into an integer type T e is too large to represent as a T Here, the type of e must be 8, 16, 32, 64, 128 or 256 and T must be u8, u16, u32, u64, u128, or u256. For example: (x as u8) (y as u16) (873u16 as u32) (2u8 as u64) (1 + 3 as u128) (4/2 + 12345 as u256)","breadcrumbs":"Primitive Types » Integers » Casting","id":"15","title":"Casting"},"150":{"body":"Commonly, consts are assigned a simple value, or literal, of their type. For example const MY_BOOL: bool = false;\nconst MY_ADDRESS: address = @0x70DD;\nconst BYTES: vector = b\"hello world\";\nconst HEX_BYTES: vector = x\"DEADBEEF\";","breadcrumbs":"Constants » Values","id":"150","title":"Values"},"151":{"body":"In addition to literals, constants can include more complex expressions, as long as the compiler is able to reduce the expression to a value at compile time. Currently, equality operations, all boolean operations, all bitwise operations, and all arithmetic operations can be used. const RULE: bool = true && false;\nconst CAP: u64 = 10 * 100 + 1;\nconst SHIFTY: u8 = { (1 << 1) * (1 << 2) * (1 << 3) * (1 << 4)\n};\nconst HALF_MAX: u128 = 340282366920938463463374607431768211455 / 2;\nconst REM: u256 = 57896044618658097711785492504343953926634992332820282019728792003956564819968 % 654321;\nconst EQUAL: bool = 1 == 1; If the operation would result in a runtime exception, the compiler will give an error that it is unable to generate the constant's value const DIV_BY_ZERO: u64 = 1 / 0; // ERROR!\nconst SHIFT_BY_A_LOT: u64 = 1 << 100; // ERROR!\nconst NEGATIVE_U64: u64 = 0 - 1; // ERROR! Additionally, constants can refer to other constants within the same module. const BASE: u8 = 4;\nconst SQUARE: u8 = BASE * BASE; Note though, that any cycle in the constant definitions results in an error. const A: u16 = B + 1;\nconst B: u16 = A + 1; // ERROR!","breadcrumbs":"Constants » Complex Expressions","id":"151","title":"Complex Expressions"},"152":{"body":"Generics can be used to define functions and structs over different input data types. This language feature is sometimes referred to as parametric polymorphism. In Move, we will often use the term generics interchangeably with type parameters and type arguments . Generics are commonly used in library code, such as in vector , to declare code that works over any possible type (that satisfies the specified constraints). This sort of parameterization allows you to reuse the same implementation across multiple types and situations.","breadcrumbs":"Generics » Generics","id":"152","title":"Generics"},"153":{"body":"Both functions and structs can take a list of type parameters in their signatures, enclosed by a pair of angle brackets <...>.","breadcrumbs":"Generics » Declaring Type Parameters","id":"153","title":"Declaring Type Parameters"},"154":{"body":"Type parameters for functions are placed after the function name and before the (value) parameter list. The following code defines a generic identity function that takes a value of any type and returns that value unchanged. fun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} Once defined, the type parameter T can be used in parameter types, return types, and inside the function body.","breadcrumbs":"Generics » Generic Functions","id":"154","title":"Generic Functions"},"155":{"body":"Type parameters for structs are placed after the struct name, and can be used to name the types of the fields. public struct Foo has copy, drop { x: T } public struct Bar has copy, drop { x: T1, y: vector,\n} Note that type parameters do not have to be used","breadcrumbs":"Generics » Generic Structs","id":"155","title":"Generic Structs"},"156":{"body":"","breadcrumbs":"Generics » Type Arguments","id":"156","title":"Type Arguments"},"157":{"body":"When calling a generic function, one can specify the type arguments for the function's type parameters in a list enclosed by a pair of angle brackets. fun foo() { let x = id(true);\n} If you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Calling Generic Functions","id":"157","title":"Calling Generic Functions"},"158":{"body":"Similarly, one can attach a list of type arguments for the struct's type parameters when constructing or destructing values of generic types. fun foo() { // type arguments on construction let foo = Foo { x: true }; let bar = Bar { x: 0, y: vector[] }; // type arguments on destruction let Foo { x } = foo; let Bar { x, y } = bar;\n} In any case if you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Using Generic Structs","id":"158","title":"Using Generic Structs"},"159":{"body":"If you specify the type arguments and they conflict with the actual values supplied, an error will be given: fun foo() { let x = id(true); // ERROR! true is not a u64\n} and similarly: fun foo() { let foo = Foo { x: 0 }; // ERROR! 0 is not a bool let Foo
{ x } = foo; // ERROR! bool is incompatible with address\n}","breadcrumbs":"Generics » Type Argument Mismatch","id":"159","title":"Type Argument Mismatch"},"16":{"body":"As with the other scalar values built-in to the language, integer values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Integers » Ownership","id":"16","title":"Ownership"},"160":{"body":"In most cases, the Move compiler will be able to infer the type arguments so you don't have to write them down explicitly. Here's what the examples above would look like if we omit the type arguments: fun foo() { let x = id(true); // ^ is inferred let foo = Foo { x: true }; // ^ is inferred let Foo { x } = foo; // ^ is inferred\n} Note: when the compiler is unable to infer the types, you'll need annotate them manually. A common scenario is to call a function with type parameters appearing only at return positions. module a::m { fun foo() { let v = vector[]; // ERROR! // ^ The compiler cannot figure out the element type, since it is never used let v = vector[]; // ^~~~~ Must annotate manually in this case. }\n} Note that these cases are a bit contrived since the vector[] is never used, ad as such, Move's type inference cannot infer the type. However, the compiler will be able to infer the type if that value is used later in that function: module a::m { fun foo() { let v = vector[]; // ^ is inferred vector::push_back(&mut v, 42); // ^ is inferred }\n}","breadcrumbs":"Generics » Type Inference","id":"160","title":"Type Inference"},"161":{"body":"In Move, the integer types u8, u16, u32, u64, u128, and u256 are all distinct types. However, each one of these types can be created with the same numerical value syntax. In other words, if a type suffix is not provided, the compiler will infer the integer type based on the usage of the value. let x8: u8 = 0;\nlet x16: u16 = 0;\nlet x32: u32 = 0;\nlet x64: u64 = 0;\nlet x128: u128 = 0;\nlet x256: u256 = 0; If the value is not used in a context that requires a specific integer type, u64 is taken as a default. let x = 0;\n// ^ u64 is used by default If the value however is too large for the inferred type, an error will be given let i: u8 = 256; // ERROR!\n// ^^^ too large for u8\nlet x = 340282366920938463463374607431768211454;\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ too large for u64 In cases where the number is too large, you might need to annotate it explicitly let x = 340282366920938463463374607431768211454u128;\n// ^^^^ valid!","breadcrumbs":"Generics » Integers","id":"161","title":"Integers"},"162":{"body":"For a struct definition, an unused type parameter is one that does not appear in any field defined in the struct, but is checked statically at compile time. Move allows unused type parameters so the following struct definition is valid: public struct Foo { foo: u64\n} This can be convenient when modeling certain concepts. Here is an example: module a::m { // Currency Specifiers public struct A {} public struct B {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. public struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_a(value: u64): Coin { mint_generic(value) } public fun mint_b(value: u64): Coin { mint_generic(value) }\n} In this example, Coin is generic on the Currency type parameter, which specifies the currency of the coin and allows code to be written either generically on any currency or concretely on a specific currency. This generality applies even when the Currency type parameter does not appear in any of the fields defined in Coin.","breadcrumbs":"Generics » Unused Type Parameters","id":"162","title":"Unused Type Parameters"},"163":{"body":"In the example above, although struct Coin asks for the store ability, neither Coin nor Coin will have the store ability. This is because of the rules for Conditional Abilities and Generic Types and the fact that A and B don't have the store ability, despite the fact that they are not even used in the body of struct Coin. This might cause some unpleasant consequences. For example, we are unable to put Coin into a wallet in storage. One possible solution would be to add spurious ability annotations to A and B (i.e., public struct Currency1 has store {}). But, this might lead to bugs or security vulnerabilities because it weakens the types with unnecessary ability declarations. For example, we would never expect a value in the storage to have a field in type A, but this would be possible with the spurious store ability. Moreover, the spurious annotations would be infectious, requiring many functions generic on the unused type parameter to also include the necessary constraints. Phantom type parameters solve this problem. Unused type parameters can be marked as phantom type parameters, which do not participate in the ability derivation for structs. In this way, arguments to phantom type parameters are not considered when deriving the abilities for generic types, thus avoiding the need for spurious ability annotations. For this relaxed rule to be sound, Move's type system guarantees that a parameter declared as phantom is either not used at all in the struct definition, or it is only used as an argument to type parameters also declared as phantom. Declaration In a struct definition a type parameter can be declared as phantom by adding the phantom keyword before its declaration. public struct Coin has store { value: u64\n} If a type parameter is declared as phantom we say it is a phantom type parameter. When defining a struct, Move's type checker ensures that every phantom type parameter is either not used inside the struct definition or it is only used as an argument to a phantom type parameter. public struct S1 { f: u64 }\n// ^^^^^^^ valid, T1 does not appear inside the struct definition public struct S2 { f: S1 }\n// ^^^^^^^ valid, T1 appears in phantom position The following code shows examples of violations of the rule: public struct S1 { f: T }\n// ^^^^^^^ ERROR! ^ Not a phantom position public struct S2 { f: T }\npublic struct S3 { f: S2 }\n// ^^^^^^^ ERROR! ^ Not a phantom position More formally, if a type is used as an argument to a phantom type parameter we say the type appears in phantom position . With this definition in place, the rule for the correct use of phantom parameters can be specified as follows: A phantom type parameter can only appear in phantom position . Note that specifying phantom is not required, but the compiler will warn if a type parameter could be phantom but was not marked as such. Instantiation When instantiating a struct, the arguments to phantom parameters are excluded when deriving the struct abilities. For example, consider the following code: public struct S has copy { f: T1 }\npublic struct NoCopy {}\npublic struct HasCopy has copy {} Consider now the type S. Since S is defined with copy and all non-phantom arguments have copy then S also has copy. Phantom Type Parameters with Ability Constraints Ability constraints and phantom type parameters are orthogonal features in the sense that phantom parameters can be declared with ability constraints. public struct S {} When instantiating a phantom type parameter with an ability constraint, the type argument has to satisfy that constraint, even though the parameter is phantom. The usual restrictions apply and T can only be instantiated with arguments having copy.","breadcrumbs":"Generics » Phantom Type Parameters","id":"163","title":"Phantom Type Parameters"},"164":{"body":"In the examples above, we have demonstrated how one can use type parameters to define \"unknown\" types that can be plugged in by callers at a later time. This however means the type system has little information about the type and has to perform checks in a very conservative way. In some sense, the type system must assume the worst case scenario for an unconstrained generic--a type with no abilities . Constraints offer a way to specify what properties these unknown types have so the type system can allow operations that would otherwise be unsafe.","breadcrumbs":"Generics » Constraints","id":"164","title":"Constraints"},"165":{"body":"Constraints can be imposed on type parameters using the following syntax. // T is the name of the type parameter\nT: (+ )* The can be any of the four abilities , and a type parameter can be constrained with multiple abilities at once. So all of the following would be valid type parameter declarations: T: copy\nT: copy + drop\nT: copy + drop + store + key","breadcrumbs":"Generics » Declaring Constraints","id":"165","title":"Declaring Constraints"},"166":{"body":"Constraints are checked at instantiation sites public struct Foo { x: T } public struct Bar { x: Foo }\n// ^^ valid, u8 has `copy` public struct Baz { x: Foo }\n// ^ ERROR! T does not have 'copy' And similarly for functions fun unsafe_consume(x: T) { // ERROR! x does not have 'drop'\n} fun consume(x: T) { // valid, x will be dropped automatically\n} public struct NoAbilities {} fun foo() { let r = NoAbilities {}; consume(NoAbilities); // ^^^^^^^^^^^ ERROR! NoAbilities does not have 'drop'\n} And some similar examples, but with copy fun unsafe_double(x: T) { (copy x, x) // ERROR! T does not have 'copy'\n} fun double(x: T) { (copy x, x) // valid, T has 'copy'\n} public struct NoAbilities {} fun foo(): (NoAbilities, NoAbilities) { let r = NoAbilities {}; double(r) // ^ ERROR! NoAbilities does not have 'copy'\n} For more information, see the abilities section on conditional abilities and generic types .","breadcrumbs":"Generics » Verifying Constraints","id":"166","title":"Verifying Constraints"},"167":{"body":"","breadcrumbs":"Generics » Limitations on Recursions","id":"167","title":"Limitations on Recursions"},"168":{"body":"Generic structs can not contain fields of the same type, either directly or indirectly, even with different type arguments. All of the following struct definitions are invalid: public struct Foo { x: Foo // ERROR! 'Foo' containing 'Foo'\n} public struct Bar { x: Bar // ERROR! 'Bar' containing 'Bar'\n} // ERROR! 'A' and 'B' forming a cycle, which is not allowed either.\npublic struct A { x: B\n} public struct B { x: A y: A\n}","breadcrumbs":"Generics » Recursive Structs","id":"168","title":"Recursive Structs"},"169":{"body":"Move allows generic functions to be called recursively. However, when used in combination with generic structs, this could create an infinite number of types in certain cases, and allowing this means adding unnecessary complexity to the compiler, vm and other language components. Therefore, such recursions are forbidden. This restriction might be relaxed in the future, but for now, the following examples should give you an idea of what is allowed and what is not. module a::m { public struct A {} // Finitely many types -- allowed. // foo -> foo -> foo -> ... is valid fun foo() { foo(); } // Finitely many types -- allowed. // foo -> foo> -> foo> -> ... is valid fun foo() { foo>(); }\n} Not allowed: module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> foo> -> foo>> -> ... fun foo() { foo>(); }\n} And similarly, not allowed: module a::n { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> bar -> foo> // -> bar, T2> -> foo, A> // -> bar, A> -> foo, A>> // -> ... fun foo() { bar(); } fun bar { foo>(); }\n} Note, the check for type level recursions is based on a conservative analysis on the call sites and does NOT take control flow or runtime values into account. module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! fun foo(n: u64) { if (n > 0) foo>(n - 1); }\n} The function in the example above will technically terminate for any given input and therefore only creating finitely many types, but it is still considered invalid by Move's type system.","breadcrumbs":"Generics » Advanced Topic: Type-level Recursions","id":"169","title":"Advanced Topic: Type-level Recursions"},"17":{"body":"bool is Move's primitive type for boolean true and false values.","breadcrumbs":"Primitive Types » Bool » Bool","id":"17","title":"Bool"},"170":{"body":"Abilities are a typing feature in Move that control what actions are permissible for values of a given type. This system grants fine grained control over the \"linear\" typing behavior of values, as well as if and how values are used in storage (as defined by the specific deployment of Move, e.g. the notion of storage for the blockchain). This is implemented by gating access to certain bytecode instructions so that for a value to be used with the bytecode instruction, it must have the ability required (if one is required at all—not every instruction is gated by an ability). For Sui, key is used to signify an object . Objects are the basic unit of storage where each object has a unique, 32-byte ID. store is then used to both indicate what data can be stored inside of an object, and is also used to indicate what types can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » Abilities","id":"170","title":"Abilities"},"171":{"body":"The four abilities are: copy Allows values of types with this ability to be copied. drop Allows values of types with this ability to be popped/dropped. store Allows values of types with this ability to exist inside a value in storage. For Sui, store controls what data can be stored inside of an object . store also controls what types can be transferred outside of their defining module. key Allows the type to serve as a \"key\" for storage. Ostensibly this means the value can be a top-level value in storage; in other words, it does not need to be contained in another value to be in storage. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » The Four Abilities","id":"171","title":"The Four Abilities"},"172":{"body":"The copy ability allows values of types with that ability to be copied. It gates the ability to copy values out of local variables with the copy operator and to copy values via references with dereference *e . If a value has copy, all values contained inside of that value have copy.","breadcrumbs":"Type Abilities » copy","id":"172","title":"copy"},"173":{"body":"The drop ability allows values of types with that ability to be dropped. By dropped, we mean that value is not transferred and is effectively destroyed as the Move program executes. As such, this ability gates the ability to ignore values in a multitude of locations, including: not using the value in a local variable or parameter not using the value in a sequence via ; overwriting values in variables in assignments overwriting values via references when writing *e1 = e2 . If a value has drop, all values contained inside of that value have drop.","breadcrumbs":"Type Abilities » drop","id":"173","title":"drop"},"174":{"body":"The store ability allows values of types with this ability to exist inside of a value in storage, but not necessarily as a top-level value in storage. This is the only ability that does not directly gate an operation. Instead it gates the existence in storage when used in tandem with key. If a value has store, all values contained inside of that value have store. For Sui, store serves double duty. It controls what values can appear inside of an object , and what objects can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » store","id":"174","title":"store"},"175":{"body":"The key ability allows the type to serve as a key for storage operations as defined by the deployment of Move. While it is specific per Move instance, it serves to gates all storage operations, so in order for a type to be used with storage primitives, the type must have the key ability. If a value has key, all values contained inside of that value have store. This is the only ability with this sort of asymmetry. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » key","id":"175","title":"key"},"176":{"body":"All primitive, builtin types have copy, drop, and store. bool, u8, u16, u32, u64, u128, u256, and address all have copy, drop, and store. vector may have copy, drop, and store depending on the abilities of T. See Conditional Abilities and Generic Types for more details. Immutable references & and mutable references &mut both have copy and drop. This refers to copying and dropping the reference itself, not what they refer to. References cannot appear in global storage, hence they do not have store. Note that none of the primitive types have key, meaning none of them can be used directly with storage operations.","breadcrumbs":"Type Abilities » Builtin Types","id":"176","title":"Builtin Types"},"177":{"body":"To declare that a struct or enum has an ability, it is declared with has after the datatype name and either before or after the fields/variants. For example: public struct Ignorable has drop { f: u64 }\npublic struct Pair has copy, drop, store { x: u64, y: u64 }\npublic struct MyVec(vector) has copy, drop, store; public enum IgnorableEnum has drop { Variant }\npublic enum PairEnum has copy, drop, store { Variant }\npublic enum MyVecEnum { Variant } has copy, drop, store; In this case: Ignorable* has the drop ability. Pair* and MyVec* both have copy, drop, and store. All of these abilities have strong guarantees over these gated operations. The operation can be performed on the value only if it has that ability; even if the value is deeply nested inside of some other collection! As such: when declaring a struct’s abilities, certain requirements are placed on the fields. All fields must satisfy these constraints. These rules are necessary so that structs satisfy the reachability rules for the abilities given above. If a struct is declared with the ability... copy, all fields must have copy. drop, all fields must have drop. store, all fields must have store. key, all fields must have store. key is the only ability currently that doesn’t require itself. An enum can have any of these abilities with the exception of key, which enums cannot have because they cannot be top-level values (objects) in storage. The same rules apply to fields of enum variants as they do for struct fields though. In particular, if an enum is declared with the ability... copy, all fields of all variants must have copy. drop, all fields of all variants must have drop. store, all fields of all variants must have store. key, is not allowed on enums as previously mentioned. For example: // A struct without any abilities\npublic struct NoAbilities {} public struct WantsCopy has copy { f: NoAbilities, // ERROR 'NoAbilities' does not have 'copy'\n} public enum WantsCopyEnum has copy { Variant1 Variant2(NoAbilities), // ERROR 'NoAbilities' does not have 'copy'\n} and similarly: // A struct without any abilities\npublic struct NoAbilities {} public struct MyData has key { f: NoAbilities, // Error 'NoAbilities' does not have 'store'\n} public struct MyDataEnum has store { Variant1, Variant2(NoAbilities), // Error 'NoAbilities' does not have 'store'\n}","breadcrumbs":"Type Abilities » Annotating Structs and Enums","id":"177","title":"Annotating Structs and Enums"},"178":{"body":"When abilities are annotated on a generic type, not all instances of that type are guaranteed to have that ability. Consider this struct declaration: // public struct Cup has copy, drop, store, key { item: T } It might be very helpful if Cup could hold any type, regardless of its abilities. The type system can see the type parameter, so it should be able to remove abilities from Cup if it sees a type parameter that would violate the guarantees for that ability. This behavior might sound a bit confusing at first, but it might be more understandable if we think about collection types. We could consider the builtin type vector to have the following type declaration: vector has copy, drop, store; We want vectors to work with any type. We don't want separate vector types for different abilities. So what are the rules we would want? Precisely the same that we would want with the field rules above. So, it would be safe to copy a vector value only if the inner elements can be copied. It would be safe to ignore a vector value only if the inner elements can be ignored/dropped. And, it would be safe to put a vector in storage only if the inner elements can be in storage. To have this extra expressiveness, a type might not have all the abilities it was declared with depending on the instantiation of that type; instead, the abilities a type will have depends on both its declaration and its type arguments. For any type, type parameters are pessimistically assumed to be used inside of the struct, so the abilities are only granted if the type parameters meet the requirements described above for fields. Taking Cup from above as an example: Cup has the ability copy only if T has copy. It has drop only if T has drop. It has store only if T has store. It has key only if T has store. Here are examples for this conditional system for each ability:","breadcrumbs":"Type Abilities » Conditional Abilities and Generic Types","id":"178","title":"Conditional Abilities and Generic Types"},"179":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun example(c_x: Cup, c_s: Cup) { // Valid, 'Cup' has 'copy' because 'u64' has 'copy' let c_x2 = copy c_x; // Valid, 'Cup' has 'copy' because 'S' has 'copy' let c_s2 = copy c_s;\n} fun invalid(c_account: Cup, c_n: Cup) { // Invalid, 'Cup' does not have 'copy'. // Even though 'Cup' was declared with copy, the instance does not have 'copy' // because 'signer' does not have 'copy' let c_account2 = copy c_account; // Invalid, 'Cup' does not have 'copy' // because 'NoAbilities' does not have 'copy' let c_n2 = copy c_n;\n}","breadcrumbs":"Type Abilities » Example: conditional copy","id":"179","title":"Example: conditional copy"},"18":{"body":"Literals for bool are either true or false.","breadcrumbs":"Primitive Types » Bool » Literals","id":"18","title":"Literals"},"180":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun unused() { Cup { item: true }; // Valid, 'Cup' has 'drop' Cup { item: S { f: false }}; // Valid, 'Cup' has 'drop'\n} fun left_in_local(c_account: Cup): u64 { let c_b = Cup { item: true }; let c_s = Cup { item: S { f: false }}; // Valid return: 'c_account', 'c_b', and 'c_s' have values // but 'Cup', 'Cup', and 'Cup' have 'drop' 0\n} fun invalid_unused() { // Invalid, Cannot ignore 'Cup' because it does not have 'drop'. // Even though 'Cup' was declared with 'drop', the instance does not have 'drop' // because 'NoAbilities' does not have 'drop' Cup { item: NoAbilities {} };\n} fun invalid_left_in_local(): u64 { let n = Cup { item: NoAbilities {} }; // Invalid return: 'c_n' has a value // and 'Cup' does not have 'drop' 0\n}","breadcrumbs":"Type Abilities » Example: conditional drop","id":"180","title":"Example: conditional drop"},"181":{"body":"public struct Cup has copy, drop, store { item: T } // 'MyInnerData is declared with 'store' so all fields need 'store'\nstruct MyInnerData has store { yes: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n} // 'MyData' is declared with 'key' so all fields need 'store'\nstruct MyData has key { yes: Cup, // Valid, 'Cup' has 'store' inner: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n}","breadcrumbs":"Type Abilities » Example: conditional store","id":"181","title":"Example: conditional store"},"182":{"body":"public struct NoAbilities {}\npublic struct MyData has key { f: T } fun valid(addr: address) acquires MyData { // Valid, 'MyData' has 'key' transfer(addr, MyData { f: 0 });\n} fun invalid(addr: address) { // Invalid, 'MyData' does not have 'key' transfer(addr, MyData { f: NoAbilities {} }) // Invalid, 'MyData' does not have 'key' borrow(addr); // Invalid, 'MyData' does not have 'key' borrow_mut(addr);\n} // Mock storage operation\nnative public fun transfer(addr: address, value: T);","breadcrumbs":"Type Abilities » Example: conditional key","id":"182","title":"Example: conditional key"},"183":{"body":"The use syntax can be used to create aliases to members in other modules. use can be used to create aliases that last either for the entire module, or for a given expression block scope.","breadcrumbs":"Uses and Aliases » Uses and Aliases","id":"183","title":"Uses and Aliases"},"184":{"body":"There are several different syntax cases for use. Starting with the most simple, we have the following for creating aliases to other modules use
::;\nuse
:: as ; For example use std::vector;\nuse std::option as o; use std::vector; introduces an alias vector for std::vector. This means that anywhere you would want to use the module name std::vector (assuming this use is in scope), you could use vector instead. use std::vector; is equivalent to use std::vector as vector; Similarly use std::option as o; would let you use o instead of std::option use std::vector;\nuse std::option as o; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, o::some(0)); vector::push_back(&mut v, o::none()); v\n} If you want to import a specific module member (such as a function or struct). You can use the following syntax. use
::::;\nuse
:::: as ; For example use std::vector::push_back;\nuse std::option::some as s; This would let you use the function std::vector::push_back without full qualification. Similarly for std::option::some with s. Instead you could use push_back and s respectively. Again, use std::vector::push_back; is equivalent to use std::vector::push_back as push_back; use std::vector::push_back;\nuse std::option::some as s; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, s(0)); vector::push_back(&mut v, std::option::none()); v\n}","breadcrumbs":"Uses and Aliases » Syntax","id":"184","title":"Syntax"},"185":{"body":"If you want to add aliases for multiple module members at once, you can do so with the following syntax use
::::{, as ... }; For example use std::vector::push_back;\nuse std::option::{some as s, none as n}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, s(0)); push_back(&mut v, n()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases","id":"185","title":"Multiple Aliases"},"186":{"body":"If you need to add an alias to the Module itself in addition to module members, you can do that in a single use using Self. Self is a member of sorts that refers to the module. use std::option::{Self, some, none}; For clarity, all of the following are equivalent: use std::option;\nuse std::option as option;\nuse std::option::Self;\nuse std::option::Self as option;\nuse std::option::{Self};\nuse std::option::{Self as option};","breadcrumbs":"Uses and Aliases » Self aliases","id":"186","title":"Self aliases"},"187":{"body":"If needed, you can have as many aliases for any item as you like use std::vector::push_back;\nuse std::option::{Option, some, none}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases for the Same Definition","id":"187","title":"Multiple Aliases for the Same Definition"},"188":{"body":"In Move, you can also import multiple names with the same use declaration. This brings all provided names into scope: use std::{ vector::{Self as vec, push_back}, string::{String, Self as str}\n}; fun example(s: &mut String) { let mut v = vec::empty(); push_back(&mut v, 0); push_back(&mut v, 10); str::append_utf8(s, v);\n}","breadcrumbs":"Uses and Aliases » Nested imports","id":"188","title":"Nested imports"},"189":{"body":"Inside of a module all use declarations are usable regardless of the order of declaration. module a::example { use std::vector; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, 0); vector::push_back(&mut v, 10); v } use std::option::{Option, some, none};\n} The aliases declared by use in the module usable within that module. Additionally, the aliases introduced cannot conflict with other module members. See Uniqueness for more details","breadcrumbs":"Uses and Aliases » Inside a module","id":"189","title":"Inside a module"},"19":{"body":"","breadcrumbs":"Primitive Types » Bool » Operations","id":"19","title":"Operations"},"190":{"body":"You can add use declarations to the beginning of any expression block module a::example { fun new_vec(): vector> { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }\n} As with let, the aliases introduced by use in an expression block are removed at the end of that block. module a::example { fun new_vec(): vector> { let result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }; result }\n} Attempting to use the alias after the block ends will result in an error fun new_vec(): vector> { let mut result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); v }; push_back(&mut result, std::option::none()); // ^^^^^^ ERROR! unbound function 'push_back' result } Any use must be the first item in the block. If the use comes after any expression or let, it will result in a parsing error { let mut v = vector[]; use std::vector; // ERROR!\n} This allows you to shorten your import blocks in many situations. Note that these imports, as the previous ones, are all subject to the naming and uniqueness rules described in the following sections.","breadcrumbs":"Uses and Aliases » Inside an expression","id":"190","title":"Inside an expression"},"191":{"body":"Aliases must follow the same rules as other module members. This means that aliases to structs (and constants) must start with A to Z module a::data { public struct S {} const FLAG: bool = false; public fun foo() {}\n}\nmodule a::example { use a::data::{ S as s, // ERROR! FLAG as fLAG, // ERROR! foo as FOO, // valid foo as bar, // valid };\n}","breadcrumbs":"Uses and Aliases » Naming rules","id":"191","title":"Naming rules"},"192":{"body":"Inside a given scope, all aliases introduced by use declarations must be unique. For a module, this means aliases introduced by use cannot overlap module a::example { use std::option::{none as foo, some as foo}; // ERROR! // ^^^ duplicate 'foo' use std::option::none as bar; use std::option::some as bar; // ERROR! // ^^^ duplicate 'bar' } And, they cannot overlap with any of the module's other members module a::data { public struct S {}\n}\nmodule example { use a::data::S; public struct S { value: u64 } // ERROR! // ^ conflicts with alias 'S' above\n}\n} Inside of an expression block, they cannot overlap with each other, but they can shadow other aliases or names from an outer scope","breadcrumbs":"Uses and Aliases » Uniqueness","id":"192","title":"Uniqueness"},"193":{"body":"use aliases inside of an expression block can shadow names (module members or aliases) from the outer scope. As with shadowing of locals, the shadowing ends at the end of the expression block; module a::example { public struct WrappedVector { vec: vector } public fun empty(): WrappedVector { WrappedVector { vec: std::vector::empty() } } public fun push_back(v: &mut WrappedVector, value: u64) { std::vector::push_back(&mut v.vec, value); } fun example1(): WrappedVector { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut vec = vector[]; push_back(&mut vec, 0); push_back(&mut vec, 1); push_back(&mut vec, 10); WrappedVector { vec } } fun example2(): WrappedVector { let vec = { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut v = vector[]; push_back(&mut v, 0); push_back(&mut v, 1); v }; // 'push_back' now refers to Self::push_back let mut res = WrappedVector { vec }; push_back(&mut res, 10); res }\n}","breadcrumbs":"Uses and Aliases » Shadowing","id":"193","title":"Shadowing"},"194":{"body":"An unused use will result in a warning module a::example { use std::option::{some, none}; // Warning! // ^^^^ unused alias 'none' public fun example(): std::option::Option { some(0) }\n}","breadcrumbs":"Uses and Aliases » Unused Use or Alias","id":"194","title":"Unused Use or Alias"},"195":{"body":"As a syntactic convenience, some functions in Move can be called as \"methods\" on a value. This is done by using the . operator to call the function, where the value on the left-hand side of the . is the first argument to the function (sometimes called the receiver). The type of that value statically determines which function is called. This is an important difference from some other languages, where this syntax might indicate a dynamic call, where the function to be called is determined at runtime. In Move, all function calls are statically determined. In short, this syntax exists to make it easier to call functions without having to create an alias with use, and without having to explicitly borrow the first argument to the function. Additionally, this can make code more readable, as it reduces the amount of boilerplate needed to call a function and makes it easier to chain function calls.","breadcrumbs":"Method Syntax » Methods","id":"195","title":"Methods"},"196":{"body":"The syntax for calling a method is as follows: . <[type_arguments],*> ( ) For example coin.value();\n*nums.borrow_mut(i) = 5;","breadcrumbs":"Method Syntax » Syntax","id":"196","title":"Syntax"},"197":{"body":"When a method is called, the compiler will statically determine which function is called based on the type of the receiver (the argument on the left-hand side of the .). The compiler maintains a mapping from type and method name to the module and function name that should be called. This mapping is created form the use fun aliases that are currently in scope, and from the appropriate functions in the receiver type's defining module. In all cases, the receiver type is the first argument to the function, whether by-value or by-reference. In this section, when we say a method \"resolves\" to a function, we mean that the compiler will statically replace the method with a normal function call. For example if we have x.foo(e) with foo resolving to a::m::foo, the compiler will replace x.foo(e) with a::m::foo(x, e), potentially automatically borrowing x.","breadcrumbs":"Method Syntax » Method Resolution","id":"197","title":"Method Resolution"},"198":{"body":"In a type’s defining module, the compiler will automatically create a method alias for any function declaration for its types when the type is the first argument in the function. For example, module a::m { public struct X() has copy, drop, store; public fun foo(x: &X) { ... } public fun bar(flag: bool, x: &X) { ... }\n} The function foo can be called as a method on a value of type X. However, not the first argument (and one is not created for bool since bool is not defined in that module). For example, fun example(x: a::m::X) { x.foo(); // valid // x.bar(true); ERROR!\n}","breadcrumbs":"Method Syntax » Functions in the Defining Module","id":"198","title":"Functions in the Defining Module"},"199":{"body":"Like a traditional use , a use fun statement creates an alias local to its current scope. This could be for the current module or the current expression block. However, the alias is associated to a type. The syntax for a use fun statement is as follows: use fun as .; This creates an alias for the , which the can receive as . For example module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 } public fun cup_value(c: Cup): T { let Cup(t) = c; t } public fun cup_swap(c: &mut Cup, t: T) { c.0 = t; }\n} We can now create use fun aliases to these functions module b::example { use fun a::cup::cup_borrow as Cup.borrow; use fun a::cup::cup_value as Cup.value; use fun a::cup::cup_swap as Cup.set; fun example(c: &mut Cup) { let _ = c.borrow(); // resolves to a::cup::cup_borrow let v = c.value(); // resolves to a::cup::cup_value c.set(v * 2); // resolves to a::cup::cup_swap }\n} Note that the in the use fun does not have to be a fully resolved path, and an alias can be used instead, so the declarations in the above example could equivalently be written as use a::cup::{Self, cup_swap}; use fun cup::cup_borrow as Cup.borrow; use fun cup::cup_value as Cup.value; use fun cup_swap as Cup.set; While these examples are cute for renaming the functions in the current module, the feature is perhaps more useful for declaring methods on types from other modules. For example, if we wanted to add a new utility to Cup, we could do so with a use fun alias and still use method syntax module b::example { fun double(c: &Cup): Cup { let v = c.value(); Cup::new(v * 2) } } Normally, we would be stuck having to call it as double(&c) because b::example did not define Cup, but instead we can use a use fun alias fun double_double(c: Cup): (Cup, Cup) { use fun b::example::double as Cup.dub; (c.dub(), c.dub()) // resolves to b::example::double in both calls } While use fun can be made in any scope, the target of the use fun must have a first argument that is the same as the . public struct X() has copy, drop, store; fun new(): X { X() }\nfun flag(flag: bool): u8 { if (flag) 1 else 0 } use fun new as X.new; // ERROR!\nuse fun flag as X.flag; // ERROR!\n// Neither `new` nor `flag` has first argument of type `X` But any first argument of the can be used, including references and mutable references public struct X() has copy, drop, store; public fun by_val(_: X) {}\npublic fun by_ref(_: &X) {}\npublic fun by_mut(_: &mut X) {} // All 3 valid, in any scope\nuse fun by_val as X.v;\nuse fun by_ref as X.r;\nuse fun by_mut as X.m; Note for generics, the methods are associated for all instances of the generic type. You cannot overload the method to resolve to different functions depending on the instantiation. public struct Cup(T) has copy, drop, store; public fun value(c: &Cup): T { c.0\n} use fun value as Cup.flag; // ERROR!\nuse fun value as Cup.num; // ERROR!\n// In both cases, `use fun` aliases cannot be generic, they must work for all instances of the type","breadcrumbs":"Method Syntax » use fun Aliases","id":"199","title":"use fun Aliases"},"2":{"body":"A module has the following syntax: module
:: { ( | | | )*\n} where
is a valid address specifying the module's package. For example: module 0x42::test { public struct Example has copy, drop { i: u64 } use std::debug; const ONE: u64 = 1; public fun print(x: u64) { let sum = x + ONE; let example = Example { i: sum }; debug::print(&sum) }\n}","breadcrumbs":"Modules » Syntax","id":"2","title":"Syntax"},"20":{"body":"bool supports three logical operations: Syntax Description Equivalent Expression && short-circuiting logical and p && q is equivalent to if (p) q else false || short-circuiting logical or p || q is equivalent to if (p) true else q ! logical negation !p is equivalent to if (p) false else true","breadcrumbs":"Primitive Types » Bool » Logical","id":"20","title":"Logical"},"200":{"body":"Unlike a traditional use , the use fun statement can be made public, which allows it to be used outside of its declared scope. A use fun can be made public if it is declared in the module that defines the receivers type, much like the method aliases that are automatically created for functions in the defining module. Or conversely, one can think that an implicit public use fun is created automatically for every function in the defining module that has a first argument of the receiver type (if it is defined in that module). Both of these views are equivalent. module a::cup { public struct Cup(T) has copy, drop, store; public use fun cup_borrow as Cup.borrow; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} In this example, a public method alias is created for a::cup::Cup.borrow and a::cup::Cup.cup_borrow. Both resolve to a::cup::cup_borrow. And both are \"public\" in the sense that they can be used outside of a::cup, without an additional use or use fun. module b::example { fun example(c: a::cup::Cup) { c.borrow(); // resolves to a::cup::cup_borrow c.cup_borrow(); // resolves to a::cup::cup_borrow }\n} The public use fun declarations thus serve as a way of renaming a function if you want to give it a cleaner name for use with method syntax. This is especially helpful if you have a module with multiple types, and similarly named functions for each type. module a::shapes { public struct Rectangle { base: u64, height: u64 } public struct Box { base: u64, height: u64, depth: u64 } // Rectangle and Box can have methods with the same name public use fun rectangle_base as Rectangle.base; public fun rectangle_base(rectangle: &Rectangle): u64 { rectangle.base } public use fun box_base as Box.base; public fun box_base(box: &Box): u64 { box.base } } Another use for public use fun is adding methods to types from other modules. This can be helpful in conjunction with functions spread out across a single package. module a::cup { public struct Cup(T) has copy, drop, store; public fun new(t: T): Cup { Cup(t) } public fun borrow(c: &Cup): &T { &c.0 } // `public use fun` to a function defined in another module public use fun a::utils::split as Cup.split;\n} module a::utils { use a::m::{Self, Cup}; public fun split(c: Cup): (Cup, Cup) { let Cup(t) = c; let half = t / 2; let rem = if (t > 0) t - half else 0; (cup::new(half), cup::new(rem)) } } And note that this public use fun does not create a circular dependency, as the use fun is not present after the module is compiled--all methods are resolved statically.","breadcrumbs":"Method Syntax » public use fun Aliases","id":"200","title":"public use fun Aliases"},"201":{"body":"A small detail to note is that method aliases respect normal use aliases. module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} module b::other { use a::cup::{Cup, cup_borrow as borrow}; fun example(c: &Cup) { c.borrow(); // resolves to a::cup::cup_borrow }\n} A helpful way to think about this is that use creates an implicit use fun alias for the function whenever it can. In this case the use a::cup::cup_borrow as borrow creates an implicit use fun a::cup::cup_borrow as Cup.borrow because it would be a valid use fun alias. Both views are equivalent. This line of reasoning can inform how specific methods will resolve with shadowing. See the cases in Scoping for more details.","breadcrumbs":"Method Syntax » Interactions with use Aliases","id":"201","title":"Interactions with use Aliases"},"202":{"body":"If not public, a use fun alias is local to its scope, much like a normal use . For example module a::m { public struct X() has copy, drop, store; public fun foo(_: &X) {} public fun bar(_: &X) {}\n} module b::other { use a::m::X; use fun a::m::foo as X.f; fun example(x: &X) { x.f(); // resolves to a::m::foo { use a::m::bar as f; x.f(); // resolves to a::m::bar }; x.f(); // still resolves to a::m::foo { use fun a::m::bar as X.f; x.f(); // resolves to a::m::bar } }","breadcrumbs":"Method Syntax » Scoping","id":"202","title":"Scoping"},"203":{"body":"When resolving a method, the compiler will automatically borrow the receiver if the function expects a reference. For example module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} fun example(mut x: X) { x.by_ref(); // resolves to a::m::by_ref(&x) x.by_mut(); // resolves to a::m::by_mut(&mut x) }\n} In these examples, x was automatically borrowed to &x and &mut x respectively. This will also work through field access module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } fun example(mut y: Y) { y.x.by_ref(); // resolves to a::m::by_ref(&y.x) y.x.by_mut(); // resolves to a::m::by_mut(&mut y.x) }\n} Note that in both examples, the local variable had to be labeled as mut to allow for the &mut borrow. Without this, there would be an error saying that x (or y in the second example) is not mutable. Keep in mind that without a reference, normal rules for variable and field access come into play. Meaning a value might be moved or copied if it is not borrowed. module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } public fun drop_y(y: Y) { y } fun example(y: Y) { y.x.by_val(); // copies `y.x` since `by_val` is by-value and `X` has `copy` y.drop_y(); // moves `y` since `drop_y` is by-value and `Y` does _not_ have `copy` }\n}","breadcrumbs":"Method Syntax » Automatic Borrowing","id":"203","title":"Automatic Borrowing"},"204":{"body":"Method calls can be chained, because any expression can be the receiver of the method. module a::shapes { public struct Point has copy, drop, store { x: u64, y: u64 } public struct Line has copy, drop, store { start: Point, end: Point } public fun x(p: &Point): u64 { p.x } public fun y(p: &Point): u64 { p.y } public fun start(l: &Line): &Point { &l.start } public fun end(l: &Line): &Point { &l.end } } module b::example { use a::shapes::Line; public fun x_values(l: Line): (u64, u64) { (l.start().x(), l.end().x()) } } In this example for l.start().x(), the compiler first resolves l.start() to a::shapes::start(&l). Then .x() is resolved to a::shapes::x(a::shapes::start(&l)). Similarly for l.end().x(). Keep in mind, this feature is not \"special\"--the left-hand side of the . can be any expression, and the compiler will resolve the method call as normal. We simply draw attention to this sort of \"chaining\" because it is a common practice to increase readability.","breadcrumbs":"Method Syntax » Chaining","id":"204","title":"Chaining"},"205":{"body":"Move provides syntax attributes to allow you to define operations that look and feel like native Move code, lowering these operations into your user-provided definitions. Our first syntax method, index, allows you to define a group of operations that can be used as custom index accessors for your datatypes, such as accessing a matrix element as m[i,j], by annotating functions that should be used for these index operations. Moreover, these definitions are bespoke per-type and available implicitly for any programmer using your type.","breadcrumbs":"Index Syntax Methods » Index Syntax","id":"205","title":"Index Syntax"},"206":{"body":"To start, consider a Matrix type that uses a vector of vectors to represent its values. You can write a small library using index syntax annotations on the borrow and borrow_mut functions as follows: module matrix { public struct Matrix { v: vector> } #[syntax(index)] public fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j) } #[syntax(index)] public fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { vector::borrow_mut(vector::borrow_mut(&mut s.v, i), j) } public fun make_matrix(v: vector>): Matrix { Matrix { v } } } Now anyone using this Matrix type has access to index syntax for it: let mut m = matrix::make_matrix(vector[ vector[1, 0, 0], vector[0, 1, 0], vector[0, 0, 1],\n]); let mut i = 0;\nwhile (i < 3) { let mut j = 0; while (j < 3) { if (i == j) { assert!(m[i, j] == 1, 1); } else { assert!(m[i, j] == 0, 0); }; *(&mut m[i,j]) = 2; j = j + 1; }; i = i + 1;\n}","breadcrumbs":"Index Syntax Methods » Overview and Summary","id":"206","title":"Overview and Summary"},"207":{"body":"As the example indicates, if you define a datatype and an associated index syntax method, anyone can invoke that method by writing index syntax on a value of that type: let mat = matrix::make_matrix(...);\nlet m_0_0 = mat[0, 0]; During compilation, the compiler translates these into the appropriate function invocations based on the position and mutable usage of the expression: let mut mat = matrix::make_matrix(...); let m_0_0 = mat[0, 0];\n// translates to `copy matrix::borrow(&mat, 0, 0)` let m_0_0 = &mat[0, 0];\n// translates to `matrix::borrow(&mat, 0, 0)` let m_0_0 = &mut mat[0, 0];\n// translates to `matrix::borrow_mut(&mut mat, 0, 0)`\n`` You can also intermix index expressions with field accesses: ```move\npublic struct V { v: vector } public struct Vs { vs: vector } fun borrow_first(input: &Vs): &u64 { &input.vs[0].v[0] // translates to `vector::borrow(&vector::borrow(&input.vs, 0).v, 0)`\n}","breadcrumbs":"Index Syntax Methods » Usage","id":"207","title":"Usage"},"208":{"body":"Note that, aside from the definition and type limitations described in the rest of this chapter, Move places no restrictions on the values your index syntax method takes as parameters. This allows you to implement intricate programmatic behavior when defining index syntax, such as a data structure that takes a default value if the index is out of bounds: #[syntax(index)]\npublic fun borrow_or_set( input: &mut MTable, key: Key, default: Value\n): &mut Value { if (contains(input, key)) { borrow(input, key) } else { insert(input, key, default); borrow(input, key) }\n} Now, when you index into MTable, you must also provide a default value: let string_key: String = ...;\nlet mut table: MTable = m_table::make_table();\nlet entry: &mut u64 = &mut table[string_key, 0]; This sort of extensible power allows you to write precise index interfaces for your types, concretely enforcing bespoke behavior.","breadcrumbs":"Index Syntax Methods » Index Functions Take Flexible Arguments","id":"208","title":"Index Functions Take Flexible Arguments"},"209":{"body":"This powerful syntax form allows all of your user-defined datatypes to behave in this way, assuming your definitions adhere to the following rules: The #[syntax(index)] attribute is added to the designated functions defined in the same module as the subject type. The designated functions have public visibility. The functions take a reference type as its subject type (its first argument) and returns a matching references type (mut if the subject was mut). Each type has only a single mutable and single immutable definition. Immutable and mutable versions have type agreement: The subject types match, differing only in mutability. The return types match the mutability of their subject types. Type parameters, if present, have identical constraints between both versions. All parameters beyond the subject type are identical. The following content and additional examples describe these rules in greater detail.","breadcrumbs":"Index Syntax Methods » Defining Index Syntax Functions","id":"209","title":"Defining Index Syntax Functions"},"21":{"body":"bool values are used in several of Move's control-flow constructs: if (bool) { ... } while (bool) { .. } assert!(bool, u64)","breadcrumbs":"Primitive Types » Bool » Control Flow","id":"21","title":"Control Flow"},"210":{"body":"To declare an index syntax method, add the #[syntax(index)] attribute above the relevant function definition in the same module as the subject type's definition. This signals to the compiler that the function is an index accessor for the specified type. Immutable Accessor The immutable index syntax method is defined for read-only access. It takes an immutable reference of the subject type and returns an immutable reference to the element type. The borrow function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow(v: &vector, i: u64): ∈ Mutable Accessor The mutable index syntax method is the dual of the immutable one, allowing for both read and write operations. It takes a mutable reference of the subject type and returns a mutable reference to the element type. The borrow_mut function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow_mut(v: &mut vector, i: u64): &mut Element; Visibility To ensure that indexing functions are available anywhere the type is used, all index syntax methods must have public visibility. This ensures ergonomic usage of indexing across modules and packages in Move. No Duplicates In addition to the above requirements, we restrict each subject base type to defining a single index syntax method for immutable references and a single index syntax method for mutable references. For example, you cannot define a specialized version for a polymorphic type: #[syntax(index)]\npublic fun borrow_matrix_u64(s: &Matrix, i: u64, j: u64): &u64 { ... } #[syntax(index)]\npublic fun borrow_matrix(s: &Matrix, i: u64, j: u64): &T { ... } // ERROR! Matrix already has a definition // for its immutable index syntax method This ensures that you can always tell which method is being invoked, without the need to inspect type instantiation.","breadcrumbs":"Index Syntax Methods » Declaration","id":"210","title":"Declaration"},"211":{"body":"By default, an index syntax method has the following type constraints: Its subject type (first argument) must be a reference to a single type defined in the same module as the marked function. This means that you cannot define index syntax methods for tuples, type parameters, or values: #[syntax(index)]\npublic fun borrow_fst(x: &(u64, u64), ...): &u64 { ... } // ERROR because the subject type is a tuple #[syntax(index)]\npublic fun borrow_tyarg(x: &T, ...): &T { ... } // ERROR because the subject type is a type parameter #[syntax(index)]\npublic fun borrow_value(x: Matrix, ...): &u64 { ... } // ERROR because x is not a reference The subject type must match mutability with the return type. This restriction allows you to clarify the expected behavior when borrowing an indexed expression as &vec[i] versus &mut vec[i]. The Move compiler uses the mutability marker to determine which borrow form to call to produce a reference of the appropriate mutability. As a result, we disallow index syntax methods whose subject and return mutability differ: #[syntax(index)]\npublic fun borrow_imm(x: &mut Matrix, ...): &u64 { ... } // ERROR! incompatible mutability // expected a mutable reference '&mut' return type","breadcrumbs":"Index Syntax Methods » Type Constraints","id":"211","title":"Type Constraints"},"212":{"body":"When defining an immutable and mutable index syntax method pair, they are subject to a number of compatibility constraints: They must take the same number of type parameters, those type parameters must have the same constraints. Type parameters must be used the same by position , not name. Their subject types must match exactly except for the mutability. Their return types must match exactly except for the mutability. All other parameter types must match exactly. These constraints are to ensure that index syntax behaves identically regardless of being in a mutable or immutable position. To illustrate some of these errors, recall the previous Matrix definition: #[syntax(index)]\npublic fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j)\n} All of the following are type-incompatible definitions of the mutable version: #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { ... } // ERROR! `T` has `drop` here, but no in the immutable version #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut u64 { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut U { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i_j: (u64, u64)): &mut U { ... } // ERROR! This takes a different number of arguments #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u32): &mut U { ... } // ERROR! `j` is a different type Again, the goal here is to make the usage across the immutable and mutable versions consistent. This allows index syntax methods to work without changing out the behavior or constraints based on mutable versus immutable usage, ultimately ensuring a consistent interface to program against.","breadcrumbs":"Index Syntax Methods » Type Compatibility","id":"212","title":"Type Compatibility"},"213":{"body":"Packages allow Move programmers to more easily re-use code and share it across projects. The Move package system allows programmers to easily: Define a package containing Move code; Parameterize a package by named addresses ; Import and use packages in other Move code and instantiate named addresses; Build packages and generate associated compilation artifacts from packages; and Work with a common interface around compiled Move artifacts.","breadcrumbs":"Packages » Packages","id":"213","title":"Packages"},"214":{"body":"A Move package source directory contains a Move.toml package manifest file, a generated Move.lock file, and a set of subdirectories: a_move_package\n├── Move.toml (required)\n├── Move.lock (generated)\n├── sources (required)\n├── doc_templates (optional)\n├── examples (optional, test & dev mode)\n└── tests (optional, test mode) The directories and files labeled \"required\" must be present for a directory to be considered a Move package and built. Optional directories may be present, and if so, they will be included in the compilation process depending on the mode used to build the package. For instance, when built in \"dev\" or \"test\" modes, the tests and examples directories will also be included. Going through each of these in turn: The Move.toml file is the package manifest and is required for a directory to be considered a Move package. This file contains metadata about the package, such as name, dependencies, and so on. The Move.lock file is generated by the Move CLI and contains the fixed build versions of the package and its dependencies. It is used to ensure consistent versions are used across different builds and that changes in dependencies are apparent as a change in this file. The sources directory is required and contains the Move modules that make up the package. Modules in this directory will always be included in the compilation process. The doc_templates directory can contain documentation templates that will be used when generating documentation for the package. The examples directory can hold additional code to be used only for development and/or tutorials, this will not be included when compiled outside of test or dev modes. The tests directory can contain Move modules that are only included when compiled in test mode or when Move unit tests are run.","breadcrumbs":"Packages » Package Layout and Manifest Syntax","id":"214","title":"Package Layout and Manifest Syntax"},"215":{"body":"The Move package manifest is defined within the Move.toml file and has the following syntax. Optional fields are marked with *, + denotes one or more elements: [package]\nname = \nedition* = # e.g., \"2024.alpha\" to use the Move 2024 edition, # currently in alpha. Will default to the latest stable edition if not specified.\nlicense* = # e.g., \"MIT\", \"GPL\", \"Apache 2.0\"\nauthors* = [,+] # e.g., [\"Joe Smith (joesmith@noemail.com)\", \"John Snow (johnsnow@noemail.com)\"] # Additional fields may be added to this section by external tools. E.g., on Sui the following sections are added:\npublished-at* = \"\" # The address that the package is published at. Should be set after the first publication. [dependencies] # (Optional section) Paths to dependencies\n# One or more lines declaring dependencies in the following format # ##### Local Dependencies #####\n# For local dependencies use `local = path`. Path is relative to the package root\n# Local = { local = \"../path/to\" }\n# To resolve a version conflict and force a specific version for dependency\n# override you can use `override = true`\n# Override = { local = \"../conflicting/version\", override = true }\n# To instantiate address values in a dependency, use `addr_subst`\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n} # ##### Git Dependencies #####\n# For remote import, use the `{ git = \"...\", subdir = \"...\", rev = \"...\" }`.\n# Revision must be supplied, it can be a branch, a tag, or a commit hash.\n# If no `subdir` is specified, the root of the repository is used.\n# MyRemotePackage = { git = \"https://some.remote/host.git\", subdir = \"remote/path\", rev = \"main\" }\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [addresses] # (Optional section) Declares named addresses in this package\n# One or more lines declaring named addresses in the following format\n# Addresses that match the name of the package must be set to `\"0x0\"` or they will be unable to be published.\n = \"_\" | \"\" # e.g., std = \"_\" or my_addr = \"0xC0FFEECAFE\" # Named addresses will be accessible in Move as `@name`. They're also exported:\n# for example, `std = \"0x1\"` is exported by the Standard Library.\n# alice = \"0xA11CE\" [dev-dependencies] # (Optional section) Same as [dependencies] section, but only included in \"dev\" and \"test\" modes\n# The dev-dependencies section allows overriding dependencies for `--test` and\n# `--dev` modes. You can e.g., introduce test-only dependencies here.\n# Local = { local = \"../path/to/dev-build\" }\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n}\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [dev-addresses] # (Optional section) Same as [addresses] section, but only included in \"dev\" and \"test\" modes\n# The dev-addresses section allows overwriting named addresses for the `--test`\n# and `--dev` modes.\n = \"\" # e.g., alice = \"0xB0B\" An example of a minimal package manifest: [package]\nname = \"AName\" An example of a more standard package manifest that also includes the Move standard library and instantiates the named address std from the LocalDep package with the address value 0x1: [package]\nname = \"AName\"\nlicense = \"Apache 2.0\" [addresses]\naddress_to_be_filled_in = \"_\"\nspecified_address = \"0xB0B\" [dependencies]\n# Local dependency\nLocalDep = { local = \"projects/move-awesomeness\", addr_subst = { \"std\" = \"0x1\" } }\n# Git dependency\nMoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" } [dev-addresses] # For use when developing this module\naddress_to_be_filled_in = \"0x101010101\" Most of the sections in the package manifest are self explanatory, but named addresses can be a bit difficult to understand so we examine them in more detail in Named Addresses During Compilation .","breadcrumbs":"Packages » Move.toml","id":"215","title":"Move.toml"},"216":{"body":"Recall that Move has named addresses and that named addresses cannot be declared in Move. Instead they are declared at the package level: in the manifest file (Move.toml) for a Move package you declare named addresses in the package, instantiate other named addresses, and rename named addresses from other packages within the Move package system. Let's go through each of these actions, and how they are performed in the package's manifest one-by-one:","breadcrumbs":"Packages » Named Addresses During Compilation","id":"216","title":"Named Addresses During Compilation"},"217":{"body":"Let's say we have a Move module in example_pkg/sources/A.move as follows: module named_addr::a { public fun x(): address { @named_addr }\n} We could in example_pkg/Move.toml declare the named address named_addr in two different ways. The first: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" Declares named_addr as a named address in the package example_pkg and that this address can be any valid address value . In particular, an importing package can pick the value of the named address named_addr to be any address it wishes. Intuitively you can think of this as parameterizing the package example_pkg by the named address named_addr, and the package can then be instantiated later on by an importing package. named_addr can also be declared as: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"0xCAFE\" which states that the named address named_addr is exactly 0xCAFE and cannot be changed. This is useful so other importing packages can use this named address without needing to worry about the exact value assigned to it. With these two different declaration methods, there are two ways that information about named addresses can flow in the package graph: The former (\"unassigned named addresses\") allows named address values to flow from the importation site to the declaration site. The latter (\"assigned named addresses\") allows named address values to flow from the declaration site upwards in the package graph to usage sites. With these two methods for flowing named address information throughout the package graph the rules around scoping and renaming become important to understand.","breadcrumbs":"Packages » Declaring Named Addresses","id":"217","title":"Declaring Named Addresses"},"218":{"body":"A named address N in a package P is in scope if: P declares a named address N; or A package in one of P's transitive dependencies declares the named address N and there is a dependency path in the package graph between between P and the declaring package of N with no renaming of N. Additionally, every named address in a package is exported. Because of this and the above scoping rules each package can be viewed as coming with a set of named addresses that will be brought into scope when the package is imported, e.g., if you import example_pkg, that import will also bring the named_addr named address into scope. Because of this, if P imports two packages P1 and P2 both of which declare a named address N an issue arises in P: which \"N\" is meant when N is referred to in P? The one from P1 or P2? To prevent this ambiguity around which package a named address is coming from, we enforce that the sets of scopes introduced by all dependencies in a package are disjoint, and provide a way to rename named addresses when the package that brings them into scope is imported. Renaming a named address when importing can be done as follows in our P, P1, and P2 example above: [package]\nname = \"P\"\n...\n[dependencies]\nP1 = { local = \"some_path_to_P1\", addr_subst = { \"P1N\" = \"N\" } }\nP2 = { local = \"some_path_to_P2\" } With this renaming N refers to the N from P2 and P1N will refer to N coming from P1: module N::A { public fun x(): address { @P1N }\n} It is important to note that renaming is not local : once a named address N has been renamed to N2 in a package P all packages that import P will not see N but only N2 unless N is reintroduced from outside of P. This is why rule (2) in the scoping rules at the start of this section specifies a \"dependency path in the package graph between between P and the declaring package of N with no renaming of N.\"","breadcrumbs":"Packages » Scope and Renaming of Named Addresses","id":"218","title":"Scope and Renaming of Named Addresses"},"219":{"body":"Named addresses can be instantiated multiple times across the package graph as long as it is always with the same value. It is an error if the same named address (regardless of renaming) is instantiated with differing values across the package graph. A Move package can only be compiled if all named addresses resolve to a value. This presents issues if the package wishes to expose an uninstantiated named address. This is what the [dev-addresses] section solves in part. This section can set values for named addresses, but cannot introduce any named addresses. Additionally, only the [dev-addresses] in the root package are included in dev mode. For example a root package with the following manifest would not compile outside of dev mode since named_addr would be uninstantiated: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" [dev-addresses]\nnamed_addr = \"0xC0FFEE\"","breadcrumbs":"Packages » Instantiating Named Addresses","id":"219","title":"Instantiating Named Addresses"},"22":{"body":"As with the other scalar values built-in to the language, boolean values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Bool » Ownership","id":"22","title":"Ownership"},"220":{"body":"The Move package system comes with a command line option as part of the CLI: sui move . Unless a particular path is provided, all package commands will run in the current enclosing Move package. The full list of commands and flags for the Move CLI can be found by running sui move --help.","breadcrumbs":"Packages » Usage and Artifacts","id":"220","title":"Usage and Artifacts"},"221":{"body":"A package can be compiled using CLI commands. This will create a build directory containing build-related artifacts (including bytecode binaries, source maps, and documentation). The general layout of the build directory is as follows: a_move_package\n├── BuildInfo.yaml\n├── bytecode_modules\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mv\n│ │ ...\n│ │ └── \n│ │ └── *.mv\n│ ...\n│ └── *.mv\n├── docs\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.md\n│ │ ...\n│ │ └── \n│ │ └── *.md\n│ ...\n│ └── *.md\n├── source_maps\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mvsm\n│ │ ...\n│ │ └── \n│ │ └── *.mvsm\n│ ...\n│ └── *.mvsm\n└── sources ... └── *.move ├── dependencies │ ├── │ │ └── *.move │ ... │ └── │ └── *.move ... └── *.move","breadcrumbs":"Packages » Artifacts","id":"221","title":"Artifacts"},"222":{"body":"The Move.lock file is generated at the root of the Move package when the package is built. The Move.lock file contains information about your package and its build configuration, and acts as a communication layer between the Move compiler and other tools, like chain-specific command line interfaces and third-party package managers. Like the Move.toml file, the Move.lock file is a text-based TOML file. Unlike the package manifest however, the Move.lock file is not intended for you to edit directly. Processes on the toolchain, like the Move compiler, access and edit the file to read and append relevant information to it. You also must not move the file from the root, as it needs to be at the same level as the Move.toml manifest in the package. If you are using source control for your package, it's recommended practice to check in the Move.lock file that corresponds with your desired built or published package. This ensures that every build of your package is an exact replica of the original, and that changes to the build will be apparent as changes to the Move.lock file. The Move.lock file is a TOML file that currently contains the following fields. Note : other fields may be added to the lock file either in the future, or by third-party package package managers as well.","breadcrumbs":"Packages » Move.lock","id":"222","title":"Move.lock"},"223":{"body":"This section contains the core information needed in the lockfile: The version of the lockfile (needed for backwards compatibility checking, and versioning lockfile changes in the future). The hash of the Move.toml file that was used to generate this lock file. The hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string. The list of dependencies. [move]\nversion = # Lock file version, used for backwards compatibility checking.\nmanifest_digest = # Sha3-256 hash of the Move.toml file that was used to generate this lock file.\ndeps_digest = # Sha3-256 hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string.\ndependencies = { (name = )* } # List of dependencies. Not present if there are no dependencies.","breadcrumbs":"Packages » The [move] Section","id":"223","title":"The [move] Section"},"224":{"body":"After the Move compiler resolves each of the dependencies for the package it writes the location of the dependency to the Move.lock file. If a dependency failed to resolve, the compiler will not write the Move.lock file and the build fails. If all dependencies resolve, the Move.lock file contains the locations (local and remote) of all of the package's transitive dependencies. These will be stored in the Move.lock file in the following format: # ... [[move.package]]\nname = \"A\"\nsource = { git = \"https://github.com/b/c.git\", subdir = \"e/f\", rev = \"a1b2c3\" } [[move.package]]\nname = \"B\"\nsource = { local = \"../local-dep\" }","breadcrumbs":"Packages » The [move.package] Sections","id":"224","title":"The [move.package] Sections"},"225":{"body":"As mentioned above, additional fields may be added to the lock file by external tools. For example, the Sui package manager adds toolchain version information to the lock file that can then be used for on-chain source verification: # ... [move.toolchain-version]\ncompiler-version = # The version of the Move compiler used to build the package, e.g. \"1.21.0\"\nedition = # The edition of the Move language used to build the package, e.g. \"2024.alpha\"\nflavor = # The flavor of the Move compiler used to build the package, e.g. \"sui\"","breadcrumbs":"Packages » The [move.toolchain-version] Section","id":"225","title":"The [move.toolchain-version] Section"},"226":{"body":"Unit testing for Move uses three annotations in the Move source language: #[test] marks a function as a test; #[expected_failure] marks that a test is expected to fail; #[test_only] marks a module or module member ( use , function , struct , or constant ) as code to be included for testing only. These annotations can be placed on any appropriate form with any visibility. Whenever a module or module member is annotated as #[test_only] or #[test], it will not be included in the compiled bytecode unless it is compiled for testing.","breadcrumbs":"Unit Tests » Unit Tests","id":"226","title":"Unit Tests"},"227":{"body":"The #[test] annotation can only be placed on a function with no parameters. This annotation marks the function as a test to be run by the unit testing harness. #[test] // OK\nfun this_is_a_test() { ... } #[test] // Will fail to compile since the test takes an argument\nfun this_is_not_correct(arg: u64) { ... } A test can also be annotated as an #[expected_failure]. This annotation marks that the test is expected to raise an error. There are a number of options that can be used with the #[expected_failure] annotation to ensure only a failure with the specified condition is marked as passing, these options are detailed in Expected Failures . Only functions that have the #[test] annotation can also be annotated as an #[expected_failure]. Some simple examples of using the #[expected_failure] annotation are shown below: #[test]\n#[expected_failure]\npublic fun this_test_will_abort_and_pass() { abort 1 } #[test]\n#[expected_failure]\npublic fun test_will_error_and_pass() { 1/0; } #[test] // Will pass since test fails with the expected abort code constant.\n#[expected_failure(abort_code = ENotFound)] // ENotFound is a constant defined in the module\npublic fun test_will_error_and_pass_abort_code() { abort ENotFound } #[test] // Will fail since test fails with a different error than expected.\n#[expected_failure(abort_code = my_module::ENotFound)]\npublic fun test_will_error_and_fail() { 1/0; } #[test, expected_failure] // Can have multiple in one attribute. This test will pass.\npublic fun this_other_test_will_abort_and_pass() { abort 1 } Note : #[test] and #[test_only] functions can also call entry functions, regardless of their visibility.","breadcrumbs":"Unit Tests » Test Annotations","id":"227","title":"Test Annotations"},"228":{"body":"There are a number of different ways that you can use the #[expected_failure] annotation to specify different types of error conditions. These are:","breadcrumbs":"Unit Tests » Expected Failures","id":"228","title":"Expected Failures"},"229":{"body":"This will pass if the test aborts with the specified constant value in the module that defines the constant and fail otherwise. This is the recommended way of testing for expected test failures. Note : You can reference constants outside of the current module or package in expected_failure annotations. module pkg_addr::other_module { const ENotFound: u64 = 1; public fun will_abort() { abort ENotFound }\n} module pkg_addr::my_module { use pkg_addr::other_module; const ENotFound: u64 = 1; #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { abort ENotFound } #[test] #[expected_failure(abort_code = other_module::ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() } // FAIL: Will not pass since we are expecting the constant from the wrong module. #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() }\n}","breadcrumbs":"Unit Tests » 1. #[expected_failure(abort_code = )]","id":"229","title":"1. #[expected_failure(abort_code = )]"},"23":{"body":"address is a built-in type in Move that is used to represent locations (sometimes called accounts) in storage. An address value is a 256-bit (32 byte) identifier. Move uses addresses to differentiate packages of modules , where each package has its own address and modules. Specific deployments of Move might also use the address value for storage operations. For Sui, address is used to represent \"accounts\", and also objects via strong type wrappers (with sui::object::UID and sui::object::ID). Although an address is a 256 bit integer under the hood, Move addresses are intentionally opaque---they cannot be created from integers, they do not support arithmetic operations, and they cannot be modified. Specific deployments of Move might have native functions to enable some of these operations (e.g., creating an address from bytes vector), but these are not part of the Move language itself. While there are runtime address values (values of type address), they cannot be used to access modules at runtime.","breadcrumbs":"Primitive Types » Address » Address","id":"23","title":"Address"},"230":{"body":"This specifies that the test is expected to fail with an arithmetic error (e.g., integer overflow, division by zero, etc) at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_arith_error() { 1/0; }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_pass1() { 1/0; } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_arith_error_and_pass2() { other_module::will_arith_error() } // FAIL: Will fail since the location we expect it the fail at is different from where the test actually failed. #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_fail() { other_module::will_arith_error() }\n}","breadcrumbs":"Unit Tests » 2. #[expected_failure(arithmetic_error, location = )]","id":"230","title":"2. #[expected_failure(arithmetic_error, location = )]"},"231":{"body":"This specifies that the test is expected to fail with an out of gas error at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_oog() { loop {} }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_pass1() { loop {} } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_oog_and_pass2() { other_module::will_oog() } // FAIL: Will fail since the location we expect it the fail at is different from where // the test actually failed. #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_fail() { other_module::will_oog() }\n}","breadcrumbs":"Unit Tests » 3. #[expected_failure(out_of_gas, location = )]","id":"231","title":"3. #[expected_failure(out_of_gas, location = )]"},"232":{"body":"This specifies that the test is expected to fail with a vector error at the specified location with the given minor_status (if provided). The must be a valid path to a module module location, e.g., Self, or my_package::my_module. The is an optional parameter that specifies the minor status of the vector error. If it is not specified, the test will pass if the test fails with any minor status. If it is specified, the test will only pass if the test fails with a vector error with the specified minor status. module pkg_addr::other_module { public fun vector_borrow_empty() { &vector[][1]; }\n} module pkg_addr::my_module { #[test] #[expected_failure(vector_error, location = Self)] fun vector_abort_same_module() { vector::borrow(&vector[], 1); } #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // Can specify minor statues (i.e., vector-specific error codes) to expect. #[test] #[expected_failure(vector_error, minor_status = 1, location = Self)] fun native_abort_good_right_code() { vector::borrow(&vector[], 1); } // FAIL: correct error, but wrong location. #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // FAIL: correct error and location but the minor status differs so this test will fail. #[test] #[expected_failure(vector_error, minor_status = 0, location = Self)] fun vector_abort_wrong_minor_code() { vector::borrow(&vector[], 1); }\n}","breadcrumbs":"Unit Tests » 4. #[expected_failure(vector_error, minor_status = , location = )]","id":"232","title":"4. #[expected_failure(vector_error, minor_status = , location = )]"},"233":{"body":"This will pass if the test aborts with any error code. You should be incredibly careful using this to annotate expected tests failures, and always prefer one of the ways described above instead. Examples of these types of annotations are: #[test]\n#[expected_failure]\nfun test_will_abort_and_pass1() { abort 1 } #[test]\n#[expected_failure]\nfun test_will_arith_error_and_pass2() { 1/0; }","breadcrumbs":"Unit Tests » 5. #[expected_failure]","id":"233","title":"5. #[expected_failure]"},"234":{"body":"A module and any of its members can be declared as test only. If an item is annotated as #[test_only] the item will only be included in the compiled Move bytecode when compiled in test mode. Additionally, when compiled outside of test mode, any non-test uses of a #[test_only] module will raise an error during compilation. Note : functions that are annotated with #[test_only] will only be available to be called from test code, but they themselves are not tests and will not be run as tests by the unit testing framework. #[test_only] // test only attributes can be attached to modules\nmodule abc { ... } #[test_only] // test only attributes can be attached to constants\nconst MY_ADDR: address = @0x1; #[test_only] // .. to uses\nuse pkg_addr::some_other_module; #[test_only] // .. to structs\npublic struct SomeStruct { ... } #[test_only] // .. and functions. Can only be called from test code, but this is _not_ a test!\nfun test_only_function(...) { ... }","breadcrumbs":"Unit Tests » Test Only Annotations","id":"234","title":"Test Only Annotations"},"235":{"body":"Unit tests for a Move package can be run with the sui move test command . When running tests, every test will either PASS, FAIL, or TIMEOUT. If a test case fails, the location of the failure along with the function name that caused the failure will be reported if possible. You can see an example of this below. A test will be marked as timing out if it exceeds the maximum number of instructions that can be executed for any single test. This bound can be changed using the options below. Additionally, while the result of a test is always deterministic, tests are run in parallel by default, so the ordering of test results in a test run is non-deterministic unless running with only one thread, which can be configured via an option. These aforementioned options are two among many that can fine-tune testing and help debug failing tests. To see all available options, and a description of what each one does, pass the --help flag to the sui move test command: $ sui move test --help","breadcrumbs":"Unit Tests » Running Unit Tests","id":"235","title":"Running Unit Tests"},"236":{"body":"A simple module using some of the unit testing features is shown in the following example: First create an empty package and change directory into it: $ sui move new test_example; cd test_example Next add the following module under the sources directory: // filename: sources/my_module.move\nmodule test_example::my_module { public struct Wrapper(u64) const ECoinIsZero: u64 = 0; public fun make_sure_non_zero_coin(coin: Wrapper): Wrapper { assert!(coin.0 > 0, ECoinIsZero); coin } #[test] fun make_sure_non_zero_coin_passes() { let coin = Wrapper(1); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test] // Or #[expected_failure] if we don't care about the abort code #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails() { let coin = Wrapper(0); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test_only] // test only helper function fun make_coin_zero(coin: &mut Wrapper) { coin.0 = 0; } #[test] #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails2() { let mut coin = Wrapper(10); coin.make_coin_zero(); let Wrapper(_) = make_sure_non_zero_coin(coin); }\n}","breadcrumbs":"Unit Tests » Example","id":"236","title":"Example"},"237":{"body":"You can then run these tests with the move test command: $ sui move test\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2\nTest result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Running Tests","id":"237","title":"Running Tests"},"238":{"body":"Passing specific tests to run You can run a specific test, or a set of tests with sui move test . This will only run tests whose fully qualified name contains . For example if we wanted to only run tests with \"non_zero\" in their name: $ sui move test non_zero\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\nTest result: OK. Total tests: 1; passed: 1; failed: 0 -i or --gas_used This bounds the amount of gas that can be consumed for any one test to : $ sui move test -i 0\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ TIMEOUT ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails2 Test failures: Failures in 0x0::my_module: ┌── make_sure_non_zero_coin_passes ──────\n│ Test timed out\n└────────────────── ┌── make_sure_zero_coin_fails ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:22:27\n│ │\n│ 21 │ fun make_sure_zero_coin_fails() {\n│ │ ------------------------- In this function in 0x0::my_module\n│ 22 │ let coin = MyCoin(0);\n│ │ ^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── ┌── make_sure_zero_coin_fails2 ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:34:31\n│ │\n│ 33 │ fun make_sure_zero_coin_fails2() {\n│ │ -------------------------- In this function in 0x0::my_module\n│ 34 │ let mut coin = MyCoin(10);\n│ │ ^^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── Test result: FAILED. Total tests: 3; passed: 0; failed: 3 -s or --statistics With these flags you can gather statistics about the tests run and report the runtime and gas used for each test. You can additionally add csv (sui move test -s csv) to get the gas usage in a csv output format. For example, if we wanted to see the statistics for the tests in the example above: $ sui move test -s\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2 Test Statistics: ┌────────────────────────────────────────────────┬────────────┬───────────────────────────┐\n│ Test Name │ Time │ Gas Used │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_non_zero_coin_passes │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails2 │ 0.001 │ 1 │\n└────────────────────────────────────────────────┴────────────┴───────────────────────────┘ Test result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Using Test Flags","id":"238","title":"Using Test Flags"},"239":{"body":"See Sui's Coding Conventions for Move","breadcrumbs":"Coding Conventions","id":"239","title":"Coding Conventions"},"24":{"body":"Addresses come in two flavors, named or numerical. The syntax for a named address follows the same rules for any named identifier in Move. The syntax of a numerical address is not restricted to hex-encoded values, and any valid u256 numerical value can be used as an address value, e.g., 42, 0xCAFE, and 10_000 are all valid numerical address literals. To distinguish when an address is being used in an expression context or not, the syntax when using an address differs depending on the context where it's used: When an address is used as an expression, the address must be prefixed by the @ character, i.e., @ or @. Outside of expression contexts, the address may be written without the leading @ character, i.e., or . In general, you can think of @ as an operator that takes an address from being a namespace item to being an expression item.","breadcrumbs":"Primitive Types » Address » Addresses and Their Syntax","id":"24","title":"Addresses and Their Syntax"},"240":{"body":"NOTE: this feature has been superseded by public(package) . The friend syntax was used to declare modules that are trusted by the current module. A trusted module is allowed to call any function defined in the current module that have the public(friend) visibility. For details on function visibilities, refer to the Visibility section in Functions .","breadcrumbs":"Friends » DEPRECATED: Friends","id":"240","title":"DEPRECATED: Friends"},"241":{"body":"A module can declare other modules as friends via friend declaration statements, in the format of friend — friend declaration using fully qualified module name like the example below, or module 0x42::a { friend 0x42::b;\n} friend — friend declaration using a module name alias, where the module alias is introduced via the use statement. module 0x42::a { use 0x42::b; friend b;\n} A module may have multiple friend declarations, and the union of all the friend modules forms the friend list. In the example below, both 0x42::B and 0x42::C are considered as friends of 0x42::A. module 0x42::a { friend 0x42::b; friend 0x42::c;\n} Unlike use statements, friend can only be declared in the module scope and not in the expression block scope. friend declarations may be located anywhere a top-level construct (e.g., use, function, struct, etc.) is allowed. However, for readability, it is advised to place friend declarations near the beginning of the module definition.","breadcrumbs":"Friends » Friend declaration","id":"241","title":"Friend declaration"},"242":{"body":"Friend declarations are subject to the following rules: A module cannot declare itself as a friend. module 0x42::m { friend Self; // ERROR! }\n// ^^^^ Cannot declare the module itself as a friend module 0x43::m { friend 0x43::M; // ERROR! }\n// ^^^^^^^ Cannot declare the module itself as a friend Friend modules must be known by the compiler module 0x42::m { friend 0x42::nonexistent; // ERROR! }\n// ^^^^^^^^^^^^^^^^^ Unbound module '0x42::nonexistent' Friend modules must be within the same account address. module 0x42::m {} module 0x42::n { friend 0x42::m; // ERROR! }\n// ^^^^^^^ Cannot declare modules out of the current address as a friend Friends relationships cannot create cyclic module dependencies. Cycles are not allowed in the friend relationships, e.g., the relation 0x2::a friends 0x2::b friends 0x2::c friends 0x2::a is not allowed. More generally, declaring a friend module adds a dependency upon the current module to the friend module (because the purpose is for the friend to call functions in the current module). If that friend module is already used, either directly or transitively, a cycle of dependencies would be created. module 0x2::a { use 0x2::c; friend 0x2::b; public fun a() { c::c() }\n} module 0x2::b { friend 0x2::c; // ERROR!\n// ^^^^^^ This friend relationship creates a dependency cycle: '0x2::b' is a friend of '0x2::a' uses '0x2::c' is a friend of '0x2::b'\n} module 0x2::c { public fun c() {}\n} The friend list for a module cannot contain duplicates. module 0x42::a {} module 0x42::m { use 0x42::a as aliased_a; friend 0x42::A; friend aliased_a; // ERROR!\n// ^^^^^^^^^ Duplicate friend declaration '0x42::a'. Friend declarations in a module must be unique\n}","breadcrumbs":"Friends » Friend declaration rules","id":"242","title":"Friend declaration rules"},"25":{"body":"Named addresses are a feature that allow identifiers to be used in place of numerical values in any spot where addresses are used, and not just at the value level. Named addresses are declared and bound as top level elements (outside of modules and scripts) in Move packages, or passed as arguments to the Move compiler. Named addresses only exist at the source language level and will be fully substituted for their value at the bytecode level. Because of this, modules and module members should be accessed through the module's named address and not through the numerical value assigned to the named address during compilation. So while use my_addr::foo is equivalent to use 0x2::foo (if my_addr is assigned 0x2), it is a best practice to always use the my_addr name.","breadcrumbs":"Primitive Types » Address » Named Addresses","id":"25","title":"Named Addresses"},"26":{"body":"// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000001\nlet a1: address = @0x1;\n// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000042\nlet a2: address = @0x42;\n// shorthand for\n// 0x00000000000000000000000000000000000000000000000000000000DEADBEEF\nlet a3: address = @0xDEADBEEF;\n// shorthand for\n// 0x000000000000000000000000000000000000000000000000000000000000000A\nlet a4: address = @0x0000000000000000000000000000000A;\n// Assigns `a5` the value of the named address `std`\nlet a5: address = @std;\n// Any valid numerical value can be used as an address\nlet a6: address = @66;\nlet a7: address = @42_000; module 66::some_module { // Not in expression context, so no @ needed use 0x1::other_module; // Not in expression context so no @ needed use std::vector; // Can use a named address as a namespace item ...\n} module std::other_module { // Can use a named address when declaring a module ...\n}","breadcrumbs":"Primitive Types » Address » Examples","id":"26","title":"Examples"},"27":{"body":"vector is the only primitive collection type provided by Move. A vector is a homogeneous collection of T's that can grow or shrink by pushing/popping values off the \"end\". A vector can be instantiated with any type T. For example, vector, vector
, vector<0x42::my_module::MyData>, and vector> are all valid vector types.","breadcrumbs":"Primitive Types » Vector » Vector","id":"27","title":"Vector"},"28":{"body":"","breadcrumbs":"Primitive Types » Vector » Literals","id":"28","title":"Literals"},"29":{"body":"Vectors of any type can be created with vector literals. Syntax Type Description vector[] vector[]: vector where T is any single, non-reference type An empty vector vector[e1, ..., en] vector[e1, ..., en]: vector where e_i: T s.t. 0 < i <= n and n > 0 A vector with n elements (of length n) In these cases, the type of the vector is inferred, either from the element type or from the vector's usage. If the type cannot be inferred, or simply for added clarity, the type can be specified explicitly: vector[]: vector\nvector[e1, ..., en]: vector Example Vector Literals (vector[]: vector);\n(vector[0u8, 1u8, 2u8]: vector);\n(vector[]: vector);\n(vector
[@0x42, @0x100]: vector
);","breadcrumbs":"Primitive Types » Vector » General vector Literals","id":"29","title":"General vector Literals"},"3":{"body":"The module test_addr::test part specifies that the module test will be published under the numerical address value assigned for the name test_addr in the package settings . Modules should normally be declared using named addresses (as opposed to using the numerical value directly). For example: module test_addr::test { public struct Example has copy, drop { a: address } friend test_addr::another_test; public fun print() { let example = Example { a: @test_addr }; debug::print(&example) }\n} These named addresses commonly match the name of the package . Because named addresses only exist at the source language level and during compilation, named addresses will be fully substituted for their value at the bytecode level. For example if we had the following code: fun example() { my_addr::m::foo(@my_addr);\n} and we compiled it with my_addr set to 0xC0FFEE, then it would be operationally equivalent to the following: fun example() { 0xC0FFEE::m::foo(@0xC0FFEE);\n} While at the source level these two different accesses are equivalent, it is a best practice to always use the named address and not the numerical value assigned to that address. Module names can start with a lowercase letter from a to z or an uppercase letter from A to Z. After the first character, module names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. module a::my_module {}\nmodule a::foo_bar_42 {} Typically, module names start with a lowercase letter. A module named my_module should be stored in a source file named my_module.move.","breadcrumbs":"Modules » Names","id":"3","title":"Names"},"30":{"body":"A common use-case for vectors in Move is to represent \"byte arrays\", which are represented with vector. These values are often used for cryptographic purposes, such as a public key or a hash result. These values are so common that specific syntax is provided to make the values more readable, as opposed to having to use vector[] where each individual u8 value is specified in numeric form. There are currently two supported types of vector literals, byte strings and hex strings . Byte Strings Byte strings are quoted string literals prefixed by a b, e.g. b\"Hello!\\n\". These are ASCII encoded strings that allow for escape sequences. Currently, the supported escape sequences are: Escape Sequence Description \\n New line (or Line feed) \\r Carriage return \\t Tab \\\\ Backslash \\0 Null \\\" Quote \\xHH Hex escape, inserts the hex byte sequence HH Hex Strings Hex strings are quoted string literals prefixed by a x, e.g. x\"48656C6C6F210A\". Each byte pair, ranging from 00 to FF, is interpreted as hex encoded u8 value. So each byte pair corresponds to a single entry in the resulting vector. Example String Literals fun byte_and_hex_strings() { assert!(b\"\" == x\"\", 0); assert!(b\"Hello!\\n\" == x\"48656C6C6F210A\", 1); assert!(b\"\\x48\\x65\\x6C\\x6C\\x6F\\x21\\x0A\" == x\"48656C6C6F210A\", 2); assert!( b\"\\\"Hello\\tworld!\\\"\\n \\r \\\\Null=\\0\" == x\"2248656C6C6F09776F726C6421220A200D205C4E756C6C3D00\", 3 );\n}","breadcrumbs":"Primitive Types » Vector » vector literals","id":"30","title":"vector literals"},"31":{"body":"vector supports the following operations via the std::vector module in the Move standard library: Function Description Aborts? vector::empty(): vector Create an empty vector that can store values of type T Never vector::singleton(t: T): vector Create a vector of size 1 containing t Never vector::push_back(v: &mut vector, t: T) Add t to the end of v Never vector::pop_back(v: &mut vector): T Remove and return the last element in v If v is empty vector::borrow(v: &vector, i: u64): &T Return an immutable reference to the T at index i If i is not in bounds vector::borrow_mut(v: &mut vector, i: u64): &mut T Return a mutable reference to the T at index i If i is not in bounds vector::destroy_empty(v: vector) Delete v If v is not empty vector::append(v1: &mut vector, v2: vector) Add the elements in v2 to the end of v1 Never vector::contains(v: &vector, e: &T): bool Return true if e is in the vector v. Otherwise, returns false Never vector::swap(v: &mut vector, i: u64, j: u64) Swaps the elements at the ith and jth indices in the vector v If i or j is out of bounds vector::reverse(v: &mut vector) Reverses the order of the elements in the vector v in place Never vector::index_of(v: &vector, e: &T): (bool, u64) Return (true, i) if e is in the vector v at index i. Otherwise, returns (false, 0) Never vector::remove(v: &mut vector, i: u64): T Remove the ith element of the vector v, shifting all subsequent elements. This is O(n) and preserves ordering of elements in the vector If i is out of bounds vector::swap_remove(v: &mut vector, i: u64): T Swap the ith element of the vector v with the last element and then pop the element, This is O(1), but does not preserve ordering of elements in the vector If i is out of bounds More operations may be added over time.","breadcrumbs":"Primitive Types » Vector » Operations","id":"31","title":"Operations"},"32":{"body":"use std::vector; let mut v = vector::empty();\nvector::push_back(&mut v, 5);\nvector::push_back(&mut v, 6); assert!(*vector::borrow(&v, 0) == 5, 42);\nassert!(*vector::borrow(&v, 1) == 6, 42);\nassert!(vector::pop_back(&mut v) == 6, 42);\nassert!(vector::pop_back(&mut v) == 5, 42);","breadcrumbs":"Primitive Types » Vector » Example","id":"32","title":"Example"},"33":{"body":"Some behaviors of vector depend on the abilities of the element type, T. For example, vectors containing elements that do not have drop cannot be implicitly discarded like v in the example above--they must be explicitly destroyed with vector::destroy_empty. Note that vector::destroy_empty will abort at runtime unless vec contains zero elements: fun destroy_any_vector(vec: vector) { vector::destroy_empty(vec) // deleting this line will cause a compiler error\n} But no error would occur for dropping a vector that contains elements with drop: fun destroy_droppable_vector(vec: vector) { // valid! // nothing needs to be done explicitly to destroy the vector\n} Similarly, vectors cannot be copied unless the element type has copy. In other words, a vector has copy if and only if T has copy. Note that it will be implicitly copied if needed: let x = vector[10];\nlet y = x; // implicit copy\nlet z = x;\n(y, z) Keep in mind, copies of large vectors can be expensive. If this is a concern, annotating the intended usage can prevent accidental copies. For example, let x = vector[10];\nlet y = move x;\nlet z = x; // ERROR! x has been moved\n(y, z) For more details see the sections on type abilities and generics .","breadcrumbs":"Primitive Types » Vector » Destroying and copying vectors","id":"33","title":"Destroying and copying vectors"},"34":{"body":"As mentioned above , vector values can be copied only if the elements can be copied. In that case, the copy can be done via a copy or a dereference * .","breadcrumbs":"Primitive Types » Vector » Ownership","id":"34","title":"Ownership"},"35":{"body":"Move has two types of references: immutable & and mutable &mut. Immutable references are read only, and cannot modify the underlying value (or any of its fields). Mutable references allow for modifications via a write through that reference. Move's type system enforces an ownership discipline that prevents reference errors.","breadcrumbs":"Primitive Types » References » References","id":"35","title":"References"},"36":{"body":"Move provides operators for creating and extending references as well as converting a mutable reference to an immutable one. Here and elsewhere, we use the notation e: T for \"expression e has type T\". Syntax Type Description &e &T where e: T and T is a non-reference type Create an immutable reference to e &mut e &mut T where e: T and T is a non-reference type Create a mutable reference to e. &e.f &T where e.f: T Create an immutable reference to field f of struct e. &mut e.f &mut T where e.f: T Create a mutable reference to field f of structe. freeze(e) &T where e: &mut T Convert the mutable reference e into an immutable reference. The &e.f and &mut e.f operators can be used both to create a new reference into a struct or to extend an existing reference: let s = S { f: 10 };\nlet f_ref1: &u64 = &s.f; // works\nlet s_ref: &S = &s;\nlet f_ref2: &u64 = &s_ref.f // also works A reference expression with multiple fields works as long as both structs are in the same module: public struct A { b: B }\npublic struct B { c : u64 }\nfun f(a: &A): &u64 { &a.b.c\n} Finally, note that references to references are not allowed: let x = 7;\nlet y: &u64 = &x;\nlet z: &&u64 = &y; // ERROR! will not compile","breadcrumbs":"Primitive Types » References » Reference Operators","id":"36","title":"Reference Operators"},"37":{"body":"Both mutable and immutable references can be read to produce a copy of the referenced value. Only mutable references can be written. A write *x = v discards the value previously stored in x and updates it with v. Both operations use the C-like * syntax. However, note that a read is an expression, whereas a write is a mutation that must occur on the left hand side of an equals. Syntax Type Description *e T where e is &T or &mut T Read the value pointed to by e *e1 = e2 () where e1: &mut T and e2: T Update the value in e1 with e2. In order for a reference to be read, the underlying type must have the copy ability as reading the reference creates a new copy of the value. This rule prevents the copying of assets: fun copy_coin_via_ref_bad(c: Coin) { let c_ref = &c; let counterfeit: Coin = *c_ref; // not allowed! pay(c); pay(counterfeit);\n} Dually: in order for a reference to be written to, the underlying type must have the drop ability as writing to the reference will discard (or \"drop\") the old value. This rule prevents the destruction of resource values: fun destroy_coin_via_ref_bad(mut ten_coins: Coin, c: Coin) { let ref = &mut ten_coins; *ref = c; // ERROR! not allowed--would destroy 10 coins!\n}","breadcrumbs":"Primitive Types » References » Reading and Writing Through References","id":"37","title":"Reading and Writing Through References"},"38":{"body":"A mutable reference can be used in a context where an immutable reference is expected: let mut x = 7;\nlet y: &u64 = &mut x; This works because the under the hood, the compiler inserts freeze instructions where they are needed. Here are a few more examples of freeze inference in action: fun takes_immut_returns_immut(x: &u64): &u64 { x } // freeze inference on return value\nfun takes_mut_returns_immut(x: &mut u64): &u64 { x } fun expression_examples() { let mut x = 0; let mut y = 0; takes_immut_returns_immut(&x); // no inference takes_immut_returns_immut(&mut x); // inferred freeze(&mut x) takes_mut_returns_immut(&mut x); // no inference assert!(&x == &mut y, 42); // inferred freeze(&mut y)\n} fun assignment_examples() { let x = 0; let y = 0; let imm_ref: &u64 = &x; imm_ref = &x; // no inference imm_ref = &mut y; // inferred freeze(&mut y)\n}","breadcrumbs":"Primitive Types » References » freeze inference","id":"38","title":"freeze inference"},"39":{"body":"With this freeze inference, the Move type checker can view &mut T as a subtype of &T. As shown above, this means that anywhere for any expression where a &T value is used, a &mut T value can also be used. This terminology is used in error messages to concisely indicate that a &mut T was needed where a &T was supplied. For example module a::example { fun read_and_assign(store: &mut u64, new_value: &u64) { *store = *new_value } fun subtype_examples() { let mut x: &u64 = &0; let mut y: &mut u64 = &mut 1; x = &mut 1; // valid y = &2; // ERROR! invalid! read_and_assign(y, x); // valid read_and_assign(x, y); // ERROR! invalid! }\n} will yield the following error messages error: ┌── example.move:11:9 ─── │ 12 │ y = &2; // invalid! │ ^ Invalid assignment to local 'y' · 12 │ y = &2; // invalid! │ -- The type: '&{integer}' · 9 │ let mut y: &mut u64 = &mut 1; │ -------- Is not a subtype of: '&mut u64' │ error: ┌── example.move:14:9 ─── │ 15 │ read_and_assign(x, y); // invalid! │ ^^^^^^^^^^^^^^^^^^^^^ Invalid call of 'a::example::read_and_assign'. Invalid argument for parameter 'store' · 8 │ let mut x: &u64 = &0; │ ---- The type: '&u64' · 3 │ fun read_and_assign(store: &mut u64, new_value: &u64) { │ -------- Is not a subtype of: '&mut u64' │ The only other types that currently have subtyping are tuples","breadcrumbs":"Primitive Types » References » Subtyping","id":"39","title":"Subtyping"},"4":{"body":"All members inside a module block can appear in any order. Fundamentally, a module is a collection of types and functions . The use keyword refers to members from other modules. The const keyword defines constants that can be used in the functions of a module. The friend syntax is a deprecated concept for specifying a list of trusted modules. The concept has been superseded by public(package)","breadcrumbs":"Modules » Members","id":"4","title":"Members"},"40":{"body":"Both mutable and immutable references can always be copied and extended even if there are existing copies or extensions of the same reference : fun reference_copies(s: &mut S) { let s_copy1 = s; // ok let s_extension = &mut s.f; // also ok let s_copy2 = s; // still ok ...\n} This might be surprising for programmers familiar with Rust's ownership system, which would reject the code above. Move's type system is more permissive in its treatment of copies , but equally strict in ensuring unique ownership of mutable references before writes.","breadcrumbs":"Primitive Types » References » Ownership","id":"40","title":"Ownership"},"41":{"body":"References and tuples are the only types that cannot be stored as a field value of structs, which also means that they cannot exist in storage or objects . All references created during program execution will be destroyed when a Move program terminates; they are entirely ephemeral. This also applies to all types without the store ability: any value of a non-store type must be destroyed before the program terminates. ability , but note that references and tuples go a step further by never being allowed in structs in the first place. This is another difference between Move and Rust, which allows references to be stored inside of structs. One could imagine a fancier, more expressive, type system that would allow references to be stored in structs. We could allow references inside of structs that do not have the store ability , but the core difficulty is that Move has a fairly complex system for tracking static reference safety. This aspect of the type system would also have to be extended to support storing references inside of structs. In short, Move's reference safety system would have to expand to support stored references, and it is something we are keeping an eye on as the language evolves.","breadcrumbs":"Primitive Types » References » References Cannot Be Stored","id":"41","title":"References Cannot Be Stored"},"42":{"body":"Move does not fully support tuples as one might expect coming from another language with them as a first-class value . However, in order to support multiple return values, Move has tuple-like expressions. These expressions do not result in a concrete value at runtime (there are no tuples in the bytecode), and as a result they are very limited: They can only appear in expressions (usually in the return position for a function). They cannot be bound to local variables. They cannot be bound to local variables. They cannot be stored in structs. Tuple types cannot be used to instantiate generics. Similarly, unit () is a type created by the Move source language in order to be expression based. The unit value () does not result in any runtime value. We can consider unit() to be an empty tuple, and any restrictions that apply to tuples also apply to unit. It might feel weird to have tuples in the language at all given these restrictions. But one of the most common use cases for tuples in other languages is for functions to allow functions to return multiple values. Some languages work around this by forcing the users to write structs that contain the multiple return values. However in Move, you cannot put references inside of structs . This required Move to support multiple return values. These multiple return values are all pushed on the stack at the bytecode level. At the source level, these multiple return values are represented using tuples.","breadcrumbs":"Primitive Types » Tuples and Unit » Tuples and Unit","id":"42","title":"Tuples and Unit"},"43":{"body":"Tuples are created by a comma separated list of expressions inside of parentheses. Syntax Type Description () (): () Unit, the empty tuple, or the tuple of arity 0 (e1, ..., en) (e1, ..., en): (T1, ..., Tn) where e_i: Ti s.t. 0 < i <= n and n > 0 A n-tuple, a tuple of arity n, a tuple with n elements Note that (e) does not have type (e): (t), in other words there is no tuple with one element. If there is only a single element inside of the parentheses, the parentheses are only used for disambiguation and do not carry any other special meaning. Sometimes, tuples with two elements are called \"pairs\" and tuples with three elements are called \"triples.\"","breadcrumbs":"Primitive Types » Tuples and Unit » Literals","id":"43","title":"Literals"},"44":{"body":"module 0x42::example { // all 3 of these functions are equivalent // when no return type is provided, it is assumed to be `()` fun returns_unit_1() { } // there is an implicit () value in empty expression blocks fun returns_unit_2(): () { } // explicit version of `returns_unit_1` and `returns_unit_2` fun returns_unit_3(): () { () } fun returns_3_values(): (u64, bool, address) { (0, false, @0x42) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") }\n}","breadcrumbs":"Primitive Types » Tuples and Unit » Examples","id":"44","title":"Examples"},"45":{"body":"The only operation that can be done on tuples currently is destructuring.","breadcrumbs":"Primitive Types » Tuples and Unit » Operations","id":"45","title":"Operations"},"46":{"body":"For tuples of any size, they can be destructured in either a let binding or in an assignment. For example: module 0x42::example { // all 3 of these functions are equivalent fun returns_unit() {} fun returns_2_values(): (bool, bool) { (true, false) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") } fun examples(cond: bool) { let () = (); let (mut x, mut y): (u8, u64) = (0, 1); let (mut a, mut b, mut c, mut d) = (@0x0, 0, false, b\"\"); () = (); (x, y) = if (cond) (1, 2) else (3, 4); (a, b, c, d) = (@0x1, 1, true, b\"1\"); } fun examples_with_function_calls() { let () = returns_unit(); let (mut x, mut y): (bool, bool) = returns_2_values(); let (mut a, mut b, mut c, mut d) = returns_4_values(&0); () = returns_unit(); (x, y) = returns_2_values(); (a, b, c, d) = returns_4_values(&1); }\n} For more details, see Move Variables .","breadcrumbs":"Primitive Types » Tuples and Unit » Destructuring","id":"46","title":"Destructuring"},"47":{"body":"Along with references, tuples are the only types that have subtyping in Move. Tuples have subtyping only in the sense that subtype with references (in a covariant way). For example: let x: &u64 = &0;\nlet y: &mut u64 = &mut 1; // (&u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (a, b): (&u64, &u64) = (x, y); // (&mut u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (c, d): (&u64, &u64) = (y, y); // ERROR! (&u64, &mut u64) is NOT a subtype of (&mut u64, &mut u64)\n// since &u64 is NOT a subtype of &mut u64\nlet (e, f): (&mut u64, &mut u64) = (x, y);","breadcrumbs":"Primitive Types » Tuples and Unit » Subtyping","id":"47","title":"Subtyping"},"48":{"body":"As mentioned above, tuple values don't really exist at runtime. And currently they cannot be stored into local variables because of this (but it is likely that this feature will come at some point in the future). As such, tuples can only be moved currently, as copying them would require putting them into a local variable first.","breadcrumbs":"Primitive Types » Tuples and Unit » Ownership","id":"48","title":"Ownership"},"49":{"body":"Local variables in Move are lexically (statically) scoped. New variables are introduced with the keyword let, which will shadow any previous local with the same name. Locals marked as mut are mutable and can be updated both directly and via a mutable reference.","breadcrumbs":"Local Variables and Scopes » Local Variables and Scope","id":"49","title":"Local Variables and Scope"},"5":{"body":"The primitive types are the basic building blocks of the language. These primitive types can be used on their own or can be used be used to build more complex, user-defined types, e.g. in a struct . Integers Bool Address Vector These primitive types are used in conjunction with other types References Tuples and Unit","breadcrumbs":"Primitive Types » Primitive Types","id":"5","title":"Primitive Types"},"50":{"body":"","breadcrumbs":"Local Variables and Scopes » Declaring Local Variables","id":"50","title":"Declaring Local Variables"},"51":{"body":"Move programs use let to bind variable names to values: let x = 1;\nlet y = x + x: let can also be used without binding a value to the local. let x; The local can then be assigned a value later. let x;\nif (cond) { x = 1\n} else { x = 0\n} This can be very helpful when trying to extract a value from a loop when a default value cannot be provided. let x;\nlet cond = true;\nlet i = 0;\nloop { let (res, cond) = foo(i); if (!cond) { x = res; break; }; i = i + 1;\n} To modify a local variable after it is assigned, or to borrow it mutably &mut, it must be declared as mut. let mut x = 0;\nif (cond) x = x + 1;\nfoo(&mut x); For more details see the section on assignments below.","breadcrumbs":"Local Variables and Scopes » let bindings","id":"51","title":"let bindings"},"52":{"body":"Move's type system prevents a local variable from being used before it has been assigned. let x;\nx + x // ERROR! x is used before being assigned let x;\nif (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases let x;\nwhile (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases","breadcrumbs":"Local Variables and Scopes » Variables must be assigned before use","id":"52","title":"Variables must be assigned before use"},"53":{"body":"Variable names can contain underscores _, letters a to z, letters A to Z, and digits 0 to 9. Variable names must start with either an underscore _ or a letter a through z. They cannot start with uppercase letters. // all valid\nlet x = e;\nlet _x = e;\nlet _A = e;\nlet x0 = e;\nlet xA = e;\nlet foobar_123 = e; // all invalid\nlet X = e; // ERROR!\nlet Foo = e; // ERROR!","breadcrumbs":"Local Variables and Scopes » Valid variable names","id":"53","title":"Valid variable names"},"54":{"body":"The type of a local variable can almost always be inferred by Move's type system. However, Move allows explicit type annotations that can be useful for readability, clarity, or debuggability. The syntax for adding a type annotation is: let x: T = e; // \"Variable x of type T is initialized to expression e\" Some examples of explicit type annotations: module 0x42::example { public struct S { f: u64, g: u64 } fun annotated() { let u: u8 = 0; let b: vector = b\"hello\"; let a: address = @0x0; let (x, y): (&u64, &mut u64) = (&0, &mut 1); let S { f, g: f2 }: S = S { f: 0, g: 1 }; }\n} Note that the type annotations must always be to the right of the pattern: // ERROR! should be let (x, y): (&u64, &mut u64) = ...\nlet (x: &u64, y: &mut u64) = (&0, &mut 1);","breadcrumbs":"Local Variables and Scopes » Type annotations","id":"54","title":"Type annotations"},"55":{"body":"In some cases, a local type annotation is required if the type system cannot infer the type. This commonly occurs when the type argument for a generic type cannot be inferred. For example: let _v1 = vector[]; // ERROR!\n// ^^^^^^^^ Could not infer this type. Try adding an annotation\nlet v2: vector = vector[]; // no error In a rarer case, the type system might not be able to infer a type for divergent code (where all the following code is unreachable). Both return and abort are expressions and can have any type. A loop has type () if it has a break (or T if has a break e where e: T), but if there is no break out of the loop, it could have any type. If these types cannot be inferred, a type annotation is required. For example, this code: let a: u8 = return ();\nlet b: bool = abort 0;\nlet c: signer = loop (); let x = return (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet y = abort 0; // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet z = loop (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation Adding type annotations to this code will expose other errors about dead code or unused local variables, but the example is still helpful for understanding this problem.","breadcrumbs":"Local Variables and Scopes » When annotations are necessary","id":"55","title":"When annotations are necessary"},"56":{"body":"let can introduce more than one local at a time using tuples. The locals declared inside the parenthesis are initialized to the corresponding values from the tuple. let () = ();\nlet (x0, x1) = (0, 1);\nlet (y0, y1, y2) = (0, 1, 2);\nlet (z0, z1, z2, z3) = (0, 1, 2, 3); The type of the expression must match the arity of the tuple pattern exactly. let (x, y) = (0, 1, 2); // ERROR!\nlet (x, y, z, q) = (0, 1, 2); // ERROR! You cannot declare more than one local with the same name in a single let. let (x, x) = 0; // ERROR! The mutability of the local variables declared can be mixed. let (mut x, y) = (0, 1);\nx = 1;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with tuples","id":"56","title":"Multiple declarations with tuples"},"57":{"body":"let can also introduce more than one local at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this: public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Similarly for positional structs public struct P(u64, u64) and let P(local1, local2) = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Here is a more complicated example: module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let Y { x1: X(f), x2 } = Y { x1: new_x(), x2: new_x() }; assert!(f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = Y { x1: new_x(), x2: new_x() }; assert!(f1 + f2 == 2, 42); }\n} Fields of structs can serve double duty, identifying the field to bind and the name of the variable. This is sometimes referred to as punning. let Y { x1, x2 } = e; is equivalent to: let Y { x1: x1, x2: x2 } = e; As shown with tuples, you cannot declare more than one local with the same name in a single let. let Y { x1: x, x2: x } = e; // ERROR! And as with tuples, the mutability of the local variables declared can be mixed. let Y { x1: mut x1, x2 } = e; Furthermore, the mutability of annotation can be applied to the punned fields. Giving the equivalent example let Y { mut x1, x2 } = e;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with structs","id":"57","title":"Multiple declarations with structs"},"58":{"body":"In the examples above for structs, the bound value in the let was moved, destroying the struct value and binding its fields. public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 In this scenario the struct value T { f1: 1, f2: 2 } no longer exists after the let. If you wish instead to not move and destroy the struct value, you can borrow each of its fields. For example: let t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &t;\n// local1: &u64\n// local2: &u64 And similarly with mutable references: let mut t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &mut t;\n// local1: &mut u64\n// local2: &mut u64 This behavior can also work with nested structs. module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let mut y = Y { x1: new_x(), x2: new_x() }; let Y { x1: X(f), x2 } = &y; assert!(*f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = &mut y; *f1 = *f1 + 1; *f2 = *f2 + 1; assert!(*f1 + *f2 == 4, 42); }\n}","breadcrumbs":"Local Variables and Scopes » Destructuring against references","id":"58","title":"Destructuring against references"},"59":{"body":"In let bindings, it is often helpful to ignore some values. Local variables that start with _ will be ignored and not introduce a new variable fun three(): (u64, u64, u64) { (0, 1, 2)\n} let (x1, _, z1) = three();\nlet (x2, _y, z2) = three();\nassert!(x1 + z1 == x2 + z2, 42); This can be necessary at times as the compiler will warn on unused local variables let (x1, y, z1) = three(); // WARNING!\n// ^ unused local 'y'","breadcrumbs":"Local Variables and Scopes » Ignoring Values","id":"59","title":"Ignoring Values"},"6":{"body":"Move supports six unsigned integer types: u8, u16, u32, u64, u128, and u256. Values of these types range from 0 to a maximum that depends on the size of the type. Type Value Range Unsigned 8-bit integer, u8 0 to 28 - 1 Unsigned 16-bit integer, u16 0 to 216 - 1 Unsigned 32-bit integer, u32 0 to 232 - 1 Unsigned 64-bit integer, u64 0 to 264 - 1 Unsigned 128-bit integer, u128 0 to 2128 - 1 Unsigned 256-bit integer, u256 0 to 2256 - 1","breadcrumbs":"Primitive Types » Integers » Integers","id":"6","title":"Integers"},"60":{"body":"All of the different structures in let can be combined! With that we arrive at this general grammar for let statements: let-binding → let pattern-or-list type-annotation opt > initializer opt > pattern-or-list → pattern | ( pattern-list ) > pattern-list → pattern , opt | pattern , pattern-list > type-annotation → : type initializer → = expression The general term for the item that introduces the bindings is a pattern . The pattern serves to both destructure data (possibly recursively) and introduce the bindings. The pattern grammar is as follows: pattern → local-variable | struct-type { field-binding-list } > field-binding-list → field-binding , opt | field-binding , > field-binding-list > field-binding → field | field : pattern A few concrete examples with this grammar applied: let (x, y): (u64, u64) = (0, 1);\n// ^ local-variable\n// ^ pattern\n// ^ local-variable\n// ^ pattern\n// ^ pattern-list\n// ^^^^ pattern-list\n// ^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^ type-annotation\n// ^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding let Foo { f, g: x } = Foo { f: 0, g: 1 };\n// ^^^ struct-type\n// ^ field\n// ^ field-binding\n// ^ field\n// ^ local-variable\n// ^ pattern\n// ^^^^ field-binding\n// ^^^^^^^ field-binding-list\n// ^^^^^^^^^^^^^^^ pattern\n// ^^^^^^^^^^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding","breadcrumbs":"Local Variables and Scopes » General let grammar","id":"60","title":"General let grammar"},"61":{"body":"","breadcrumbs":"Local Variables and Scopes » Mutations","id":"61","title":"Mutations"},"62":{"body":"After the local is introduced (either by let or as a function parameter), a mut local can be modified via an assignment: x = e Unlike let bindings, assignments are expressions. In some languages, assignments return the value that was assigned, but in Move, the type of any assignment is always (). (x = e: ()) Practically, assignments being expressions means that they can be used without adding a new expression block with braces ({...}). let x;\nif (cond) x = 1 else x = 2; The assignment uses the similar pattern syntax scheme as let bindings, but with absence of mut: module 0x42::example { public struct X { f: u64 } fun new_x(): X { X { f: 1 } } // Note: this example will complain about unused variables and assignments. fun example() { let (mut x, mut y, mut f, mut g) = (0, 0, 0, 0); (X { f }, X { f: x }) = (new_x(), new_x()); assert!(f + x == 2, 42); (x, y, f, _, g) = (0, 0, 0, 0, 0); }\n} Note that a local variable can only have one type, so the type of the local cannot change between assignments. let mut x;\nx = 0;\nx = false; // ERROR!","breadcrumbs":"Local Variables and Scopes » Assignments","id":"62","title":"Assignments"},"63":{"body":"In addition to directly modifying a local with assignment, a mut local can be modified via a mutable reference &mut. let mut x = 0;\nlet r = &mut x;\n*r = 1;\nassert!(x == 1, 42); This is particularly useful if either: (1) You want to modify different variables depending on some condition. let mut x = 0;\nlet mut y = 1;\nlet r = if (cond) &mut x else &mut y;\n*r = *r + 1; (2) You want another function to modify your local value. let mut x = 0;\nmodify_ref(&mut x); This sort of modification is how you modify structs and vectors! let mut v = vector[];\nvector::push_back(&mut v, 100);\nassert!(*vector::borrow(&v, 0) == 100, 42); For more details, see Move references .","breadcrumbs":"Local Variables and Scopes » Mutating through a reference","id":"63","title":"Mutating through a reference"},"64":{"body":"Any local declared with let is available for any subsequent expression, within that scope . Scopes are declared with expression blocks, {...}. Locals cannot be used outside of the declared scope. let x = 0;\n{ let y = 1;\n};\nx + y // ERROR!\n// ^ unbound local 'y' But, locals from an outer scope can be used in a nested scope. { let x = 0; { let y = x + 1; // valid }\n} Locals can be mutated in any scope where they are accessible. That mutation survives with the local, regardless of the scope that performed the mutation. let mut x = 0;\nx = x + 1;\nassert!(x == 1, 42);\n{ x = x + 1; assert!(x == 2, 42);\n};\nassert!(x == 2, 42);","breadcrumbs":"Local Variables and Scopes » Scopes","id":"64","title":"Scopes"},"65":{"body":"An expression block is a series of statements separated by semicolons (;). The resulting value of an expression block is the value of the last expression in the block. { let x = 1; let y = 1; x + y } In this example, the result of the block is x + y. A statement can be either a let declaration or an expression. Remember that assignments (x = e) are expressions of type (). { let x; let y = 1; x = 1; x + y } Function calls are another common expression of type (). Function calls that modify data are commonly used as statements. { let v = vector[]; vector::push_back(&mut v, 1); v } This is not just limited to () types---any expression can be used as a statement in a sequence! { let x = 0; x + 1; // value is discarded x + 2; // value is discarded b\"hello\"; // value is discarded\n} But! If the expression contains a resource (a value without the drop ability ), you will get an error. This is because Move's type system guarantees that any value that is dropped has the drop ability . (Ownership must be transferred or the value must be explicitly destroyed within its declaring module.) { let x = 0; Coin { value: x }; // ERROR!\n// ^^^^^^^^^^^^^^^^^ unused value without the `drop` ability x\n} If a final expression is not present in a block---that is, if there is a trailing semicolon ;, there is an implicit unit () value . Similarly, if the expression block is empty, there is an implicit unit () value. Both are equivalent { x = x + 1; 1 / x; } { x = x + 1; 1 / x; () } Similarly both are equivalent { } { () } An expression block is itself an expression and can be used anyplace an expression is used. (Note: The body of a function is also an expression block, but the function body cannot be replaced by another expression.) let my_vector: vector> = { let mut v = vector[]; vector::push_back(&mut v, b\"hello\"); vector::push_back(&mut v, b\"goodbye\"); v\n}; (The type annotation is not needed in this example and only added for clarity.)","breadcrumbs":"Local Variables and Scopes » Expression Blocks","id":"65","title":"Expression Blocks"},"66":{"body":"If a let introduces a local variable with a name already in scope, that previous variable can no longer be accessed for the rest of this scope. This is called shadowing . let x = 0;\nassert!(x == 0, 42); let x = 1; // x is shadowed\nassert!(x == 1, 42); When a local is shadowed, it does not need to retain the same type as before. let x = 0;\nassert!(x == 0, 42); let x = b\"hello\"; // x is shadowed\nassert!(x == b\"hello\", 42); After a local is shadowed, the value stored in the local still exists, but will no longer be accessible. This is important to keep in mind with values of types without the drop ability , as ownership of the value must be transferred by the end of the function. module 0x42::example { public struct Coin has store { value: u64 } fun unused_coin(): Coin { let x = Coin { value: 0 }; // ERROR!\n// ^ This local still contains a value without the `drop` ability x.value = 1; let x = Coin { value: 10 }; x\n// ^ Invalid return }\n} When a local is shadowed inside a scope, the shadowing only remains for that scope. The shadowing is gone once that scope ends. let x = 0;\n{ let x = 1; assert!(x == 1, 42);\n};\nassert!(x == 0, 42); Remember, locals can change type when they are shadowed. let x = 0;\n{ let x = b\"hello\"; assert!(x = b\"hello\", 42);\n};\nassert!(x == 0, 42);","breadcrumbs":"Local Variables and Scopes » Shadowing","id":"66","title":"Shadowing"},"67":{"body":"All local variables in Move can be used in two ways, either by move or copy. If one or the other is not specified, the Move compiler is able to infer whether a copy or a move should be used. This means that in all of the examples above, a move or a copy would be inserted by the compiler. A local variable cannot be used without the use of move or copy. copy will likely feel the most familiar coming from other programming languages, as it creates a new copy of the value inside of the variable to use in that expression. With copy, the local variable can be used more than once. let x = 0;\nlet y = copy x + 1;\nlet z = copy x + 2; Any value with the copy ability can be copied in this way, and will be copied implicitly unless a move is specified. move takes the value out of the local variable without copying the data. After a move occurs, the local variable is unavailable, even if the value's type has the copy ability . let x = 1;\nlet y = move x + 1;\n// ------ Local was moved here\nlet z = move x + 2; // Error!\n// ^^^^^^ Invalid usage of local 'x'\ny + z","breadcrumbs":"Local Variables and Scopes » Move and Copy","id":"67","title":"Move and Copy"},"68":{"body":"Move's type system will prevent a value from being used after it is moved. This is the same safety check described in let declaration that prevents local variables from being used before it is assigned a value.","breadcrumbs":"Local Variables and Scopes » Safety","id":"68","title":"Safety"},"69":{"body":"As mentioned above, the Move compiler will infer a copy or move if one is not indicated. The algorithm for doing so is quite simple: Any value with the copy ability is given a copy. Any reference (both mutable &mut and immutable &) is given a copy. Except under special circumstances where it is made a move for predictable borrow checker errors. This will happen once the reference is no longer used. Any other value is given a move. Given the structs public struct Foo has copy, drop, store { f: u64 }\npublic struct Coin has store { value: u64 } we have the following example let s = b\"hello\";\nlet foo = Foo { f: 0 };\nlet coin = Coin { value: 0 };\nlet coins = vector[Coin { value: 0 }, Coin { value: 0 }]; let s2 = s; // copy\nlet foo2 = foo; // copy\nlet coin2 = coin; // move\nlet coins2 = coin; // move let x = 0;\nlet b = false;\nlet addr = @0x42;\nlet x_ref = &x;\nlet coin_ref = &mut coin2; let x2 = x; // copy\nlet b2 = b; // copy\nlet addr2 = @0x42; // copy\nlet x_ref2 = x_ref; // copy\nlet coin_ref2 = coin_ref; // copy","breadcrumbs":"Local Variables and Scopes » Inference","id":"69","title":"Inference"},"7":{"body":"Literal values for these types are specified either as a sequence of digits (e.g.,112) or as hex literals, e.g., 0xFF. The type of the literal can optionally be added as a suffix, e.g., 112u8. If the type is not specified, the compiler will try to infer the type from the context where the literal is used. If the type cannot be inferred, it is assumed to be u64. Number literals can be separated by underscores for grouping and readability. (e.g.,1_234_5678, 1_000u128, 0xAB_CD_12_35). If a literal is too large for its specified (or inferred) size range, an error is reported.","breadcrumbs":"Primitive Types » Integers » Literals","id":"7","title":"Literals"},"70":{"body":"Move supports two equality operations == and !=","breadcrumbs":"Equality » Equality","id":"70","title":"Equality"},"71":{"body":"Syntax Operation Description == equal Returns true if the two operands have the same value, false otherwise != not equal Returns true if the two operands have different values, false otherwise","breadcrumbs":"Equality » Operations","id":"71","title":"Operations"},"72":{"body":"Both the equal (==) and not-equal (!=) operations only work if both operands are the same type 0 == 0; // `true`\n1u128 == 2u128; // `false`\nb\"hello\" != x\"00\"; // `true` Equality and non-equality also work over all user defined types! module 0x42::example { public struct S has copy, drop { f: u64, s: vector } fun always_true(): bool { let s = S { f: 0, s: b\"\" }; s == s } fun always_false(): bool { let s = S { f: 0, s: b\"\" }; s != s }\n} If the operands have different types, there is a type checking error 1u8 == 1u128; // ERROR!\n// ^^^^^ expected an argument of type 'u8'\nb\"\" != 0; // ERROR!\n// ^ expected an argument of type 'vector'","breadcrumbs":"Equality » Typing","id":"72","title":"Typing"},"73":{"body":"When comparing references , the type of the reference (immutable or mutable) does not matter. This means that you can compare an immutable & reference with a mutable one &mut of the same underlying type. let i = &0;\nlet m = &mut 1; i == m; // `false`\nm == i; // `false`\nm == m; // `true`\ni == i; // `true` The above is equivalent to applying an explicit freeze to each mutable reference where needed let i = &0;\nlet m = &mut 1; i == freeze(m); // `false`\nfreeze(m) == i; // `false`\nm == m; // `true`\ni == i; // `true` But again, the underlying type must be the same type let i = &0;\nlet s = &b\"\"; i == s; // ERROR!\n// ^ expected an argument of type '&u64'","breadcrumbs":"Equality » Typing with references","id":"73","title":"Typing with references"},"74":{"body":"Starting in Move 2024 edition, the == and != operators automatically borrow their operands if one of the operands is a reference and the other is not. This means that the following code works without any errors: let r = &0; // In all cases, `0` is automatically borrowed as `&0`\nr == 0; // `true`\n0 == r; // `true`\nr != 0; // `false`\n0 != r; // `false` This automatic borrow is always an immutable borrow.","breadcrumbs":"Equality » Automatic Borrowing","id":"74","title":"Automatic Borrowing"},"75":{"body":"Both == and != consume the value when comparing them. As a result, the type system enforces that the type must have drop . Recall that without the drop ability , ownership must be transferred by the end of the function, and such values can only be explicitly destroyed within their declaring module. If these were used directly with either equality == or non-equality !=, the value would be destroyed which would break drop ability safety guarantees! module 0x42::example { public struct Coin has store { value: u64 } fun invalid(c1: Coin, c2: Coin) { c1 == c2 // ERROR!\n// ^^ ^^ These assets would be destroyed! }\n} But, a programmer can always borrow the value first instead of directly comparing the value, and reference types have the drop ability . For example module 0x42::example { public struct Coin has store { value: u64 } fun swap_if_equal(c1: Coin, c2: Coin): (Coin, Coin) { let are_equal = &c1 == c2; // valid, note `c2` is automatically borrowed if (are_equal) (c2, c1) else (c1, c2) }\n}","breadcrumbs":"Equality » Restrictions","id":"75","title":"Restrictions"},"76":{"body":"While a programmer can compare any value whose type has drop , a programmer should often compare by reference to avoid expensive copies. let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(copy v1 == copy v2, 42);\n// ^^^^ ^^^^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(copy s1 == copy s2, 42);\n// ^^^^ ^^^^\nuse_two_foos(s1, s2); This code is perfectly acceptable (assuming Foo has drop ), just not efficient. The highlighted copies can be removed and replaced with borrows let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(&v1 == &v2, 42);\n// ^ ^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(&s1 == &s2, 42);\n// ^ ^\nuse_two_foos(s1, s2); The efficiency of the == itself remains the same, but the copys are removed and thus the program is more efficient.","breadcrumbs":"Equality » Avoid Extra Copies","id":"76","title":"Avoid Extra Copies"},"77":{"body":"return and abort are two control flow constructs that end execution, one for the current function and one for the entire transaction. More information on return can be found in the linked section","breadcrumbs":"Abort and Assert » Abort and Assert","id":"77","title":"Abort and Assert"},"78":{"body":"abort is an expression that takes one argument: an abort code of type u64. For example: abort 42 The abort expression halts execution the current function and reverts all changes made to state by the current transaction (note though that this guarantee must be upheld by the adapter of the specific deployment of Move). There is no mechanism for \"catching\" or otherwise handling an abort. Luckily, in Move transactions are all or nothing, meaning any changes to storage are made all at once only if the transaction succeeds. For Sui, this means no objects are modified. Because of this transactional commitment of changes, after an abort there is no need to worry about backing out changes. While this approach is lacking in flexibility, it is incredibly simple and predictable. Similar to return , abort is useful for exiting control flow when some condition cannot be met. In this example, the function will pop two items off of the vector, but will abort early if the vector does not have two items use std::vector; fun pop_twice(v: &mut vector): (T, T) { if (vector::length(v) < 2) abort 42; (vector::pop_back(v), vector::pop_back(v))\n} This is even more useful deep inside a control-flow construct. For example, this function checks that all numbers in the vector are less than the specified bound. And aborts otherwise use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); if (cur > bound) abort 42; i = i + 1; }\n}","breadcrumbs":"Abort and Assert » abort","id":"78","title":"abort"},"79":{"body":"assert is a builtin, macro operation provided by the Move compiler. It takes two arguments, a condition of type bool and a code of type u64 assert!(condition: bool, code: u64) Since the operation is a macro, it must be invoked with the !. This is to convey that the arguments to assert are call-by-expression. In other words, assert is not a normal function and does not exist at the bytecode level. It is replaced inside the compiler with if (condition) () else abort code assert is more commonly used than just abort by itself. The abort examples above can be rewritten using assert use std::vector;\nfun pop_twice(v: &mut vector): (T, T) { assert!(vector::length(v) >= 2, 42); // Now uses 'assert' (vector::pop_back(v), vector::pop_back(v))\n} and use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); assert!(cur <= bound, 42); // Now uses 'assert' i = i + 1; }\n} Note that because the operation is replaced with this if-else, the argument for the code is not always evaluated. For example: assert!(true, 1 / 0) Will not result in an arithmetic error, it is equivalent to if (true) () else (1 / 0) So the arithmetic expression is never evaluated!","breadcrumbs":"Abort and Assert » assert","id":"79","title":"assert"},"8":{"body":"// literals with explicit annotations;\nlet explicit_u8 = 1u8;\nlet explicit_u16 = 1u16;\nlet explicit_u32 = 1u32;\nlet explicit_u64 = 2u64;\nlet explicit_u128 = 3u128;\nlet explicit_u256 = 1u256;\nlet explicit_u64_underscored = 154_322_973u64; // literals with simple inference\nlet simple_u8: u8 = 1;\nlet simple_u16: u16 = 1;\nlet simple_u32: u32 = 1;\nlet simple_u64: u64 = 2;\nlet simple_u128: u128 = 3;\nlet simple_u256: u256 = 1; // literals with more complex inference\nlet complex_u8 = 1; // inferred: u8\n// right hand argument to shift must be u8\nlet _unused = 10 << complex_u8; let x: u8 = 38;\nlet complex_u8 = 2; // inferred: u8\n// arguments to `+` must have the same type\nlet _unused = x + complex_u8; let complex_u128 = 133_876; // inferred: u128\n// inferred from function argument type\nfunction_that_takes_u128(complex_u128); // literals can be written in hex\nlet hex_u8: u8 = 0x1;\nlet hex_u16: u16 = 0x1BAE;\nlet hex_u32: u32 = 0xDEAD80;\nlet hex_u64: u64 = 0xCAFE;\nlet hex_u128: u128 = 0xDEADBEEF;\nlet hex_u256: u256 = 0x1123_456A_BCDE_F;","breadcrumbs":"Primitive Types » Integers » Examples","id":"8","title":"Examples"},"80":{"body":"When using abort, it is important to understand how the u64 code will be used by the VM. Normally, after successful execution, the Move VM, and the adapter for the specific deployment, determine the changes made to storage. If an abort is reached, the VM will instead indicate an error. Included in that error will be two pieces of information: The module that produced the abort (package/address value and module name) The abort code. For example module 0x2::example { public fun aborts() { abort 42 }\n} module 0x3::invoker { public fun always_aborts() { 0x2::example::aborts() }\n} If a transaction, such as the function always_aborts above, calls 0x2::example::aborts, the VM would produce an error that indicated the module 0x2::example and the code 42. This can be useful for having multiple aborts being grouped together inside a module. In this example, the module has two separate error codes used in multiple functions module 0x42::example { use std::vector; const EEmptyVector: u64 = 0; const EIndexOutOfBounds: u64 = 1; // move i to j, move j to k, move k to i public fun rotate_three(v: &mut vector, i: u64, j: u64, k: u64) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(k < n, EIndexOutOfBounds); vector::swap(v, i, k); vector::swap(v, j, k); } public fun remove_twice(v: &mut vector, i: u64, j: u64): (T, T) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(i > j, EIndexOutOfBounds); (vector::remove(v, i), vector::remove(v, j)) }\n}","breadcrumbs":"Abort and Assert » Abort codes in the Move VM","id":"80","title":"Abort codes in the Move VM"},"81":{"body":"The abort i expression can have any type! This is because both constructs break from the normal control flow, so they never need to evaluate to the value of that type. The following are not useful, but they will type check let y: address = abort 0; This behavior can be helpful in situations where you have a branching instruction that produces a value on some branches, but not all. For example: let b = if (x == 0) false else if (x == 1) true else abort 42;\n// ^^^^^^^^ `abort 42` has type `bool`","breadcrumbs":"Abort and Assert » The type of abort","id":"81","title":"The type of abort"},"82":{"body":"Move offers multiple constructs for control flow based on boolean expressions , including common programming constructs such as if expressions and while and for loops, along with advanced control flow structures including labels for loops and escapable named blocks. It also supports more more complex constructs based on structural pattern matching. Conditional Expressions Pattern Matching Loops Labeled Control FLow","breadcrumbs":"Control Flow » Control Flow","id":"82","title":"Control Flow"},"83":{"body":"An if expression specifies that some code should only be evaluated if a certain condition is true. For example: if (x > 5) x = x - 5 The condition must be an expression of type bool. An if expression can optionally include an else clause to specify another expression to evaluate when the condition is false. if (y <= 10) y = y + 1 else y = 10 Either the \"true\" branch or the \"false\" branch will be evaluated, but not both. Either branch can be a single expression or an expression block. The conditional expressions may produce values so that the if expression has a result. let z = if (x < 100) x else 100; The expressions in the true and false branches must have compatible types. For example: // x and y must be u64 integers\nlet maximum: u64 = if (x > y) x else y; // ERROR! branches different types\nlet z = if (maximum < 10) 10u8 else 100u64; // ERROR! branches different types, as default false-branch is () not u64\nif (maximum >= 10) maximum; If the else clause is not specified, the false branch defaults to the unit value. The following are equivalent: if (condition) true_branch // implied default: else ()\nif (condition) true_branch else () Commonly, if expressions are used in conjunction with expression blocks . let maximum = if (x > y) x else y;\nif (maximum < 10) { x = x + 10; y = y + 10;\n} else if (x >= 10 && y >= 10) { x = x - 10; y = y - 10;\n}","breadcrumbs":"Control Flow » Conditional Expressions » Conditional if Expressions","id":"83","title":"Conditional if Expressions"},"84":{"body":"if-expression → if ( expression ) expression else-clause opt > else-clause → else expression","breadcrumbs":"Control Flow » Conditional Expressions » Grammar for Conditionals","id":"84","title":"Grammar for Conditionals"},"85":{"body":"Many programs require iteration over values, and Move provides while and loop forms to allow you to write code in these situations. In addition, you can also modify control flow of these loops during execution by using break (to exit the loop) and continue (to skip the remainder of this iteration and return to the top of the control flow structure).","breadcrumbs":"Control Flow » Loops » Loop Constructs in Move","id":"85","title":"Loop Constructs in Move"},"86":{"body":"The while construct repeats the body (an expression of type unit) until the condition (an expression of type bool) evaluates to false. Here is an example of simple while loop that computes the sum of the numbers from 1 to n: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; while (i <= n) { sum = sum + i; i = i + 1 }; sum\n} Infinite while loops are also allowed: fun foo() { while (true) { }\n}","breadcrumbs":"Control Flow » Loops » while Loops","id":"86","title":"while Loops"},"87":{"body":"In Move, while loops can use break to exit early. For example, suppose we were looking for the position of a value in a vector, and would like to break if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; let mut found = false; while (i < size) { if (vector::borrow(values, i) == &target_value) { found = true; break }; i = i + 1 }; if (found) { Option::Some(i) } else { Option::None }\n} Here, if the borrowed vector value is equal to our target value, we set the found flag to true and then call break, which will cause the program to exit the loop. Finally, note that break for while loops cannot take a value: while loops always return the unit type () and thus break does, too.","breadcrumbs":"Control Flow » Loops » Using break Inside of while Loops","id":"87","title":"Using break Inside of while Loops"},"88":{"body":"Similar to break, Move's while loops can invoke continue to skip over part of the loop body. This allows us to skip part of a computation if a condition is not met, such as in the following example: fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; while (i < size) { let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n} This code will iterate over the provided vector. For each entry, if that entry is an even number, it will add it to the even_sum. If it is not, however, it will call continue, skipping the sum operation and returning to the while loop conditional check.","breadcrumbs":"Control Flow » Loops » Using continue Inside of while Loops","id":"88","title":"Using continue Inside of while Loops"},"89":{"body":"The loop expression repeats the loop body (an expression with type ()) until it hits a break: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; loop { i = i + 1; if (i >= n) break; sum = sum + i; }; sum\n} Without a break, the loop will continue forever. In the example below, the program will run forever because the loop does not have a break: fun foo() { let mut i = 0; loop { i = i + 1 }\n} Here is an example that uses loop to write the sum function: fun sum(n: u64): u64 { let sum = 0; let i = 0; loop { i = i + 1; if (i > n) break; sum = sum + i }; sum\n}","breadcrumbs":"Control Flow » Loops » loop Expressions","id":"89","title":"loop Expressions"},"9":{"body":"","breadcrumbs":"Primitive Types » Integers » Operations","id":"9","title":"Operations"},"90":{"body":"Unlike while loops, which always return (), a loop may return a value using break. In doing so, the overall loop expression evaluates to a value of that type. For example, we can rewrite find_position from above using loop and break, immediately returning the index if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; loop { if (vector::borrow(values, i) == &target_value) { break Option::Some(i) } else if (i >= size) { break Option::None }; i = i + 1; }\n} This loop will break with an option result, and, as the last expression in the function body, will produce that value as the final function result.","breadcrumbs":"Control Flow » Loops » Using break with Values in loop","id":"90","title":"Using break with Values in loop"},"91":{"body":"As you might expect, continue can also be used inside a loop. Here is the previous sum_even function rewritten using loop with break and continue instead of while. fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; loop { if (i >= size) break; let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n}","breadcrumbs":"Control Flow » Loops » Using continue Inside of loop Expressions","id":"91","title":"Using continue Inside of loop Expressions"},"92":{"body":"In Move, loops are typed expressions. A while expression always has type (). let () = while (i < 10) { i = i + 1 }; If a loop contains a break, the expression has the type of the break. A break with no value has the unit type (). (loop { if (i < 10) i = i + 1 else break }: ());\nlet () = loop { if (i < 10) i = i + 1 else break }; let x: u64 = loop { if (i < 10) i = i + 1 else break 5 };\nlet x: u64 = loop { if (i < 10) { i = i + 1; continue} else break 5 }; In addition, if a loop contains multiple breaks, they must all return the same type: // invalid -- first break returns (), second returns 5\nlet x: u64 = loop { if (i < 10) break else break 5 }; If loop does not have a break, loop can have any type much like return, abort, break, and continue. (loop (): u64);\n(loop (): address);\n(loop (): &vector>); If you need even more-precise control flow, such as breaking out of nested loops, the next chapter presents the use of labeled control flow in Move.","breadcrumbs":"Control Flow » Loops » The Type of while and loop","id":"92","title":"The Type of while and loop"},"93":{"body":"Move supports labeled control flow, allowing you to define and transfer control to specific labels in a function. For example, we can nest two loops and use break and continue with those labels to precisely specify control flow. You can prefix any loop or while form with a 'label: form to allow breaking or continuing directly there. To demonstrate this behavior, consider a function that takes nested vectors of numbers (i.e., vector>) to sum against some threshold, which behaves as follows: If the sum of all the numbers are under the threshold, return that sum. If adding a number to the current sum would surpass the threshold, return the current sum. We can write this by iterating over the vector of vectors as nested loops and labelling the outer one. If any addition in the inner loop would push us over the threshold, we can use break with the outer label to escape both loops at once: fun sum_until_threshold(input: &vector>, threshold: u64): u64 { let mut sum = 0; let mut i = 0; let input_size = vector::length(vec); 'outer: loop { // breaks to outer since it is the closest enclosing loop if (i >= input_size) break sum; let vec = vector::borrow(input, i); let size = vector::length(vec); let mut j = 0; while (j < size) { let v_entry = *vector::borrow(vec, j); if (sum + v_entry < threshold) { sum = sum + v_entry; } else { // the next element we saw would break the threshold, // so we return the current sum break 'outer sum }; j = j + 1; }; i = i + 1; }\n} These sorts of labels can also be used with a nested loop form, providing precise control in larger bodies of code. For example, if we were processing a large table where each entry required iteration that might see us continuing the inner or outer loop, we could express that code using labels: 'outer: loop { ... 'inner: while (cond) { ... if (cond0) { break 'outer value }; ... if (cond1) { continue 'inner } else if (cond2) { continue 'outer }; ... } ...\n}","breadcrumbs":"Control Flow » Labeled Control FLow » Labeled Control Flow","id":"93","title":"Labeled Control Flow"},"94":{"body":"A match expression is a powerful control structure that allows you to compare a value against a series of patterns and then execute code based on which pattern matches first. Patterns can be anything from simple literals to complex, nested struct and enum definitions. As opposed to if expressions, which change control flow based on a bool-typed test expression, a match expression operates over a value of any type and selects one of many arms. A match expression can match Move values as well as mutable or immutable references, binding sub-patterns accordingly. For example: fun run(x: u64): u64 { match (x) { 1 => 2, 2 => 3, x => x, }\n} run(1); // returns 2\nrun(2); // returns 3\nrun(3); // returns 3\nrun(0); // returns 0","breadcrumbs":"Control Flow » Patterm Matching » Pattern Matching","id":"94","title":"Pattern Matching"},"95":{"body":"A match takes an expression and a non-empty series of match arms delimited by commas. Each match arm consists of a pattern (p), an optional guard (if (g) where g is an expression of type bool), an arrow (=>), and an arm expression (e) to execute when the pattern matches. For example, match (expression) { pattern1 if (guard_expression) => expression1, pattern2 => expression2, pattern3 => { expression3, expression4, ... },\n} Match arms are checked in order from top to bottom, and the first pattern that matches (with a guard expression, if present, that evaluates to true) will be executed. Note that the series of match arms within a match must be exhaustive, meaning that every possible value of the type being matched must be covered by one of the patterns in the match. If the series of match arms is not exhaustive, the compiler will raise an error.","breadcrumbs":"Control Flow » Patterm Matching » match Syntax","id":"95","title":"match Syntax"},"96":{"body":"A pattern is matched by a value if the value is equal to the pattern, and where variables and wildcards (e.g., x, y, _, or ..) are \"equal\" to anything. Patterns are used to match values. Patterns can be Pattern Description Literal A literal value, such as 1, true, @0x1 Constant A constant value, e.g., MyConstant Variable A variable, e.g., x, y, z Wildcard A wildcard, e.g., _ Constructor A constructor pattern, e.g., MyStruct { x, y }, MyEnum::Variant(x) At-pattern An at-pattern, e.g., x @ MyEnum::Variant(..) Or-pattern An or-pattern, e.g., MyEnum::Variant(..) \\| MyEnum::OtherVariant(..) Multi-arity wildcard A multi-arity wildcard, e.g., MyEnum::Variant(..) Mutable-binding A mutable-binding pattern, e.g., mut x Patterns in Move have the following grammar: pattern = | | | _ | C { : inner-pattern [\",\" : inner-pattern]* } // where C is a struct or enum variant | C ( inner-pattern [\",\" inner-pattern]* ... ) // where C is a struct or enum variant | C // where C is an enum variant | @ top-level-pattern | pattern | pattern | mut \ninner-pattern = pattern | .. // multi-arity wildcard Some examples of patterns are: // literal pattern\n1 // constant pattern\nMyConstant // variable pattern\nx // wildcard pattern\n_ // constructor pattern that matches `MyEnum::Variant` with the fields `1` and `true`\nMyEnum::Variant(1, true) // constructor pattern that matches `MyEnum::Variant` with the fields `1` and binds the second field's value to `x`\nMyEnum::Variant(1, x) // multi-arity wildcard pattern that matches multiple fields within the `MyEnum::Variant` variant\nMyEnum::Variant(..) // constructor pattern that matches the `x` field of `MyStruct` and binds the `y` field to `other_variable`\nMyStruct { x, y: other_variable } // at-pattern that matches `MyEnum::Variant` and binds the entire value to `x`\nx @ MyEnum::Variant(..) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant`\nMyEnum::Variant(..) | MyEnum::OtherVariant(..) // same as the above or-pattern, but with explicit wildcards\nMyEnum::Variant(_, _) | MyEnum::OtherVariant(_, _) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant` and binds the u64 field to `x`\nMyEnum::Variant(x, _) | MyEnum::OtherVariant(_, x) // constructor pattern that matches `OtherEnum::V` and if the inner `MyEnum` is `MyEnum::Variant`\nOtherEnum::V(MyEnum::Variant(..))","breadcrumbs":"Control Flow » Patterm Matching » Pattern Syntax","id":"96","title":"Pattern Syntax"},"97":{"body":"Patterns that contain variables bind them to the match subject or subject subcomponent being matched. These variables can then be used either in any match guard expressions, or on the right-hand side of the match arm. For example: public struct Wrapper(u64) fun add_under_wrapper_unless_equal(wrapper: Wrapper, x: u64): u64 { match (wrapper) { Wrapper(y) if (y == x) => Wrapper(y), Wrapper(y) => y + x, }\n}\nadd_under_wrapper_unless_equal(Wrapper(1), 2); // returns Wrapper(3)\nadd_under_wrapper_unless_equal(Wrapper(2), 3); // returns Wrapper(5)\nadd_under_wrapper_unless_equal(Wrapper(3), 3); // returns Wrapper(3)","breadcrumbs":"Control Flow » Patterm Matching » Patterns and Variables","id":"97","title":"Patterns and Variables"},"98":{"body":"Patterns can be nested, but patterns can also be combined using the or operator (|). For example, p1 | p2 succeeds if either pattern p1 or p2 matches the subject. This pattern can occur anywhere -- either as a top-level pattern or a sub-pattern within another pattern. public enum MyEnum has drop { Variant(u64, bool), OtherVariant(bool, u64),\n} fun test_or_pattern(x: u64): u64 { match (x) { MyEnum::Variant(1 | 2 | 3, true) | MyEnum::OtherVariant(true, 1 | 2 | 3) => 1, MyEnum::Variant(8, true) | MyEnum::OtherVariant(_, 6 | 7) => 2, _ => 3, }\n} test_or_pattern(MyEnum::Variant(3, true)); // returns 1\ntest_or_pattern(MyEnum::OtherVariant(true, 2)); // returns 1\ntest_or_pattern(MyEnum::Variant(8, true)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 7)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 80)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Combining Patterns","id":"98","title":"Combining Patterns"},"99":{"body":"The mut and .. patterns also have specific conditions placed on when, where, and how they can be used, as detailed in Limitations on Specific Patterns . At a high level, the mut modifier can only be used on variable patterns, and the .. pattern can only be used once within a constructor pattern -- and not as a top-level pattern. The following is an invalid usage of the .. pattern because it is used as a top-level pattern: match (x) { .. => 1, // ERROR: `..` pattern can only be used within a constructor pattern\n} match (x) { MyStruct(.., ..) => 1, // ERROR: ^^ `..` pattern can only be used once within a constructor pattern\n}","breadcrumbs":"Control Flow » Patterm Matching » Restrictions on Some Patterns","id":"99","title":"Restrictions on Some Patterns"}},"length":243,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"103":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.8284271247461903},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.6457513110645907},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":3.605551275463989},"178":{"tf":3.4641016151377544},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.4641016151377544},"79":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.449489742783178},"217":{"tf":4.358898943540674},"218":{"tf":3.605551275463989},"219":{"tf":3.3166247903554},"23":{"tf":3.4641016151377544},"234":{"tf":1.0},"24":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.3166247903554},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":14,"docs":{"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"33":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.7320508075688772},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":3,"docs":{"30":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.6457513110645907},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":40,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.4142135623730951},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":18,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.8284271247461903},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.123105625617661},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.0},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":3.872983346207417},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.449489742783178}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.8284271247461903},"165":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.0},"242":{"tf":3.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.449489742783178},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.1622776601683795},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":2.8284271247461903},"137":{"tf":4.47213595499958},"138":{"tf":2.23606797749979},"139":{"tf":2.6457513110645907},"140":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":3.0},"144":{"tf":2.0},"177":{"tf":3.3166247903554},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.605551275463989},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.0},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.4641016151377544},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":3.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.0},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":4.242640687119285},"242":{"tf":5.5677643628300215},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":3.7416573867739413},"112":{"tf":3.3166247903554},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":2.6457513110645907},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.6457513110645907},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.082762530298219},"2":{"tf":1.0},"200":{"tf":4.58257569495584},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.0},"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"210":{"tf":3.1622776601683795},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":15,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"161":{"tf":2.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":2.8284271247461903},"83":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.449489742783178},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"43":{"tf":1.0},"7":{"tf":2.6457513110645907},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":30,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"68":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":3.0},"232":{"tf":3.4641016151377544},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":2.0},"89":{"tf":3.0},"90":{"tf":2.6457513110645907},"91":{"tf":2.0},"92":{"tf":3.872983346207417},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":4.358898943540674},"102":{"tf":3.0},"103":{"tf":2.8284271247461903},"104":{"tf":5.291502622129181},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":5.744562646538029},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"200":{"tf":2.449489742783178},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":2.8284271247461903},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"199":{"tf":2.449489742783178},"2":{"tf":1.7320508075688772},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.1622776601683795},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.605551275463989},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.449489742783178},"217":{"tf":3.872983346207417},"218":{"tf":3.605551275463989},"219":{"tf":2.8284271247461903},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"26":{"tf":1.7320508075688772},"3":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.449489742783178},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.8284271247461903},"214":{"tf":3.3166247903554},"215":{"tf":3.4641016151377544},"216":{"tf":2.23606797749979},"217":{"tf":3.3166247903554},"218":{"tf":4.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":3.3166247903554},"224":{"tf":1.0},"225":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":4.795831523312719},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":1.7320508075688772},"143":{"tf":4.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.0},"96":{"tf":6.082762530298219},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":3.605551275463989}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.477225575051661}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":4.898979485566356},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":2.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":4.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.3166247903554},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"121":{"tf":3.4641016151377544},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":16,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"241":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.1622776601683795},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.3166247903554},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.0},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":3.605551275463989},"124":{"tf":2.449489742783178},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":3.3166247903554},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":2.0},"133":{"tf":3.3166247903554},"134":{"tf":2.8284271247461903},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"177":{"tf":3.872983346207417},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.0},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.23606797749979},"47":{"tf":3.1622776601683795}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":44,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":2.8284271247461903},"227":{"tf":4.358898943540674},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":3.3166247903554},"233":{"tf":2.0},"234":{"tf":3.605551275463989},"235":{"tf":4.0},"236":{"tf":2.23606797749979},"237":{"tf":2.6457513110645907},"238":{"tf":5.830951894845301},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":119,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.449489742783178},"100":{"tf":4.242640687119285},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.6457513110645907},"163":{"tf":5.291502622129181},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.1622776601683795},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"178":{"tf":4.358898943540674},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"210":{"tf":3.0},"211":{"tf":3.3166247903554},"212":{"tf":3.3166247903554},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"52":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":20,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":5.0990195135927845},"185":{"tf":1.7320508075688772},"186":{"tf":3.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.656854249492381},"2":{"tf":1.4142135623730951},"200":{"tf":4.58257569495584},"201":{"tf":2.8284271247461903},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.605551275463989},"143":{"tf":4.0},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":1.4142135623730951},"29":{"tf":3.1622776601683795},"30":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.23606797749979},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.449489742783178},"124":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.23606797749979}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.0},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":3.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"171":{"tf":2.6457513110645907},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":3.7416573867739413},"178":{"tf":3.7416573867739413},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.6457513110645907},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.6457513110645907},"217":{"tf":4.47213595499958},"218":{"tf":3.7416573867739413},"219":{"tf":3.4641016151377544},"23":{"tf":3.7416573867739413},"234":{"tf":1.0},"24":{"tf":3.7416573867739413},"242":{"tf":1.4142135623730951},"25":{"tf":3.0},"26":{"tf":3.4641016151377544},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":16,"docs":{"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.1622776601683795},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.0},"33":{"tf":1.0},"54":{"tf":2.6457513110645907},"55":{"tf":3.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":2.0},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":6,"docs":{"30":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":3.3166247903554},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"74":{"tf":2.23606797749979},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.8284271247461903},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.1622776601683795},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":42,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"215":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.23606797749979},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.449489742783178},"128":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.6457513110645907}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":2.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":2.0}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":17,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":40,"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},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.7320508075688772},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.242640687119285},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.1622776601683795},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.6457513110645907}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.23606797749979},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"165":{"tf":1.7320508075688772},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.8284271247461903},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.1622776601683795},"242":{"tf":3.1622776601683795},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.6457513110645907},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.3166247903554},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":3.0},"137":{"tf":4.69041575982343},"138":{"tf":2.449489742783178},"139":{"tf":2.8284271247461903},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":2.6457513110645907},"143":{"tf":3.3166247903554},"144":{"tf":2.449489742783178},"177":{"tf":3.4641016151377544},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.7416573867739413},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.23606797749979},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.123105625617661},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":3.0},"131":{"tf":2.8284271247461903},"132":{"tf":3.1622776601683795},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":34,"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},"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.23606797749979},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":4.47213595499958},"242":{"tf":5.744562646538029},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":3.4641016151377544},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":2.0},"118":{"tf":3.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":2.8284271247461903},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.449489742783178},"157":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.23606797749979},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.164414002968976},"2":{"tf":1.0},"200":{"tf":4.69041575982343},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":3.0},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":2.0}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.8284271247461903},"209":{"tf":1.7320508075688772},"210":{"tf":3.3166247903554},"211":{"tf":2.23606797749979},"212":{"tf":2.0},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.4641016151377544},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":18,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":2.449489742783178},"16":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":3.1622776601683795},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.3166247903554}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":35,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.3166247903554},"231":{"tf":3.3166247903554},"232":{"tf":3.7416573867739413},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":3.0},"91":{"tf":2.449489742783178},"92":{"tf":4.123105625617661},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":28,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":4.58257569495584},"102":{"tf":3.3166247903554},"103":{"tf":3.0},"104":{"tf":5.385164807134504},"105":{"tf":3.4641016151377544},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":2.0},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":5.830951894845301},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":3.872983346207417},"96":{"tf":3.3166247903554},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.449489742783178},"2":{"tf":2.0},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":3.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":3.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.7416573867739413},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":2.0},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.6457513110645907},"217":{"tf":4.0},"218":{"tf":3.7416573867739413},"219":{"tf":3.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"3":{"tf":3.7416573867739413},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.6457513110645907},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"45":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":2.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":3.1622776601683795},"214":{"tf":3.605551275463989},"215":{"tf":3.605551275463989},"216":{"tf":2.449489742783178},"217":{"tf":3.4641016151377544},"218":{"tf":4.123105625617661},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":3.4641016151377544},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":4.898979485566356},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"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},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":3.0},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":2.0},"143":{"tf":4.123105625617661},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.0},"96":{"tf":6.164414002968976},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":3.7416573867739413}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.5677643628300215}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.449489742783178},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":5.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":51,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":4.242640687119285},"37":{"tf":3.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"63":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.4142135623730951},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":3.0},"117":{"tf":1.7320508075688772},"120":{"tf":2.23606797749979},"121":{"tf":3.605551275463989},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":3.0},"241":{"tf":1.4142135623730951},"49":{"tf":2.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":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":2.0},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.23606797749979},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.3166247903554}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.3166247903554},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.4641016151377544},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.1622776601683795},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":3.0},"123":{"tf":3.872983346207417},"124":{"tf":2.6457513110645907},"125":{"tf":3.4641016151377544},"126":{"tf":2.6457513110645907},"127":{"tf":1.7320508075688772},"128":{"tf":3.605551275463989},"129":{"tf":2.8284271247461903},"130":{"tf":3.3166247903554},"131":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":3.605551275463989},"134":{"tf":3.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.8284271247461903},"169":{"tf":2.23606797749979},"177":{"tf":4.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.1622776601683795},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.449489742783178},"47":{"tf":3.3166247903554}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":2.8284271247461903},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":3.1622776601683795},"227":{"tf":4.58257569495584},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":2.449489742783178},"231":{"tf":2.449489742783178},"232":{"tf":3.4641016151377544},"233":{"tf":2.23606797749979},"234":{"tf":3.872983346207417},"235":{"tf":4.242640687119285},"236":{"tf":2.449489742783178},"237":{"tf":3.0},"238":{"tf":6.0},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":141,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.6457513110645907},"100":{"tf":4.358898943540674},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"119":{"tf":1.0},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":2.6457513110645907},"162":{"tf":2.8284271247461903},"163":{"tf":5.385164807134504},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.3166247903554},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":2.449489742783178},"177":{"tf":1.0},"178":{"tf":4.58257569495584},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"21":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":3.4641016151377544},"212":{"tf":3.4641016151377544},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":2.8284271247461903},"52":{"tf":1.0},"54":{"tf":3.0},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":2.8284271247461903},"73":{"tf":2.6457513110645907},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":31,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":2.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"161":{"tf":1.0},"207":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":5.196152422706632},"185":{"tf":2.0},"186":{"tf":3.1622776601683795},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":1.4142135623730951},"192":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"200":{"tf":4.69041575982343},"201":{"tf":3.0},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.7416573867739413},"143":{"tf":4.123105625617661},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":3.4641016151377544},"30":{"tf":1.7320508075688772},"31":{"tf":3.4641016151377544},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.449489742783178},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.449489742783178}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"4":{"df":1,"docs":{"232":{"tf":1.0}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"s":{"df":7,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"177":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"156":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"12":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"239":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"209":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"173":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"190":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"38":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}}},"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"161":{"tf":1.0},"6":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"175":{"tf":1.0},"182":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"167":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"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}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"0":{"tf":1.0},"223":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"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":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"133":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"191":{"tf":1.0},"242":{"tf":1.0}}}},"n":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"193":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"181":{"tf":1.0},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"184":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}},"t":{"df":3,"docs":{"226":{"tf":1.0},"235":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"162":{"tf":1.0},"194":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0}}}},"df":14,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"149":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"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":["introduction.html#the-move-reference","modules.html#modules","modules.html#syntax","modules.html#names","modules.html#members","primitive-types.html#primitive-types","primitive-types/integers.html#integers","primitive-types/integers.html#literals","primitive-types/integers.html#examples","primitive-types/integers.html#operations","primitive-types/integers.html#arithmetic","primitive-types/integers.html#bitwise","primitive-types/integers.html#bit-shifts","primitive-types/integers.html#comparisons","primitive-types/integers.html#equality","primitive-types/integers.html#casting","primitive-types/integers.html#ownership","primitive-types/bool.html#bool","primitive-types/bool.html#literals","primitive-types/bool.html#operations","primitive-types/bool.html#logical","primitive-types/bool.html#control-flow","primitive-types/bool.html#ownership","primitive-types/address.html#address","primitive-types/address.html#addresses-and-their-syntax","primitive-types/address.html#named-addresses","primitive-types/address.html#examples","primitive-types/vector.html#vector","primitive-types/vector.html#literals","primitive-types/vector.html#general-vector-literals","primitive-types/vector.html#vector-literals","primitive-types/vector.html#operations","primitive-types/vector.html#example","primitive-types/vector.html#destroying-and-copying-vectors","primitive-types/vector.html#ownership","primitive-types/references.html#references","primitive-types/references.html#reference-operators","primitive-types/references.html#reading-and-writing-through-references","primitive-types/references.html#freeze-inference","primitive-types/references.html#subtyping","primitive-types/references.html#ownership","primitive-types/references.html#references-cannot-be-stored","primitive-types/tuples.html#tuples-and-unit","primitive-types/tuples.html#literals","primitive-types/tuples.html#examples","primitive-types/tuples.html#operations","primitive-types/tuples.html#destructuring","primitive-types/tuples.html#subtyping","primitive-types/tuples.html#ownership","variables.html#local-variables-and-scope","variables.html#declaring-local-variables","variables.html#let-bindings","variables.html#variables-must-be-assigned-before-use","variables.html#valid-variable-names","variables.html#type-annotations","variables.html#when-annotations-are-necessary","variables.html#multiple-declarations-with-tuples","variables.html#multiple-declarations-with-structs","variables.html#destructuring-against-references","variables.html#ignoring-values","variables.html#general-let-grammar","variables.html#mutations","variables.html#assignments","variables.html#mutating-through-a-reference","variables.html#scopes","variables.html#expression-blocks","variables.html#shadowing","variables.html#move-and-copy","variables.html#safety","variables.html#inference","equality.html#equality","equality.html#operations","equality.html#typing","equality.html#typing-with-references","equality.html#automatic-borrowing","equality.html#restrictions","equality.html#avoid-extra-copies","abort-and-assert.html#abort-and-assert","abort-and-assert.html#abort","abort-and-assert.html#assert","abort-and-assert.html#abort-codes-in-the-move-vm","abort-and-assert.html#the-type-of-abort","control-flow.html#control-flow","control-flow/conditionals.html#conditional-if-expressions","control-flow/conditionals.html#grammar-for-conditionals","control-flow/loops.html#loop-constructs-in-move","control-flow/loops.html#while-loops","control-flow/loops.html#using-break-inside-of-while-loops","control-flow/loops.html#using-continue-inside-of-while-loops","control-flow/loops.html#loop-expressions","control-flow/loops.html#using-break-with-values-in-loop","control-flow/loops.html#using-continue-inside-of-loop-expressions","control-flow/loops.html#the-type-of-while-and-loop","control-flow/labeled-control-flow.html#labeled-control-flow","control-flow/pattern-matching.html#pattern-matching","control-flow/pattern-matching.html#match-syntax","control-flow/pattern-matching.html#pattern-syntax","control-flow/pattern-matching.html#patterns-and-variables","control-flow/pattern-matching.html#combining-patterns","control-flow/pattern-matching.html#restrictions-on-some-patterns","control-flow/pattern-matching.html#pattern-typing","control-flow/pattern-matching.html#matching","control-flow/pattern-matching.html#matching-constructors","control-flow/pattern-matching.html#ability-constraints","control-flow/pattern-matching.html#exhaustiveness","control-flow/pattern-matching.html#guards","control-flow/pattern-matching.html#limitations-on-specific-patterns","control-flow/pattern-matching.html#mutability-usage","control-flow/pattern-matching.html#-usage","functions.html#functions","functions.html#declaration","functions.html#visibility","functions.html#entry-modifier","functions.html#name","functions.html#type-parameters","functions.html#parameters","functions.html#return-type","functions.html#function-body","functions.html#native-functions","functions.html#calling","functions.html#returning-values","functions.html#return-expression","structs.html#structs-and-resources","structs.html#defining-structs","structs.html#visibility","structs.html#abilities","structs.html#naming","structs.html#using-structs","structs.html#creating-structs","structs.html#destroying-structs-via-pattern-matching","structs.html#accessing-struct-fields","structs.html#borrowing-structs-and-fields","structs.html#reading-and-writing-fields","structs.html#privileged-struct-operations","structs.html#ownership","structs.html#storage","enums.html#enumerations","enums.html#defining-enums","enums.html#visibility","enums.html#abilities","enums.html#naming","enums.html#using-enums","enums.html#creating-enum-variants","enums.html#pattern-matching-enum-variants-and-destructuring","enums.html#overwriting-to-enum-values","constants.html#constants","constants.html#declaration","constants.html#naming","constants.html#visibility","constants.html#valid-expressions","constants.html#values","constants.html#complex-expressions","generics.html#generics","generics.html#declaring-type-parameters","generics.html#generic-functions","generics.html#generic-structs","generics.html#type-arguments","generics.html#calling-generic-functions","generics.html#using-generic-structs","generics.html#type-argument-mismatch","generics.html#type-inference","generics.html#integers","generics.html#unused-type-parameters","generics.html#phantom-type-parameters","generics.html#constraints","generics.html#declaring-constraints","generics.html#verifying-constraints","generics.html#limitations-on-recursions","generics.html#recursive-structs","generics.html#advanced-topic-type-level-recursions","abilities.html#abilities","abilities.html#the-four-abilities","abilities.html#copy","abilities.html#drop","abilities.html#store","abilities.html#key","abilities.html#builtin-types","abilities.html#annotating-structs-and-enums","abilities.html#conditional-abilities-and-generic-types","abilities.html#example-conditional-copy","abilities.html#example-conditional-drop","abilities.html#example-conditional-store","abilities.html#example-conditional-key","uses.html#uses-and-aliases","uses.html#syntax","uses.html#multiple-aliases","uses.html#self-aliases","uses.html#multiple-aliases-for-the-same-definition","uses.html#nested-imports","uses.html#inside-a-module","uses.html#inside-an-expression","uses.html#naming-rules","uses.html#uniqueness","uses.html#shadowing","uses.html#unused-use-or-alias","method-syntax.html#methods","method-syntax.html#syntax","method-syntax.html#method-resolution","method-syntax.html#functions-in-the-defining-module","method-syntax.html#use-fun-aliases","method-syntax.html#public-use-fun-aliases","method-syntax.html#interactions-with-use-aliases","method-syntax.html#scoping","method-syntax.html#automatic-borrowing","method-syntax.html#chaining","index-syntax.html#index-syntax","index-syntax.html#overview-and-summary","index-syntax.html#usage","index-syntax.html#index-functions-take-flexible-arguments","index-syntax.html#defining-index-syntax-functions","index-syntax.html#declaration","index-syntax.html#type-constraints","index-syntax.html#type-compatibility","packages.html#packages","packages.html#package-layout-and-manifest-syntax","packages.html#movetoml","packages.html#named-addresses-during-compilation","packages.html#declaring-named-addresses","packages.html#scope-and-renaming-of-named-addresses","packages.html#instantiating-named-addresses","packages.html#usage-and-artifacts","packages.html#artifacts","packages.html#movelock","packages.html#the-move-section","packages.html#the-movepackage-sections","packages.html#the-movetoolchain-version-section","unit-testing.html#unit-tests","unit-testing.html#test-annotations","unit-testing.html#expected-failures","unit-testing.html#1-expected_failureabort_code--","unit-testing.html#2-expected_failurearithmetic_error-location--","unit-testing.html#3-expected_failureout_of_gas-location--","unit-testing.html#4-expected_failurevector_error-minor_status---location--","unit-testing.html#5-expected_failure","unit-testing.html#test-only-annotations","unit-testing.html#running-unit-tests","unit-testing.html#example","unit-testing.html#running-tests","unit-testing.html#using-test-flags","coding-conventions.html","friends.html#deprecated-friends","friends.html#friend-declaration","friends.html#friend-declaration-rules"],"index":{"documentStore":{"docInfo":{"0":{"body":61,"breadcrumbs":4,"title":2},"1":{"body":52,"breadcrumbs":2,"title":1},"10":{"body":79,"breadcrumbs":4,"title":1},"100":{"body":89,"breadcrumbs":6,"title":2},"101":{"body":209,"breadcrumbs":5,"title":1},"102":{"body":148,"breadcrumbs":6,"title":2},"103":{"body":95,"breadcrumbs":6,"title":2},"104":{"body":231,"breadcrumbs":5,"title":1},"105":{"body":148,"breadcrumbs":5,"title":1},"106":{"body":6,"breadcrumbs":7,"title":3},"107":{"body":109,"breadcrumbs":6,"title":2},"108":{"body":123,"breadcrumbs":5,"title":1},"109":{"body":16,"breadcrumbs":2,"title":1},"11":{"body":44,"breadcrumbs":4,"title":1},"110":{"body":38,"breadcrumbs":2,"title":1},"111":{"body":188,"breadcrumbs":2,"title":1},"112":{"body":125,"breadcrumbs":3,"title":2},"113":{"body":25,"breadcrumbs":2,"title":1},"114":{"body":28,"breadcrumbs":3,"title":2},"115":{"body":46,"breadcrumbs":2,"title":1},"116":{"body":62,"breadcrumbs":3,"title":2},"117":{"body":34,"breadcrumbs":3,"title":2},"118":{"body":49,"breadcrumbs":3,"title":2},"119":{"body":105,"breadcrumbs":2,"title":1},"12":{"body":68,"breadcrumbs":5,"title":2},"120":{"body":59,"breadcrumbs":3,"title":2},"121":{"body":114,"breadcrumbs":3,"title":2},"122":{"body":65,"breadcrumbs":3,"title":2},"123":{"body":68,"breadcrumbs":3,"title":2},"124":{"body":29,"breadcrumbs":2,"title":1},"125":{"body":139,"breadcrumbs":2,"title":1},"126":{"body":43,"breadcrumbs":2,"title":1},"127":{"body":0,"breadcrumbs":3,"title":2},"128":{"body":118,"breadcrumbs":3,"title":2},"129":{"body":174,"breadcrumbs":6,"title":5},"13":{"body":31,"breadcrumbs":4,"title":1},"130":{"body":77,"breadcrumbs":4,"title":3},"131":{"body":89,"breadcrumbs":4,"title":3},"132":{"body":249,"breadcrumbs":4,"title":3},"133":{"body":100,"breadcrumbs":4,"title":3},"134":{"body":190,"breadcrumbs":2,"title":1},"135":{"body":18,"breadcrumbs":2,"title":1},"136":{"body":86,"breadcrumbs":2,"title":1},"137":{"body":118,"breadcrumbs":3,"title":2},"138":{"body":23,"breadcrumbs":2,"title":1},"139":{"body":87,"breadcrumbs":2,"title":1},"14":{"body":33,"breadcrumbs":4,"title":1},"140":{"body":46,"breadcrumbs":2,"title":1},"141":{"body":0,"breadcrumbs":3,"title":2},"142":{"body":127,"breadcrumbs":4,"title":3},"143":{"body":392,"breadcrumbs":6,"title":5},"144":{"body":35,"breadcrumbs":4,"title":3},"145":{"body":26,"breadcrumbs":2,"title":1},"146":{"body":26,"breadcrumbs":2,"title":1},"147":{"body":75,"breadcrumbs":2,"title":1},"148":{"body":16,"breadcrumbs":2,"title":1},"149":{"body":18,"breadcrumbs":3,"title":2},"15":{"body":69,"breadcrumbs":4,"title":1},"150":{"body":25,"breadcrumbs":2,"title":1},"151":{"body":122,"breadcrumbs":3,"title":2},"152":{"body":50,"breadcrumbs":2,"title":1},"153":{"body":12,"breadcrumbs":4,"title":3},"154":{"body":45,"breadcrumbs":3,"title":2},"155":{"body":31,"breadcrumbs":3,"title":2},"156":{"body":0,"breadcrumbs":3,"title":2},"157":{"body":26,"breadcrumbs":4,"title":3},"158":{"body":49,"breadcrumbs":4,"title":3},"159":{"body":33,"breadcrumbs":4,"title":3},"16":{"body":15,"breadcrumbs":4,"title":1},"160":{"body":105,"breadcrumbs":3,"title":2},"161":{"body":87,"breadcrumbs":2,"title":1},"162":{"body":116,"breadcrumbs":4,"title":3},"163":{"body":362,"breadcrumbs":4,"title":3},"164":{"body":49,"breadcrumbs":2,"title":1},"165":{"body":38,"breadcrumbs":3,"title":2},"166":{"body":97,"breadcrumbs":3,"title":2},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":53,"breadcrumbs":3,"title":2},"169":{"body":169,"breadcrumbs":6,"title":5},"17":{"body":8,"breadcrumbs":4,"title":1},"170":{"body":80,"breadcrumbs":3,"title":1},"171":{"body":61,"breadcrumbs":4,"title":2},"172":{"body":29,"breadcrumbs":3,"title":1},"173":{"body":52,"breadcrumbs":3,"title":1},"174":{"body":48,"breadcrumbs":3,"title":1},"175":{"body":42,"breadcrumbs":3,"title":1},"176":{"body":62,"breadcrumbs":4,"title":2},"177":{"body":209,"breadcrumbs":5,"title":3},"178":{"body":159,"breadcrumbs":6,"title":4},"179":{"body":67,"breadcrumbs":5,"title":3},"18":{"body":4,"breadcrumbs":4,"title":1},"180":{"body":91,"breadcrumbs":5,"title":3},"181":{"body":49,"breadcrumbs":5,"title":3},"182":{"body":50,"breadcrumbs":5,"title":3},"183":{"body":18,"breadcrumbs":4,"title":2},"184":{"body":143,"breadcrumbs":3,"title":1},"185":{"body":38,"breadcrumbs":4,"title":2},"186":{"body":38,"breadcrumbs":4,"title":2},"187":{"body":22,"breadcrumbs":6,"title":4},"188":{"body":34,"breadcrumbs":4,"title":2},"189":{"body":45,"breadcrumbs":4,"title":2},"19":{"body":0,"breadcrumbs":4,"title":1},"190":{"body":121,"breadcrumbs":4,"title":2},"191":{"body":40,"breadcrumbs":4,"title":2},"192":{"body":64,"breadcrumbs":3,"title":1},"193":{"body":98,"breadcrumbs":3,"title":1},"194":{"body":18,"breadcrumbs":5,"title":3},"195":{"body":79,"breadcrumbs":3,"title":1},"196":{"body":12,"breadcrumbs":3,"title":1},"197":{"body":73,"breadcrumbs":4,"title":2},"198":{"body":57,"breadcrumbs":5,"title":3},"199":{"body":332,"breadcrumbs":5,"title":3},"2":{"body":41,"breadcrumbs":2,"title":1},"20":{"body":34,"breadcrumbs":4,"title":1},"200":{"body":261,"breadcrumbs":6,"title":4},"201":{"body":75,"breadcrumbs":5,"title":3},"202":{"body":57,"breadcrumbs":3,"title":1},"203":{"body":173,"breadcrumbs":4,"title":2},"204":{"body":98,"breadcrumbs":3,"title":1},"205":{"body":50,"breadcrumbs":5,"title":2},"206":{"body":103,"breadcrumbs":5,"title":2},"207":{"body":85,"breadcrumbs":4,"title":1},"208":{"body":92,"breadcrumbs":8,"title":5},"209":{"body":87,"breadcrumbs":7,"title":4},"21":{"body":12,"breadcrumbs":5,"title":2},"210":{"body":179,"breadcrumbs":4,"title":1},"211":{"body":116,"breadcrumbs":5,"title":2},"212":{"body":191,"breadcrumbs":5,"title":2},"213":{"body":48,"breadcrumbs":2,"title":1},"214":{"body":157,"breadcrumbs":5,"title":4},"215":{"body":386,"breadcrumbs":2,"title":1},"216":{"body":42,"breadcrumbs":5,"title":4},"217":{"body":144,"breadcrumbs":4,"title":3},"218":{"body":188,"breadcrumbs":5,"title":4},"219":{"body":79,"breadcrumbs":4,"title":3},"22":{"body":15,"breadcrumbs":4,"title":1},"220":{"body":35,"breadcrumbs":3,"title":2},"221":{"body":54,"breadcrumbs":2,"title":1},"222":{"body":114,"breadcrumbs":2,"title":1},"223":{"body":73,"breadcrumbs":3,"title":2},"224":{"body":52,"breadcrumbs":3,"title":2},"225":{"body":56,"breadcrumbs":4,"title":3},"226":{"body":48,"breadcrumbs":4,"title":2},"227":{"body":128,"breadcrumbs":4,"title":2},"228":{"body":11,"breadcrumbs":4,"title":2},"229":{"body":70,"breadcrumbs":5,"title":3},"23":{"body":91,"breadcrumbs":4,"title":1},"230":{"body":62,"breadcrumbs":6,"title":4},"231":{"body":57,"breadcrumbs":6,"title":4},"232":{"body":118,"breadcrumbs":8,"title":6},"233":{"body":33,"breadcrumbs":4,"title":2},"234":{"body":78,"breadcrumbs":4,"title":2},"235":{"body":97,"breadcrumbs":5,"title":3},"236":{"body":90,"breadcrumbs":3,"title":1},"237":{"body":36,"breadcrumbs":4,"title":2},"238":{"body":231,"breadcrumbs":5,"title":3},"239":{"body":5,"breadcrumbs":2,"title":2},"24":{"body":82,"breadcrumbs":5,"title":2},"240":{"body":29,"breadcrumbs":3,"title":2},"241":{"body":102,"breadcrumbs":3,"title":2},"242":{"body":161,"breadcrumbs":4,"title":3},"25":{"body":71,"breadcrumbs":5,"title":2},"26":{"body":64,"breadcrumbs":4,"title":1},"27":{"body":27,"breadcrumbs":4,"title":1},"28":{"body":0,"breadcrumbs":4,"title":1},"29":{"body":70,"breadcrumbs":6,"title":3},"3":{"body":139,"breadcrumbs":2,"title":1},"30":{"body":145,"breadcrumbs":5,"title":2},"31":{"body":196,"breadcrumbs":4,"title":1},"32":{"body":27,"breadcrumbs":4,"title":1},"33":{"body":115,"breadcrumbs":6,"title":3},"34":{"body":13,"breadcrumbs":4,"title":1},"35":{"body":31,"breadcrumbs":4,"title":1},"36":{"body":151,"breadcrumbs":5,"title":2},"37":{"body":125,"breadcrumbs":7,"title":4},"38":{"body":87,"breadcrumbs":5,"title":2},"39":{"body":135,"breadcrumbs":4,"title":1},"4":{"body":34,"breadcrumbs":2,"title":1},"40":{"body":53,"breadcrumbs":4,"title":1},"41":{"body":108,"breadcrumbs":5,"title":2},"42":{"body":128,"breadcrumbs":6,"title":2},"43":{"body":68,"breadcrumbs":5,"title":1},"44":{"body":43,"breadcrumbs":5,"title":1},"45":{"body":5,"breadcrumbs":5,"title":1},"46":{"body":97,"breadcrumbs":5,"title":1},"47":{"body":75,"breadcrumbs":5,"title":1},"48":{"body":26,"breadcrumbs":5,"title":1},"49":{"body":25,"breadcrumbs":6,"title":3},"5":{"body":31,"breadcrumbs":4,"title":2},"50":{"body":0,"breadcrumbs":6,"title":3},"51":{"body":74,"breadcrumbs":4,"title":1},"52":{"body":39,"breadcrumbs":7,"title":4},"53":{"body":43,"breadcrumbs":6,"title":3},"54":{"body":92,"breadcrumbs":5,"title":2},"55":{"body":114,"breadcrumbs":5,"title":2},"56":{"body":77,"breadcrumbs":6,"title":3},"57":{"body":174,"breadcrumbs":6,"title":3},"58":{"body":146,"breadcrumbs":6,"title":3},"59":{"body":48,"breadcrumbs":5,"title":2},"6":{"body":71,"breadcrumbs":4,"title":1},"60":{"body":129,"breadcrumbs":5,"title":2},"61":{"body":0,"breadcrumbs":4,"title":1},"62":{"body":124,"breadcrumbs":4,"title":1},"63":{"body":79,"breadcrumbs":6,"title":3},"64":{"body":67,"breadcrumbs":4,"title":1},"65":{"body":182,"breadcrumbs":5,"title":2},"66":{"body":136,"breadcrumbs":4,"title":1},"67":{"body":110,"breadcrumbs":5,"title":2},"68":{"body":21,"breadcrumbs":4,"title":1},"69":{"body":116,"breadcrumbs":4,"title":1},"7":{"body":48,"breadcrumbs":4,"title":1},"70":{"body":5,"breadcrumbs":2,"title":1},"71":{"body":21,"breadcrumbs":2,"title":1},"72":{"body":79,"breadcrumbs":2,"title":1},"73":{"body":64,"breadcrumbs":3,"title":2},"74":{"body":41,"breadcrumbs":3,"title":2},"75":{"body":97,"breadcrumbs":2,"title":1},"76":{"body":82,"breadcrumbs":4,"title":3},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":137,"breadcrumbs":3,"title":1},"79":{"body":111,"breadcrumbs":3,"title":1},"8":{"body":97,"breadcrumbs":4,"title":1},"80":{"body":162,"breadcrumbs":6,"title":4},"81":{"body":44,"breadcrumbs":4,"title":2},"82":{"body":44,"breadcrumbs":4,"title":2},"83":{"body":137,"breadcrumbs":6,"title":2},"84":{"body":7,"breadcrumbs":6,"title":2},"85":{"body":34,"breadcrumbs":6,"title":3},"86":{"body":42,"breadcrumbs":4,"title":1},"87":{"body":67,"breadcrumbs":7,"title":4},"88":{"body":64,"breadcrumbs":7,"title":4},"89":{"body":65,"breadcrumbs":5,"title":2},"9":{"body":0,"breadcrumbs":4,"title":1},"90":{"body":59,"breadcrumbs":7,"title":4},"91":{"body":40,"breadcrumbs":8,"title":5},"92":{"body":98,"breadcrumbs":5,"title":2},"93":{"body":187,"breadcrumbs":8,"title":3},"94":{"body":84,"breadcrumbs":6,"title":2},"95":{"body":80,"breadcrumbs":6,"title":2},"96":{"body":229,"breadcrumbs":6,"title":2},"97":{"body":51,"breadcrumbs":6,"title":2},"98":{"body":77,"breadcrumbs":6,"title":2},"99":{"body":54,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"Welcome to Move, a next generation language for secure asset programming. Its primary use case is in blockchain environments, where Move programs are used to construct state changes. Move allows developers to write programs that flexibly manage and transfer assets, while providing the security and protections against attacks on those assets. However, Move has been developed with use cases in mind outside a blockchain context as well. Move takes its cue from Rust by using resource types with move (hence the name) semantics as an explicit representation of digital assets, such as currency.","breadcrumbs":"The Move Reference » The Move Reference","id":"0","title":"The Move Reference"},"1":{"body":"Modules are the core program unit that define types along with functions that operate on these types. Struct types define the schema of Move's storage , and module functions define the rules interacting with values of those types. While modules themselves are also stored in storage, they are not accessible from within a Move program. In a blockchain environment, the modules are stored on chain in a process typically referred to as \"publishing\". After being published, entry and public functions can be invoked according to the rules of that particular Move instance.","breadcrumbs":"Modules » Modules","id":"1","title":"Modules"},"10":{"body":"Each of these types supports the same set of checked arithmetic operations. For all of these operations, both arguments (the left and right side operands) must be of the same type. If you need to operate over values of different types, you will need to first perform a cast . Similarly, if you expect the result of the operation to be too large for the integer type, perform a cast to a larger size before performing the operation. All arithmetic operations abort instead of behaving in a way that mathematical integers would not (e.g., overflow, underflow, divide-by-zero). Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0","breadcrumbs":"Primitive Types » Integers » Arithmetic","id":"10","title":"Arithmetic"},"100":{"body":"Patterns are not expressions, but they are nevertheless typed. This means that the type of a pattern must match the type of the value it matches. For example, the pattern 1 has an integer type, the pattern MyEnum::Variant(1, true) has type MyEnum, the pattern MyStruct { x, y } has type MyStruct, and OtherStruct { x: true, y: 1} has type OtherStruct. If you try to match on an expression that differs from the type of the pattern in the match, this will result in a type error. For example: match (1) { // The `true` literal pattern is of type `bool` so this is a type error. true => 1, // TYPE ERROR: expected type u64, found bool _ => 2,\n} Similarly, the following would also result in a type error because MyEnum and MyStruct are different types: match (MyStruct { x: 0, y: 0 }) { MyEnum::Variant(..) => 1, // TYPE ERROR: expected type MyEnum, found MyStruct\n}","breadcrumbs":"Control Flow » Patterm Matching » Pattern Typing","id":"100","title":"Pattern Typing"},"101":{"body":"Prior to delving into the specifics of pattern matching and what it means for a value to \"match\" a pattern, let's examine a few examples to provide an intuition for the concept. fun test_lit(x: u64): u8 { match (x) { 1 => 2, 2 => 3, _ => 4, }\n}\ntest_lit(1); // returns 2\ntest_lit(2); // returns 3\ntest_lit(3); // returns 4\ntest_lit(10); // returns 4 fun test_var(x: u64): u64 { match (x) { y => y, }\n}\ntest_var(1); // returns 1\ntest_var(2); // returns 2\ntest_var(3); // returns 3\n... const MyConstant: u64 = 10;\nfun test_constant(x: u64): u64 { match (x) { MyConstant => 1, _ => 2, }\n}\ntest_constant(MyConstant); // returns 1\ntest_constant(10); // returns 1\ntest_constant(20); // returns 2 fun test_or_pattern(x: u64): u64 { match (x) { 1 | 2 | 3 => 1, 4 | 5 | 6 => 2, _ => 3, }\n}\ntest_or_pattern(3); // returns 1\ntest_or_pattern(5); // returns 2\ntest_or_pattern(70); // returns 3 fun test_or_at_pattern(x: u64): u64 { match (x) { x @ (1 | 2 | 3) => x + 1, y @ (4 | 5 | 6) => y + 2, z => z + 3, }\n}\ntest_or_pattern(2); // returns 3\ntest_or_pattern(5); // returns 7\ntest_or_pattern(70); // returns 73 The most important thing to note from these examples is that a pattern matches a value if the value is equal to the pattern, and wildcard/variable patterns match anything. This is true for literals, variables, and constants. For example, in the test_lit function, the value 1 matches the pattern 1, the value 2 matches the pattern 2, and the value 3 matches the wildcard _. Similarly, in the test_var function, both the value 1 and the value 2 matches the pattern y. A variable x matches (or \"equals\") any value, and a wildcard _ matches any value (but only one value). Or-patterns are like a logical OR, where a value matches the pattern if it matches any of patterns in the or-pattern so p1 | p2 | p3 should be read \"matches p1, or p2, or p3\".","breadcrumbs":"Control Flow » Patterm Matching » Matching","id":"101","title":"Matching"},"102":{"body":"Pattern matching includes the concept of constructor patterns. These patterns allow you to inspect and access deep within both structs and enums, and are one of the most powerful parts of pattern matching. Constructor patterns, coupled with variable bindings, allow you to match on values by their structure, and pull out the parts of the value you care about for usage on the right-hand side of the match arm. Take the following: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 3\nf(MyEnum::OtherVariant(false, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 2)); // returns 4 This is saying that \"if x is MyEnum::Variant with the fields 1 and true, then return 1. If it is MyEnum::OtherVariant with any value for the first field, and 3 for the second, then return 2. If it is MyEnum::Variant with any fields, then return 3. Finally, if it is MyEnum::OtherVariant with any fields, then return 4\". You can also nest patterns. So, if you wanted to match either 1, 2, or 10, instead of just matching 1 in the previous MyEnum::Variant, you could do so with an or-pattern: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1 | 2 | 10, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 1\nf(MyEnum::Variant(10, true)); // returns 1\nf(MyEnum::Variant(10, false)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Matching Constructors","id":"102","title":"Matching Constructors"},"103":{"body":"Additionally, match bindings are subject to the same ability restrictions as other aspects of Move. In particular, the compiler will signal an error if you try to match a value (not-reference) without drop using a wildcard, as the wildcard expects to drop the value. Similarly, if you bind a non-drop value using a binder, it must be used in the right-hand side of the match arm. In addition, if you fully destruct that value, you have unpacked it, matching the semantics of non-drop struct unpacking . See the abilities section on drop for more details about the drop capability. public struct NonDrop(u64) fun drop_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, _ => 2 // ERROR: cannot wildcard match on a non-droppable value }\n} fun destructure_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, NonDrop(_) => 2 // OK! }\n} fun use_nondrop(x: NonDrop): NonDrop { match (x) { NonDrop(1) => NonDrop(8), x => x }\n}","breadcrumbs":"Control Flow » Patterm Matching » Ability Constraints","id":"103","title":"Ability Constraints"},"104":{"body":"The match expression in Move must be exhaustive : every possible value of the type being matched must be covered by one of the patterns in one of the match's arms. If the series of match arms is not exhaustive, the compiler will raise an error. Note that any arm with a guard expression does not contribute to match exhaustion, as it might fail to match at runtime. As an example, a match on a u8 is exhaustive only if it matches on every number from 0 to 255 inclusive, unless there is a wildcard or variable pattern present. Similarly, a match on a bool would need to match on both true and false, unless there is a wildcard or variable pattern present. For structs, because there is only one type of constructor for the type, only one constructor needs to be matched, but the fields within the struct need to be matched exhaustively as well. Conversely, enums may define multiple variants, and each variant must be matched (including any sub-fields) for the match to be considered exhaustive. Because underscores and variables are wildcards that match anything, they count as matching all values of the type they are matching on in that position. Additionally, the multi-arity wildcard pattern .. can be used to match on multiple values within a struct or enum variant. To see some examples of non-exhaustive matches, consider the following: public enum MyEnum { Variant(u64, bool), OtherVariant(bool, u64),\n} public struct Pair(T, T) fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // ERROR: not exhaustive as the value `MyEnum::OtherVariant(_, 4)` is not matched. }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // ERROR: not exhaustive as the value `Pair(false, true)` is not matched. }\n} These examples can then be made exhaustive by adding a wildcard pattern to the end of the match arm, or by fully matching on the remaining values: fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // Now exhaustive since this will match all values of MyEnum::OtherVariant MyEnum::OtherVariant(..) => 2, }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // Now exhaustive since this will match all values of Pair Pair(false, true) => 1, }\n}","breadcrumbs":"Control Flow » Patterm Matching » Exhaustiveness","id":"104","title":"Exhaustiveness"},"105":{"body":"As previously mentioned, you can add a guard to a match arm by adding an if clause after the pattern. This guard will run after the pattern has been matched but before the expression on the right hand side of the arrow is evaluated. If the guard expression evaluates to true then the expression on the right hand side of the arrow will be evaluated, if it evaluates to false then it will be considered a failed match and the next match arm in the match expression will be checked. fun match_with_guard(x: u64): u64 { match (x) { 1 if (false) => 1, 1 => 2, _ => 3, }\n} match_with_guard(1); // returns 2\nmatch_with_guard(0); // returns 3 Guard expressions can reference variables bound in the pattern during evaluation. However, note that variables are only available as immutable reference in guards regardless of the pattern being matched -- even if there are mutability specifiers on the variable or if the pattern is being matched by value. fun incr(x: &mut u64) { *x = *x + 1;\n} fun match_with_guard_incr(x: u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} fun match_with_guard_incr2(x: &mut u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} Additionally, it is important to note any match arms that have guard expressions will not be considered either for exhaustivity purposes because the compiler has no way of evaluating the guard expression statically.","breadcrumbs":"Control Flow » Patterm Matching » Guards","id":"105","title":"Guards"},"106":{"body":"There are some restrictions on when the .. and mut pattern modifiers can be used in a pattern.","breadcrumbs":"Control Flow » Patterm Matching » Limitations on Specific Patterns","id":"106","title":"Limitations on Specific Patterns"},"107":{"body":"A mut modifier can be placed on a variable pattern to specify that the variable is to be mutated in the right-hand expression of the match arm. Note that since the mut modifier only signifies that the variable is to be mutated, not the underlying data, this can be used on all types of match (by value, immutable reference, and mutable reference). Note that the mut modifier can only be applied to variables, and not other types of patterns. public struct MyStruct(u64) fun top_level_mut(x: MyStruct) { match (x) { mut MyStruct(y) => 1, // ERROR: cannot use mut on a non-variable pattern }\n} fun mut_on_immut(x: &MyStruct): u64 { match (x) { MyStruct(mut y) => { y = &(*y + 1); *y } }\n} fun mut_on_value(x: MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} fun mut_on_mut(x: &mut MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} let mut x = MyStruct(1); mut_on_mut(&mut x); // returns 2\nx.0; // returns 2 mut_on_immut(&x); // returns 3\nx.0; // returns 2 mut_on_value(x); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Mutability Usage","id":"107","title":"Mutability Usage"},"108":{"body":"The .. pattern can only be used within a constructor pattern as a wildcard that matches any number of fields -- the the compiler expands the .. to inserting _ in any missing fields in the constructor pattern (if any). So MyStruct(_, _, _) is the same as MyStruct(..), MyStruct(1, _, _) is the same as MyStruct(1, ..). Because of this, there are some restrictions on how, and where the .. pattern can be used: It can only be used once within the constructor pattern; In positional arguments it can be used at the beginning, middle, or end of the patterns within the constructor; In named arguments it can only be used at the end of the patterns within the constructor; public struct MyStruct(u64, u64, u64, u64) has drop; public struct MyStruct2 { x: u64, y: u64, z: u64, w: u64,\n} fun wild_match(x: MyStruct) { match (x) { MyStruct(.., 1) => 1, // OK! The `..` pattern can be used at the begining of the constructor pattern MyStruct(1, ..) => 2, // OK! The `..` pattern can be used at the end of the constructor pattern MyStruct(1, .., 1) => 3, // OK! The `..` pattern can be used at the middle of the constructor pattern MyStruct(1, .., 1, 1) => 4, MyStruct(..) => 5, }\n} fun wild_match2(x: MyStruct2) { match (x) { MyStruct2 { x: 1, .. } => 1, MyStruct2 { x: 1, w: 2 .. } => 2, MyStruct2 { .. } => 3, }\n}","breadcrumbs":"Control Flow » Patterm Matching » .. Usage","id":"108","title":".. Usage"},"109":{"body":"Functions are declared inside of modules and define the logic and behavior of the module. Functions can be reused, either being called from other functions or as entry points for execution.","breadcrumbs":"Functions » Functions","id":"109","title":"Functions"},"11":{"body":"The integer types support the following bitwise operations that treat each number as a series of individual bits, either 0 or 1, instead of as numerical integer values. Bitwise operations do not abort. Syntax Operation Description & bitwise and Performs a boolean and for each bit pairwise | bitwise or Performs a boolean or for each bit pairwise ^ bitwise xor Performs a boolean exclusive or for each bit pairwise","breadcrumbs":"Primitive Types » Integers » Bitwise","id":"11","title":"Bitwise"},"110":{"body":"Functions are declared with the fun keyword followed by the function name, type parameters, parameters, a return type, and finally the function body. ? ? fun <[type_parameters: constraint],*>([identifier: type],*): For example fun foo(x: u64, y: T1, z: T2): (T2, T1, u64) { (z, y, x) }","breadcrumbs":"Functions » Declaration","id":"110","title":"Declaration"},"111":{"body":"Module functions, by default, can only be called within the same module. These internal (sometimes called private) functions cannot be called from other modules or as entry points. module a::m { fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} To allow access from other modules, the function must be declared public or public(package). Tangential to visibility, an entry function can be called as an entry point for execution. public visibility A public function can be called by any function defined in any module. As shown in the following example, a public function can be called by: other functions defined in the same module, functions defined in another module, or as an entry point for execution. module a::m { public fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // valid }\n} Fore more details on the entry point to execution see the section below . public(package) visibility The public(package) visibility modifier is a more restricted form of the public modifier to give more control about where a function can be used. A public(package) function can be called by: other functions defined in the same module, or other functions defined in the same package (the same address) module a::m { public(package) fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // valid, also in `a` }\n} module b::other { fun calls_m_foo(): u64 { b::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' can only be called from a module in `a` }\n} DEPRECATED public(friend) visibility Before the addition of public(package), public(friend) was used to allow limited public access to functions in the same package, but where the list of allowed modules had to be explicitly enumerated by the callee's module. see Friends for more details.","breadcrumbs":"Functions » Visibility","id":"111","title":"Visibility"},"112":{"body":"In addition to public functions, you might have some functions in your modules that you want to use as the entry point to execution. The entry modifier is designed to allow module functions to initiate execution, without having to expose the functionality to other modules. Essentially, the combination of pbulic and entry functions define the \"main\" functions of a module, and they specify where Move programs can start executing. Keep in mind though, an entry function can still be called by other Move functions. So while they can serve as the start of a Move program, they aren't restricted to that case. For example: module a::m { entry fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid!\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} entry functions may have restrictions on their parameters and return types. Although, these restrictions are specific to each individual deployment of Move. The documentation for entry functions on Sui can be found here. . To enable easier testing, entry functions can be called from #[test] and #[test_only] contexts. module a::m { entry fun foo(): u64 { 0 }\n}\nmodule a::m_test { #[test] fun my_test(): u64 { a::m::foo() } // valid! #[test_only] fun my_test_helper(): u64 { a::m::foo() } // valid!\n}","breadcrumbs":"Functions » entry modifier","id":"112","title":"entry modifier"},"113":{"body":"Function names can start with letters a to z. After the first character, function names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. fun fOO() {}\nfun bar_42() {}\nfun bAZ_19() {}","breadcrumbs":"Functions » Name","id":"113","title":"Name"},"114":{"body":"After the name, functions can have type parameters fun id(x: T): T { x }\nfun example(x: T1, y: T2): (T1, T1, T2) { (copy x, x, y) } For more details, see Move generics .","breadcrumbs":"Functions » Type Parameters","id":"114","title":"Type Parameters"},"115":{"body":"Functions parameters are declared with a local variable name followed by a type annotation fun add(x: u64, y: u64): u64 { x + y } We read this as x has type u64 A function does not have to have any parameters at all. fun useless() { } This is very common for functions that create new or empty data structures module a::example { public struct Counter { count: u64 } fun new_counter(): Counter { Counter { count: 0 } }\n}","breadcrumbs":"Functions » Parameters","id":"115","title":"Parameters"},"116":{"body":"After the parameters, a function specifies its return type. fun zero(): u64 { 0 } Here : u64 indicates that the function's return type is u64. Using tuples , a function can return multiple values: fun one_two_three(): (u64, u64, u64) { (0, 1, 2) } If no return type is specified, the function has an implicit return type of unit (). These functions are equivalent: fun just_unit(): () { () }\nfun just_unit() { () }\nfun just_unit() { } As mentioned in the tuples section , these tuple \"values\" do not exist as runtime values. This means that a function that returns unit () does not return any value during execution.","breadcrumbs":"Functions » Return type","id":"116","title":"Return type"},"117":{"body":"A function's body is an expression block. The return value of the function is the last value in the sequence fun example(): u64 { let x = 0; x = x + 1; x // returns 'x'\n} See the section below for more information on returns For more information on expression blocks, see Move variables .","breadcrumbs":"Functions » Function body","id":"117","title":"Function body"},"118":{"body":"Some functions do not have a body specified, and instead have the body provided by the VM. These functions are marked native. Without modifying the VM source code, a programmer cannot add new native functions. Furthermore, it is the intent that native functions are used for either standard library code or for functionality needed for the given Move environment. Most native functions you will likely see are in standard library code, such as vector module std::vector { native public fun length(v: &vector): u64; ...\n}","breadcrumbs":"Functions » Native Functions","id":"118","title":"Native Functions"},"119":{"body":"When calling a function, the name can be specified either through an alias or fully qualified module a::example { public fun zero(): u64 { 0 }\n} module b::other { use a::example::{Self, zero}; fun call_zero() { // With the `use` above all of these calls are equivalent a::example::zero(); example::zero(); zero(); }\n} When calling a function, an argument must be given for every parameter. module a::example { public fun takes_none(): u64 { 0 } public fun takes_one(x: u64): u64 { x } public fun takes_two(x: u64, y: u64): u64 { x + y } public fun takes_three(x: u64, y: u64, z: u64): u64 { x + y + z }\n} module b::other { fun call_all() { a::example::takes_none(); a::example::takes_one(0); a::example::takes_two(0, 1); a::example::takes_three(0, 1, 2); }\n} Type arguments can be either specified or inferred. Both calls are equivalent. module aexample { public fun id(x: T): T { x }\n} module b::other { fun call_all() { a::example::id(0); a::example::id(0); }\n} For more details, see Move generics .","breadcrumbs":"Functions » Calling","id":"119","title":"Calling"},"12":{"body":"Similar to the bitwise operations, each integer type supports bit shifts. But unlike the other operations, the righthand side operand (how many bits to shift by) must always be a u8 and need not match the left side operand (the number you are shifting). Bit shifts can abort if the number of bits to shift by is greater than or equal to 8, 16, 32, 64, 128 or 256 for u8, u16, u32, u64, u128 and u256 respectively. Syntax Operation Aborts if << shift left Number of bits to shift by is greater than the size of the integer type >> shift right Number of bits to shift by is greater than the size of the integer type","breadcrumbs":"Primitive Types » Integers » Bit Shifts","id":"12","title":"Bit Shifts"},"120":{"body":"The result of a function, its \"return value\", is the final value of its function body. For example fun add(x: u64, y: u64): u64 { x + y\n} The return value here is the result of x + y. As mentioned above , the function's body is an expression block . The expression block can sequence various statements, and the final expression in the block will be be the value of that block fun double_and_add(x: u64, y: u64): u64 { let double_x = x * 2; let double_y = y * 2; double_x + double_y\n} The return value here is the result of double_x + double_y","breadcrumbs":"Functions » Returning values","id":"120","title":"Returning values"},"121":{"body":"A function implicitly returns the value that its body evaluates to. However, functions can also use the explicit return expression: fun f1(): u64 { return 0 }\nfun f2(): u64 { 0 } These two functions are equivalent. In this slightly more involved example, the function subtracts two u64 values, but returns early with 0 if the second value is too large: fun safe_sub(x: u64, y: u64): u64 { if (y > x) return 0; x - y\n} Note that the body of this function could also have been written as if (y > x) 0 else x - y. However return really shines is in exiting deep within other control flow constructs. In this example, the function iterates through a vector to find the index of a given value: use std::vector;\nuse std::option::{Self, Option};\nfun index_of(v: &vector, target: &T): Option { let i = 0; let n = vector::length(v); while (i < n) { if (vector::borrow(v, i) == target) return option::some(i); i = i + 1 }; option::none()\n} Using return without an argument is shorthand for return (). That is, the following two functions are equivalent: fun foo() { return }\nfun foo() { return () }","breadcrumbs":"Functions » return expression","id":"121","title":"return expression"},"122":{"body":"A struct is a user-defined data structure containing typed fields. Structs can store any non-reference, non-tuple type, including other structs. Structs can be used to define all \"asset\" values or unrestricted values, where the operations performed on those values can be controlled by the struct's abilities . By default, structs are linear and ephemeral. By this we mean that they: cannot be copied, cannot be dropped, and cannot be stored in storage. This means that all values have to have ownership transferred (linear) and the values must be dealt with by the end of the program's execution (ephemeral). We can relax this behavior by giving the struct abilities which allow values to be copied or dropped and also to be stored in storage or to define storage schemas.","breadcrumbs":"Structs » Structs and Resources","id":"122","title":"Structs and Resources"},"123":{"body":"Structs must be defined inside a module, and the struct's fields can either be named or positional: module a::m { public struct Foo { x: u64, y: bool } public struct Bar {} public struct Baz { foo: Foo, } // ^ note: it is fine to have a trailing comma public struct PosFoo(u64, bool) public struct PosBar() public struct PosBaz(Foo)\n} Structs cannot be recursive, so the following definitions are invalid: public struct Foo { x: Foo }\n// ^ ERROR! recursive definition public struct A { b: B }\npublic struct B { a: A }\n// ^ ERROR! recursive definition public struct D(D)\n// ^ ERROR! recursive definition","breadcrumbs":"Structs » Defining Structs","id":"123","title":"Defining Structs"},"124":{"body":"As you may have noticed, all structs are declared as public. This means that the type of the struct can be referred to from any other module. However, the fields of the struct, and the ability to create or destroy the struct, are still internal to the module that defines the struct. In the future, we plan on adding to declare structs as public(package) or as internal, much like functions .","breadcrumbs":"Structs » Visibility","id":"124","title":"Visibility"},"125":{"body":"As mentioned above: by default, a struct declaration is linear and ephemeral. So to allow the value to be used in these ways (e.g., copied, dropped, stored in an object , or used to define a storable object ), structs can be granted abilities by annotating them with has : module a::m { public struct Foo has copy, drop { x: u64, y: bool }\n} The ability declaration can occur either before or after the struct's fields. However, only one or the other can be used, and not both. If declared after the struct's fields, the ability declaration must be terminated with a semicolon: module a::m { public struct PreNamedAbilities has copy, drop { x: u64, y: bool } public struct PostNamedAbilities { x: u64, y: bool } has copy, drop; public struct PostNamedAbilitiesInvalid { x: u64, y: bool } has copy, drop // ^ ERROR! missing semicolon public struct NamedInvalidAbilities has copy { x: u64, y: bool } has drop; // ^ ERROR! duplicate ability declaration public struct PrePositionalAbilities has copy, drop (u64, bool) public struct PostPositionalAbilities (u64, bool) has copy, drop; public struct PostPositionalAbilitiesInvalid (u64, bool) has copy, drop // ^ ERROR! missing semicolon public struct InvalidAbilities has copy (u64, bool) has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating a struct's abilities .","breadcrumbs":"Structs » Abilities","id":"125","title":"Abilities"},"126":{"body":"Structs must start with a capital letter A to Z. After the first letter, struct names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. public struct Foo {}\npublic struct BAR {}\npublic struct B_a_z_4_2 {}\npublic struct P_o_s_Foo() This naming restriction of starting with A to Z is in place to give room for future language features. It may or may not be removed later.","breadcrumbs":"Structs » Naming","id":"126","title":"Naming"},"127":{"body":"","breadcrumbs":"Structs » Using Structs","id":"127","title":"Using Structs"},"128":{"body":"Values of a struct type can be created (or \"packed\") by indicating the struct name, followed by value for each field. For a struct with named fields, the order of the fields does not matter, but the field name needs to be provided. For a struct with positional fields, the order of the fields must match the order of the fields in the struct definition, and it must be created using () instead of {} to enclose the parameters. module a::m { public struct Foo has drop { x: u64, y: bool } public struct Baz has drop { foo: Foo } public struct Positional(u64, bool) has drop; fun example() { let foo = Foo { x: 0, y: false }; let baz = Baz { foo: foo }; // Note: positional struct values are created using parentheses and // based on position instead of name. let pos = Positional(0, false); let pos_invalid = Positional(false, 0); // ^ ERROR! Fields are out of order and the types don't match. }\n} For structs with named fields, you can use the following shorthand if you have a local variable with the same name as the field: let baz = Baz { foo: foo };\n// is equivalent to\nlet baz = Baz { foo }; This is sometimes called \"field name punning\".","breadcrumbs":"Structs » Creating Structs","id":"128","title":"Creating Structs"},"129":{"body":"Struct values can be destroyed by binding or assigning them in patterns using similar syntax to constructing them. module a::m { public struct Foo { x: u64, y: bool } public struct Bar(Foo) public struct Baz {} public struct Qux() fun example_destroy_foo() { let foo = Foo { x: 3, y: false }; let Foo { x, y: foo_y } = foo; // ^ shorthand for `x: x` // two new bindings // x: u64 = 3 // foo_y: bool = false } fun example_destroy_foo_wildcard() { let foo = Foo { x: 3, y: false }; let Foo { x, y: _ } = foo; // only one new binding since y was bound to a wildcard // x: u64 = 3 } fun example_destroy_foo_assignment() { let x: u64; let y: bool; Foo { x, y } = Foo { x: 3, y: false }; // mutating existing variables x and y // x = 3, y = false } fun example_foo_ref() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &foo; // two new bindings // x: &u64 // y: &bool } fun example_foo_ref_mut() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &mut foo; // two new bindings // x: &mut u64 // y: &mut bool } fun example_destroy_bar() { let bar = Bar(Foo { x: 3, y: false }); let Bar(Foo { x, y }) = bar; // ^ nested pattern // two new bindings // x: u64 = 3 // y: bool = false } fun example_destroy_baz() { let baz = Baz {}; let Baz {} = baz; } fun example_destroy_qux() { let qux = Qux(); let Qux() = qux; }\n}","breadcrumbs":"Structs » Destroying Structs via Pattern Matching","id":"129","title":"Destroying Structs via Pattern Matching"},"13":{"body":"Integer types are the only types in Move that can use the comparison operators. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Comparison operations do not abort. Syntax Operation < less than > greater than <= less than or equal to >= greater than or equal to","breadcrumbs":"Primitive Types » Integers » Comparisons","id":"13","title":"Comparisons"},"130":{"body":"Fields of a struct can be accessed using the dot operator .. For structs with named fields, the fields can be accessed by their name: public struct Foo { x: u64, y: bool }\nlet foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true For positional structs, fields can be accessed by their position in the struct definition: public struct PosFoo(u64, bool)\nlet pos_foo = PosFoo(3, true);\nlet x = pos_foo.0; // x == 3\nlet y = pos_foo.1; // y == true Accessing struct fields without borrowing or copying them is subject to the field's ability constraints. For more details see the sections on borrowing structs and fields and reading and writing fields for more information.","breadcrumbs":"Structs » Accessing Struct Fields","id":"130","title":"Accessing Struct Fields"},"131":{"body":"The & and &mut operator can be used to create references to structs or fields. These examples include some optional type annotations (e.g., : &Foo) to demonstrate the type of operations. let foo = Foo { x: 3, y: true };\nlet foo_ref: &Foo = &foo;\nlet y: bool = foo_ref.y; // reading a field via a reference to the struct\nlet x_ref: &u64 = &foo.x; // borrowing a field by extending a reference to the struct let x_ref_mut: &mut u64 = &mut foo.x;\n*x_ref_mut = 42; // modifying a field via a mutable reference It is possible to borrow inner fields of nested structs: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo); let x_ref = &bar.0.x; You can also borrow a field via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &foo;\nlet x_ref = &foo_ref.x;\n// this has the same effect as let x_ref = &foo.x","breadcrumbs":"Structs » Borrowing Structs and Fields","id":"131","title":"Borrowing Structs and Fields"},"132":{"body":"If you need to read and copy a field's value, you can then dereference the borrowed field: let foo = Foo { x: 3, y: true };\nlet bar = Bar(copy foo);\nlet x: u64 = *&foo.x;\nlet y: bool = *&foo.y;\nlet foo2: Foo = *&bar.0; More canonically, the dot operator can be used to read fields of a struct without any borrowing. As is true with dereferencing , the field type must have the copy ability . let foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true Dot operators can be chained to access nested fields: let bar = Bar(Foo { x: 3, y: true });\nlet x = baz.0.x; // x = 3; However, this is not permitted for fields that contain non-primitive types, such a vector or another struct: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo);\nlet foo2: Foo = *&bar.0;\nlet foo3: Foo = bar.0; // error! must add an explicit copy with *& We can mutably borrow a field to a struct to assign it a new value: let mut foo = Foo { x: 3, y: true };\n*&mut foo.x = 42; // foo = Foo { x: 42, y: true }\n*&mut foo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\n*&mut bar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\n*&mut bar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) Similar to dereferencing, we can instead directly use the dot operator to modify a field. And in both cases, the field type must have the drop ability . let mut foo = Foo { x: 3, y: true };\nfoo.x = 42; // foo = Foo { x: 42, y: true }\nfoo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\nbar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\nbar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) The dot syntax for assignment also works via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &mut foo;\nfoo_ref.x = foo_ref.x + 1;","breadcrumbs":"Structs » Reading and Writing Fields","id":"132","title":"Reading and Writing Fields"},"133":{"body":"Most struct operations on a struct type T can only be performed inside the module that declares T: Struct types can only be created (\"packed\"), destroyed (\"unpacked\") inside the module that defines the struct. The fields of a struct are only accessible inside the module that defines the struct. Following these rules, if you want to modify your struct outside the module, you will need to provide public APIs for them. The end of the chapter contains some examples of this. However as stated in the visibility section above , struct types are always visible to another module module a::m { public struct Foo has drop { x: u64 } public fun new_foo(): Foo { Foo { x: 42 } }\n} module a::n { use a::m::Foo; public struct Wrapper has drop { foo: Foo // ^ valid the type is public } fun f1(foo: Foo) { let x = foo.x; // ^ ERROR! cannot access fields of `Foo` outside of `a::m` } fun f2() { let foo_wrapper = Wrapper { foo: m::new_foo() }; // ^ valid the function is public }\n}","breadcrumbs":"Structs » Privileged Struct Operations","id":"133","title":"Privileged Struct Operations"},"134":{"body":"As mentioned above in Defining Structs , structs are by default linear and ephemeral. This means they cannot be copied or dropped. This property can be very useful when modeling real world assets like money, as you do not want money to be duplicated or get lost in circulation. module a::m { public struct Foo { x: u64 } public fun copying() { let foo = Foo { x: 100 }; let foo_copy = copy foo; // ERROR! 'copy'-ing requires the 'copy' ability let foo_ref = &foo; let another_copy = *foo_ref // ERROR! dereference requires the 'copy' ability } public fun destroying_1() { let foo = Foo { x: 100 }; // error! when the function returns, foo still contains a value. // This destruction requires the 'drop' ability } public fun destroying_2(f: &mut Foo) { *f = Foo { x: 100 } // error! // destroying the old value via a write requires the 'drop' ability }\n} To fix the example fun destroying_1, you would need to manually \"unpack\" the value: module a::m { public struct Foo { x: u64 } public fun destroying_1_fixed() { let foo = Foo { x: 100 }; let Foo { x: _ } = foo; }\n} Recall that you are only able to deconstruct a struct within the module in which it is defined. This can be leveraged to enforce certain invariants in a system, for example, conservation of money. If on the other hand, your struct does not represent something valuable, you can add the abilities copy and drop to get a struct value that might feel more familiar from other programming languages: module a::m { public struct Foo has copy, drop { x: u64 } public fun run() { let foo = Foo { x: 100 }; let foo_copy = foo; // ^ this code copies foo, // whereas `let x = move foo` would move foo let x = foo.x; // x = 100 let x_copy = foo_copy.x; // x = 100 // both foo and foo_copy are implicitly discarded when the function returns }\n}","breadcrumbs":"Structs » Ownership","id":"134","title":"Ownership"},"135":{"body":"Structs can be used to define storage schemas, but the details are different per deployment of Move. See the documentation for the key ability and Sui objects for more details.","breadcrumbs":"Structs » Storage","id":"135","title":"Storage"},"136":{"body":"An enum is a user-defined data structure containing one or more variants . Each variant can optionally contain typed fields. The number, and types of these fields can differ for each variant in the enumeration. Fields in enums can store any non-reference, non-tuple type, including other structs or enums. As a simple example, consider the following enum definition in Move: public enum Action { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64),\n} This declares an enum Action that represents different actions that can be taken by a game -- you can Stop, Pause for a given duration, MoveTo a specific location, or Jump to a specific height. Similar to structs, enums can have abilities that control what operations can be performed on them. It is important to note however that enums cannot have the key ability since they cannot be top-level objects.","breadcrumbs":"Enums » Enumerations","id":"136","title":"Enumerations"},"137":{"body":"Enums must be defined in a module, an enum must contain at least one variant, and each variant of an enum can either have no fields, positional fields, or named fields. Here are some examples of each: module a::m { public enum Foo has drop { VariantWithNoFields, // ^ note: it is fine to have a trailing comma after variant declarations } public enum Bar has copy, drop { VariantWithPositionalFields(u64, bool), } public enum Baz has drop { VariantWithNamedFields { x: u64, y: bool, z: Bar }, }\n} Enums cannot be recursive in any of their variants, so the following definitions of an enum are not allowed because they would be recursive in at least one variant. Incorrect: module a::m { public enum Foo { Recursive(Foo), // ^ error: recursive enum variant } public enum List { Nil, Cons { head: u64, tail: List }, // ^ error: recursive enum variant } public enum BTree { Leaf(T), Node { left: BTree, right: BTree }, // ^ error: recursive enum variant } // Mutually recursive enums are also not allowed public enum MutuallyRecursiveA { Base, Other(MutuallyRecursiveB), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant } public enum MutuallyRecursiveB { Base, Other(MutuallyRecursiveA), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant }\n}","breadcrumbs":"Enums » Defining Enums","id":"137","title":"Defining Enums"},"138":{"body":"All enums are declared as public. This means that the type of the enum can be referred to from any other module. However, the variants of the enum, the fields within each variant, and the ability to create or destroy variants of the enum are internal to the module that defines the enum.","breadcrumbs":"Enums » Visibility","id":"138","title":"Visibility"},"139":{"body":"Just like with structs, by default an enum declaration is linear and ephemeral. To use an enum value in a non-linear or non-ephemeral way -- i.e., copied, dropped, or stored in an object -- you need to grant it additional abilities by annotating them with has : module a::m { public enum Foo has copy, drop { VariantWithNoFields, }\n} The ability declaration can occur either before or after the enum's variants, however only one or the other can be used, and not both. If declared after the variants, the ability declaration must be terminated with a semicolon: module a::m { public enum PreNamedAbilities has copy, drop { Variant } public enum PostNamedAbilities { Variant } has copy, drop; public enum PostNamedAbilitiesInvalid { Variant } has copy, drop // ^ ERROR! missing semicolon public enum NamedInvalidAbilities has copy { Variant } has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating abilities .","breadcrumbs":"Enums » Abilities","id":"139","title":"Abilities"},"14":{"body":"Like all types with drop , all integer types support the \"equal\" and \"not equal\" operations. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Equality operations do not abort. Syntax Operation == equal != not equal For more details see the section on equality","breadcrumbs":"Primitive Types » Integers » Equality","id":"14","title":"Equality"},"140":{"body":"Enums and variants within enums must start with a capital letter A to Z. After the first letter, enum names can contain underscores _, lowercase letters a to z, uppercase letters A to Z, or digits 0 to 9. public enum Foo { Variant }\npublic enum BAR { Variant }\npublic enum B_a_z_4_2 { V_a_riant_0 } This naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Enums » Naming","id":"140","title":"Naming"},"141":{"body":"","breadcrumbs":"Enums » Using Enums","id":"141","title":"Using Enums"},"142":{"body":"Values of an enum type can be created (or \"packed\") by indicating a variant of the enum, followed by a value for each field in the variant. The variant name must always be qualified by the enum's name. Similarly to structs, for a variant with named fields, the order of the fields does not matter but the field names need to be provided. For a variant with positional fields, the order of the fields matters and the order of the fields must match the order in the variant declaration. It must also be created using () instead of {}. If the variant has no fields, the variant name is sufficient and no () or {} needs to be used. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public enum Other has drop { Stop(u64), } fun example() { // Note: The `Stop` variant of `Action` doesn't have fields so no parentheses or curlies are needed. let stop = Action::Stop; let pause = Action::Pause { duration: 10 }; let move_to = Action::MoveTo { x: 10, y: 20 }; let jump = Action::Jump(10); // Note: The `Stop` variant of `Other` does have positional fields so we need to supply them. let other_stop = Other::Stop(10); }\n} For variants with named fields you can also use the shorthand syntax that you might be familiar with from structs to create the variant: let duration = 10; let pause = Action::Pause { duration: duration };\n// is equivalent to\nlet pause = Action::Pause { duration };","breadcrumbs":"Enums » Creating Enum Variants","id":"142","title":"Creating Enum Variants"},"143":{"body":"Since enum values can take on different shapes, dot access to fields of variants is not allowed like it is for struct fields. Instead, to access fields within a variant -- either by value, or immutable or mutable reference -- you must use pattern matching. You can pattern match on Move values by value, immutable reference, and mutable reference. When pattern matching by value, the value is moved into the match arm. When pattern matching by reference, the value is borrowed into the match arm (either immutably or mutably). We'll go through a brief description of pattern matching using match here, but for more information on pattern matching using match in Move see the Pattern Matching section. A match statement is used to pattern match on a Move value and consists of a number of match arms . Each match arm consists of a pattern, an arrow =>, and an expression, followed by a comma ,. The pattern can be a struct, enum variant, binding (x, y), wildcard (_ or ..), constant (ConstValue), or literal value (true, 42, and so on). The value is matched against each pattern from the top-down, and will match the first pattern that structurally matches the value. Once the value is matched, the expression on the right hand side of the => is executed. Additionally, match arms can have optional guards that are checked after the pattern matches but before the expression is executed. Guards are specified by the if keyword followed by an expression that must evaluate to a boolean value before the =>. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public struct GameState { // Fields containing a game state character_x: u64, character_y: u64, character_height: u64, // ... } fun perform_action(stat: &mut GameState, action: Action) { match (action) { // Handle the `Stop` variant Action::Stop => state.stop(), // Handle the `Pause` variant // If the duration is 0, do nothing Action::Pause { duration: 0 } => (), Action::Pause { duration } => state.pause(duration), // Handle the `MoveTo` variant Action::MoveTo { x, y } => state.move_to(x, y), // Handle the `Jump` variant // if the game disallows jumps then do nothing Action::Jump(_) if (state.jumps_not_allowed()) => (), // otherwise, jump to the specified height Action::Jump(height) => state.jump(height), } }\n} To see how to pattern match on an enum to update values within it mutably, let's take the following example of a simple enum that has two variants, each with a single field. We can then write two functions, one that only increments the value of the first variant, and another that only increments the value of the second variant: module a::m { public enum SimpleEnum { Variant1(u64), Variant2(u64), } public fun incr_enum_variant1(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant1(mut value) => *value += 1, _ => (), } } public fun incr_enum_variant2(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant2(mut value) => *value += 1, _ => (), } }\n} Now, if we have a value of SimpleEnum we can use the functions to increment the value of this variant: let mut x = SimpleEnum::Variant1(10);\nincr_enum_variant1(&mut x);\nassert!(x == SimpleEnum::Variant1(11));\n// Doesn't increment since it increments a different variant\nincr_enum_variant2(&mut x);\nassert!(x == SimpleEnum::Variant1(11)); When pattern matching on a Move value that does not have the drop ability, the value must be consumed or destructured in each match arm. If the value is not consumed or destructured in a match arm, the compiler will raise an error. This is to ensure that all possible values are handled in the match statement. As an example, consider the following code: module a::m { public enum X { Variant { x: u64 } } public fun bad(x: X) { match x { _ => () // ^ ERROR! value of type `X` is not consumed or destructured in this match arm } }\n} To properly handle this, you will need to destructure X and all its variants in the match's arm(s): module a::m { public enum X { Variant { x: u64 } } public fun good(x: X) { match x { // OK! Compiles since the value is destructured X::Variant { x: _ } => () } }\n}","breadcrumbs":"Enums » Pattern Matching Enum Variants and Destructuring","id":"143","title":"Pattern Matching Enum Variants and Destructuring"},"144":{"body":"As long as the enum has the drop ability, you can overwrite the value of an enum with a new value of the same type just as you might with other values in Move. module a::m { public enum X has drop { A(u64), B(u64), } public fun overwrite_enum(x: &mut X) { *x = X::A(10); }\n} let mut x = X::B(20);\noverwrite_enum(&mut x);\nassert!(x == X::A(10));","breadcrumbs":"Enums » Overwriting to Enum Values","id":"144","title":"Overwriting to Enum Values"},"145":{"body":"Constants are a way of giving a name to shared, static values inside of a module. The constant's value must be known at compilation. The constant's value is stored in the compiled module. And each time the constant is used, a new copy of that value is made.","breadcrumbs":"Constants » Constants","id":"145","title":"Constants"},"146":{"body":"Constant declarations begin with the const keyword, followed by a name, a type, and a value. const : = ; For example module a::example { const MY_ADDRESS: address = @a; public fun permissioned(addr: address) { assert!(addr == MY_ADDRESS, 0); }\n}","breadcrumbs":"Constants » Declaration","id":"146","title":"Declaration"},"147":{"body":"Constants must start with a capital letter A to Z. After the first letter, constant names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. const FLAG: bool = false;\nconst EMyErrorCode: u64 = 0;\nconst ADDRESS_42: address = @0x42; Even though you can use letters a to z in a constant. The general style guidelines are to use just uppercase letters A to Z, with underscores _ between each word. For error codes, we use E as a prefix and then upper camel case (also known as Pascal case) for the rest of the name, as seen in EMyErrorCode. The current naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Constants » Naming","id":"147","title":"Naming"},"148":{"body":"public or public(package) constants are not currently supported. const values can be used only in the declaring module. However, as a convenience, they can be used across modules in unit tests attributes .","breadcrumbs":"Constants » Visibility","id":"148","title":"Visibility"},"149":{"body":"Currently, constants are limited to the primitive types bool, u8, u16, u32, u64, u128, u256, address, and vector, where T is the valid type for a constant.","breadcrumbs":"Constants » Valid Expressions","id":"149","title":"Valid Expressions"},"15":{"body":"Integer types of one size can be cast to integer types of another size. Integers are the only types in Move that support casting. Casts do not truncate. Casting aborts if the result is too large for the specified type. Syntax Operation Aborts if (e as T) Cast integer expression e into an integer type T e is too large to represent as a T Here, the type of e must be 8, 16, 32, 64, 128 or 256 and T must be u8, u16, u32, u64, u128, or u256. For example: (x as u8) (y as u16) (873u16 as u32) (2u8 as u64) (1 + 3 as u128) (4/2 + 12345 as u256)","breadcrumbs":"Primitive Types » Integers » Casting","id":"15","title":"Casting"},"150":{"body":"Commonly, consts are assigned a simple value, or literal, of their type. For example const MY_BOOL: bool = false;\nconst MY_ADDRESS: address = @0x70DD;\nconst BYTES: vector = b\"hello world\";\nconst HEX_BYTES: vector = x\"DEADBEEF\";","breadcrumbs":"Constants » Values","id":"150","title":"Values"},"151":{"body":"In addition to literals, constants can include more complex expressions, as long as the compiler is able to reduce the expression to a value at compile time. Currently, equality operations, all boolean operations, all bitwise operations, and all arithmetic operations can be used. const RULE: bool = true && false;\nconst CAP: u64 = 10 * 100 + 1;\nconst SHIFTY: u8 = { (1 << 1) * (1 << 2) * (1 << 3) * (1 << 4)\n};\nconst HALF_MAX: u128 = 340282366920938463463374607431768211455 / 2;\nconst REM: u256 = 57896044618658097711785492504343953926634992332820282019728792003956564819968 % 654321;\nconst EQUAL: bool = 1 == 1; If the operation would result in a runtime exception, the compiler will give an error that it is unable to generate the constant's value const DIV_BY_ZERO: u64 = 1 / 0; // ERROR!\nconst SHIFT_BY_A_LOT: u64 = 1 << 100; // ERROR!\nconst NEGATIVE_U64: u64 = 0 - 1; // ERROR! Additionally, constants can refer to other constants within the same module. const BASE: u8 = 4;\nconst SQUARE: u8 = BASE * BASE; Note though, that any cycle in the constant definitions results in an error. const A: u16 = B + 1;\nconst B: u16 = A + 1; // ERROR!","breadcrumbs":"Constants » Complex Expressions","id":"151","title":"Complex Expressions"},"152":{"body":"Generics can be used to define functions and structs over different input data types. This language feature is sometimes referred to as parametric polymorphism. In Move, we will often use the term generics interchangeably with type parameters and type arguments . Generics are commonly used in library code, such as in vector , to declare code that works over any possible type (that satisfies the specified constraints). This sort of parameterization allows you to reuse the same implementation across multiple types and situations.","breadcrumbs":"Generics » Generics","id":"152","title":"Generics"},"153":{"body":"Both functions and structs can take a list of type parameters in their signatures, enclosed by a pair of angle brackets <...>.","breadcrumbs":"Generics » Declaring Type Parameters","id":"153","title":"Declaring Type Parameters"},"154":{"body":"Type parameters for functions are placed after the function name and before the (value) parameter list. The following code defines a generic identity function that takes a value of any type and returns that value unchanged. fun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} Once defined, the type parameter T can be used in parameter types, return types, and inside the function body.","breadcrumbs":"Generics » Generic Functions","id":"154","title":"Generic Functions"},"155":{"body":"Type parameters for structs are placed after the struct name, and can be used to name the types of the fields. public struct Foo has copy, drop { x: T } public struct Bar has copy, drop { x: T1, y: vector,\n} Note that type parameters do not have to be used","breadcrumbs":"Generics » Generic Structs","id":"155","title":"Generic Structs"},"156":{"body":"","breadcrumbs":"Generics » Type Arguments","id":"156","title":"Type Arguments"},"157":{"body":"When calling a generic function, one can specify the type arguments for the function's type parameters in a list enclosed by a pair of angle brackets. fun foo() { let x = id(true);\n} If you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Calling Generic Functions","id":"157","title":"Calling Generic Functions"},"158":{"body":"Similarly, one can attach a list of type arguments for the struct's type parameters when constructing or destructing values of generic types. fun foo() { // type arguments on construction let foo = Foo { x: true }; let bar = Bar { x: 0, y: vector[] }; // type arguments on destruction let Foo { x } = foo; let Bar { x, y } = bar;\n} In any case if you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Using Generic Structs","id":"158","title":"Using Generic Structs"},"159":{"body":"If you specify the type arguments and they conflict with the actual values supplied, an error will be given: fun foo() { let x = id(true); // ERROR! true is not a u64\n} and similarly: fun foo() { let foo = Foo { x: 0 }; // ERROR! 0 is not a bool let Foo
{ x } = foo; // ERROR! bool is incompatible with address\n}","breadcrumbs":"Generics » Type Argument Mismatch","id":"159","title":"Type Argument Mismatch"},"16":{"body":"As with the other scalar values built-in to the language, integer values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Integers » Ownership","id":"16","title":"Ownership"},"160":{"body":"In most cases, the Move compiler will be able to infer the type arguments so you don't have to write them down explicitly. Here's what the examples above would look like if we omit the type arguments: fun foo() { let x = id(true); // ^ is inferred let foo = Foo { x: true }; // ^ is inferred let Foo { x } = foo; // ^ is inferred\n} Note: when the compiler is unable to infer the types, you'll need annotate them manually. A common scenario is to call a function with type parameters appearing only at return positions. module a::m { fun foo() { let v = vector[]; // ERROR! // ^ The compiler cannot figure out the element type, since it is never used let v = vector[]; // ^~~~~ Must annotate manually in this case. }\n} Note that these cases are a bit contrived since the vector[] is never used, ad as such, Move's type inference cannot infer the type. However, the compiler will be able to infer the type if that value is used later in that function: module a::m { fun foo() { let v = vector[]; // ^ is inferred vector::push_back(&mut v, 42); // ^ is inferred }\n}","breadcrumbs":"Generics » Type Inference","id":"160","title":"Type Inference"},"161":{"body":"In Move, the integer types u8, u16, u32, u64, u128, and u256 are all distinct types. However, each one of these types can be created with the same numerical value syntax. In other words, if a type suffix is not provided, the compiler will infer the integer type based on the usage of the value. let x8: u8 = 0;\nlet x16: u16 = 0;\nlet x32: u32 = 0;\nlet x64: u64 = 0;\nlet x128: u128 = 0;\nlet x256: u256 = 0; If the value is not used in a context that requires a specific integer type, u64 is taken as a default. let x = 0;\n// ^ u64 is used by default If the value however is too large for the inferred type, an error will be given let i: u8 = 256; // ERROR!\n// ^^^ too large for u8\nlet x = 340282366920938463463374607431768211454;\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ too large for u64 In cases where the number is too large, you might need to annotate it explicitly let x = 340282366920938463463374607431768211454u128;\n// ^^^^ valid!","breadcrumbs":"Generics » Integers","id":"161","title":"Integers"},"162":{"body":"For a struct definition, an unused type parameter is one that does not appear in any field defined in the struct, but is checked statically at compile time. Move allows unused type parameters so the following struct definition is valid: public struct Foo { foo: u64\n} This can be convenient when modeling certain concepts. Here is an example: module a::m { // Currency Specifiers public struct A {} public struct B {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. public struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_a(value: u64): Coin { mint_generic(value) } public fun mint_b(value: u64): Coin { mint_generic(value) }\n} In this example, Coin is generic on the Currency type parameter, which specifies the currency of the coin and allows code to be written either generically on any currency or concretely on a specific currency. This generality applies even when the Currency type parameter does not appear in any of the fields defined in Coin.","breadcrumbs":"Generics » Unused Type Parameters","id":"162","title":"Unused Type Parameters"},"163":{"body":"In the example above, although struct Coin asks for the store ability, neither Coin nor Coin will have the store ability. This is because of the rules for Conditional Abilities and Generic Types and the fact that A and B don't have the store ability, despite the fact that they are not even used in the body of struct Coin. This might cause some unpleasant consequences. For example, we are unable to put Coin into a wallet in storage. One possible solution would be to add spurious ability annotations to A and B (i.e., public struct Currency1 has store {}). But, this might lead to bugs or security vulnerabilities because it weakens the types with unnecessary ability declarations. For example, we would never expect a value in the storage to have a field in type A, but this would be possible with the spurious store ability. Moreover, the spurious annotations would be infectious, requiring many functions generic on the unused type parameter to also include the necessary constraints. Phantom type parameters solve this problem. Unused type parameters can be marked as phantom type parameters, which do not participate in the ability derivation for structs. In this way, arguments to phantom type parameters are not considered when deriving the abilities for generic types, thus avoiding the need for spurious ability annotations. For this relaxed rule to be sound, Move's type system guarantees that a parameter declared as phantom is either not used at all in the struct definition, or it is only used as an argument to type parameters also declared as phantom. Declaration In a struct definition a type parameter can be declared as phantom by adding the phantom keyword before its declaration. public struct Coin has store { value: u64\n} If a type parameter is declared as phantom we say it is a phantom type parameter. When defining a struct, Move's type checker ensures that every phantom type parameter is either not used inside the struct definition or it is only used as an argument to a phantom type parameter. public struct S1 { f: u64 }\n// ^^^^^^^ valid, T1 does not appear inside the struct definition public struct S2 { f: S1 }\n// ^^^^^^^ valid, T1 appears in phantom position The following code shows examples of violations of the rule: public struct S1 { f: T }\n// ^^^^^^^ ERROR! ^ Not a phantom position public struct S2 { f: T }\npublic struct S3 { f: S2 }\n// ^^^^^^^ ERROR! ^ Not a phantom position More formally, if a type is used as an argument to a phantom type parameter we say the type appears in phantom position . With this definition in place, the rule for the correct use of phantom parameters can be specified as follows: A phantom type parameter can only appear in phantom position . Note that specifying phantom is not required, but the compiler will warn if a type parameter could be phantom but was not marked as such. Instantiation When instantiating a struct, the arguments to phantom parameters are excluded when deriving the struct abilities. For example, consider the following code: public struct S has copy { f: T1 }\npublic struct NoCopy {}\npublic struct HasCopy has copy {} Consider now the type S. Since S is defined with copy and all non-phantom arguments have copy then S also has copy. Phantom Type Parameters with Ability Constraints Ability constraints and phantom type parameters are orthogonal features in the sense that phantom parameters can be declared with ability constraints. public struct S {} When instantiating a phantom type parameter with an ability constraint, the type argument has to satisfy that constraint, even though the parameter is phantom. The usual restrictions apply and T can only be instantiated with arguments having copy.","breadcrumbs":"Generics » Phantom Type Parameters","id":"163","title":"Phantom Type Parameters"},"164":{"body":"In the examples above, we have demonstrated how one can use type parameters to define \"unknown\" types that can be plugged in by callers at a later time. This however means the type system has little information about the type and has to perform checks in a very conservative way. In some sense, the type system must assume the worst case scenario for an unconstrained generic--a type with no abilities . Constraints offer a way to specify what properties these unknown types have so the type system can allow operations that would otherwise be unsafe.","breadcrumbs":"Generics » Constraints","id":"164","title":"Constraints"},"165":{"body":"Constraints can be imposed on type parameters using the following syntax. // T is the name of the type parameter\nT: (+ )* The can be any of the four abilities , and a type parameter can be constrained with multiple abilities at once. So all of the following would be valid type parameter declarations: T: copy\nT: copy + drop\nT: copy + drop + store + key","breadcrumbs":"Generics » Declaring Constraints","id":"165","title":"Declaring Constraints"},"166":{"body":"Constraints are checked at instantiation sites public struct Foo { x: T } public struct Bar { x: Foo }\n// ^^ valid, u8 has `copy` public struct Baz { x: Foo }\n// ^ ERROR! T does not have 'copy' And similarly for functions fun unsafe_consume(x: T) { // ERROR! x does not have 'drop'\n} fun consume(x: T) { // valid, x will be dropped automatically\n} public struct NoAbilities {} fun foo() { let r = NoAbilities {}; consume(NoAbilities); // ^^^^^^^^^^^ ERROR! NoAbilities does not have 'drop'\n} And some similar examples, but with copy fun unsafe_double(x: T) { (copy x, x) // ERROR! T does not have 'copy'\n} fun double(x: T) { (copy x, x) // valid, T has 'copy'\n} public struct NoAbilities {} fun foo(): (NoAbilities, NoAbilities) { let r = NoAbilities {}; double(r) // ^ ERROR! NoAbilities does not have 'copy'\n} For more information, see the abilities section on conditional abilities and generic types .","breadcrumbs":"Generics » Verifying Constraints","id":"166","title":"Verifying Constraints"},"167":{"body":"","breadcrumbs":"Generics » Limitations on Recursions","id":"167","title":"Limitations on Recursions"},"168":{"body":"Generic structs can not contain fields of the same type, either directly or indirectly, even with different type arguments. All of the following struct definitions are invalid: public struct Foo { x: Foo // ERROR! 'Foo' containing 'Foo'\n} public struct Bar { x: Bar // ERROR! 'Bar' containing 'Bar'\n} // ERROR! 'A' and 'B' forming a cycle, which is not allowed either.\npublic struct A { x: B\n} public struct B { x: A y: A\n}","breadcrumbs":"Generics » Recursive Structs","id":"168","title":"Recursive Structs"},"169":{"body":"Move allows generic functions to be called recursively. However, when used in combination with generic structs, this could create an infinite number of types in certain cases, and allowing this means adding unnecessary complexity to the compiler, vm and other language components. Therefore, such recursions are forbidden. This restriction might be relaxed in the future, but for now, the following examples should give you an idea of what is allowed and what is not. module a::m { public struct A {} // Finitely many types -- allowed. // foo -> foo -> foo -> ... is valid fun foo() { foo(); } // Finitely many types -- allowed. // foo -> foo> -> foo> -> ... is valid fun foo() { foo>(); }\n} Not allowed: module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> foo> -> foo>> -> ... fun foo() { foo>(); }\n} And similarly, not allowed: module a::n { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> bar -> foo> // -> bar, T2> -> foo, A> // -> bar, A> -> foo, A>> // -> ... fun foo() { bar(); } fun bar { foo>(); }\n} Note, the check for type level recursions is based on a conservative analysis on the call sites and does NOT take control flow or runtime values into account. module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! fun foo(n: u64) { if (n > 0) foo>(n - 1); }\n} The function in the example above will technically terminate for any given input and therefore only creating finitely many types, but it is still considered invalid by Move's type system.","breadcrumbs":"Generics » Advanced Topic: Type-level Recursions","id":"169","title":"Advanced Topic: Type-level Recursions"},"17":{"body":"bool is Move's primitive type for boolean true and false values.","breadcrumbs":"Primitive Types » Bool » Bool","id":"17","title":"Bool"},"170":{"body":"Abilities are a typing feature in Move that control what actions are permissible for values of a given type. This system grants fine grained control over the \"linear\" typing behavior of values, as well as if and how values are used in storage (as defined by the specific deployment of Move, e.g. the notion of storage for the blockchain). This is implemented by gating access to certain bytecode instructions so that for a value to be used with the bytecode instruction, it must have the ability required (if one is required at all—not every instruction is gated by an ability). For Sui, key is used to signify an object . Objects are the basic unit of storage where each object has a unique, 32-byte ID. store is then used to both indicate what data can be stored inside of an object, and is also used to indicate what types can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » Abilities","id":"170","title":"Abilities"},"171":{"body":"The four abilities are: copy Allows values of types with this ability to be copied. drop Allows values of types with this ability to be popped/dropped. store Allows values of types with this ability to exist inside a value in storage. For Sui, store controls what data can be stored inside of an object . store also controls what types can be transferred outside of their defining module. key Allows the type to serve as a \"key\" for storage. Ostensibly this means the value can be a top-level value in storage; in other words, it does not need to be contained in another value to be in storage. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » The Four Abilities","id":"171","title":"The Four Abilities"},"172":{"body":"The copy ability allows values of types with that ability to be copied. It gates the ability to copy values out of local variables with the copy operator and to copy values via references with dereference *e . If a value has copy, all values contained inside of that value have copy.","breadcrumbs":"Type Abilities » copy","id":"172","title":"copy"},"173":{"body":"The drop ability allows values of types with that ability to be dropped. By dropped, we mean that value is not transferred and is effectively destroyed as the Move program executes. As such, this ability gates the ability to ignore values in a multitude of locations, including: not using the value in a local variable or parameter not using the value in a sequence via ; overwriting values in variables in assignments overwriting values via references when writing *e1 = e2 . If a value has drop, all values contained inside of that value have drop.","breadcrumbs":"Type Abilities » drop","id":"173","title":"drop"},"174":{"body":"The store ability allows values of types with this ability to exist inside of a value in storage, but not necessarily as a top-level value in storage. This is the only ability that does not directly gate an operation. Instead it gates the existence in storage when used in tandem with key. If a value has store, all values contained inside of that value have store. For Sui, store serves double duty. It controls what values can appear inside of an object , and what objects can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » store","id":"174","title":"store"},"175":{"body":"The key ability allows the type to serve as a key for storage operations as defined by the deployment of Move. While it is specific per Move instance, it serves to gates all storage operations, so in order for a type to be used with storage primitives, the type must have the key ability. If a value has key, all values contained inside of that value have store. This is the only ability with this sort of asymmetry. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » key","id":"175","title":"key"},"176":{"body":"All primitive, builtin types have copy, drop, and store. bool, u8, u16, u32, u64, u128, u256, and address all have copy, drop, and store. vector may have copy, drop, and store depending on the abilities of T. See Conditional Abilities and Generic Types for more details. Immutable references & and mutable references &mut both have copy and drop. This refers to copying and dropping the reference itself, not what they refer to. References cannot appear in global storage, hence they do not have store. Note that none of the primitive types have key, meaning none of them can be used directly with storage operations.","breadcrumbs":"Type Abilities » Builtin Types","id":"176","title":"Builtin Types"},"177":{"body":"To declare that a struct or enum has an ability, it is declared with has after the datatype name and either before or after the fields/variants. For example: public struct Ignorable has drop { f: u64 }\npublic struct Pair has copy, drop, store { x: u64, y: u64 }\npublic struct MyVec(vector) has copy, drop, store; public enum IgnorableEnum has drop { Variant }\npublic enum PairEnum has copy, drop, store { Variant }\npublic enum MyVecEnum { Variant } has copy, drop, store; In this case: Ignorable* has the drop ability. Pair* and MyVec* both have copy, drop, and store. All of these abilities have strong guarantees over these gated operations. The operation can be performed on the value only if it has that ability; even if the value is deeply nested inside of some other collection! As such: when declaring a struct’s abilities, certain requirements are placed on the fields. All fields must satisfy these constraints. These rules are necessary so that structs satisfy the reachability rules for the abilities given above. If a struct is declared with the ability... copy, all fields must have copy. drop, all fields must have drop. store, all fields must have store. key, all fields must have store. key is the only ability currently that doesn’t require itself. An enum can have any of these abilities with the exception of key, which enums cannot have because they cannot be top-level values (objects) in storage. The same rules apply to fields of enum variants as they do for struct fields though. In particular, if an enum is declared with the ability... copy, all fields of all variants must have copy. drop, all fields of all variants must have drop. store, all fields of all variants must have store. key, is not allowed on enums as previously mentioned. For example: // A struct without any abilities\npublic struct NoAbilities {} public struct WantsCopy has copy { f: NoAbilities, // ERROR 'NoAbilities' does not have 'copy'\n} public enum WantsCopyEnum has copy { Variant1 Variant2(NoAbilities), // ERROR 'NoAbilities' does not have 'copy'\n} and similarly: // A struct without any abilities\npublic struct NoAbilities {} public struct MyData has key { f: NoAbilities, // Error 'NoAbilities' does not have 'store'\n} public struct MyDataEnum has store { Variant1, Variant2(NoAbilities), // Error 'NoAbilities' does not have 'store'\n}","breadcrumbs":"Type Abilities » Annotating Structs and Enums","id":"177","title":"Annotating Structs and Enums"},"178":{"body":"When abilities are annotated on a generic type, not all instances of that type are guaranteed to have that ability. Consider this struct declaration: // public struct Cup has copy, drop, store, key { item: T } It might be very helpful if Cup could hold any type, regardless of its abilities. The type system can see the type parameter, so it should be able to remove abilities from Cup if it sees a type parameter that would violate the guarantees for that ability. This behavior might sound a bit confusing at first, but it might be more understandable if we think about collection types. We could consider the builtin type vector to have the following type declaration: vector has copy, drop, store; We want vectors to work with any type. We don't want separate vector types for different abilities. So what are the rules we would want? Precisely the same that we would want with the field rules above. So, it would be safe to copy a vector value only if the inner elements can be copied. It would be safe to ignore a vector value only if the inner elements can be ignored/dropped. And, it would be safe to put a vector in storage only if the inner elements can be in storage. To have this extra expressiveness, a type might not have all the abilities it was declared with depending on the instantiation of that type; instead, the abilities a type will have depends on both its declaration and its type arguments. For any type, type parameters are pessimistically assumed to be used inside of the struct, so the abilities are only granted if the type parameters meet the requirements described above for fields. Taking Cup from above as an example: Cup has the ability copy only if T has copy. It has drop only if T has drop. It has store only if T has store. It has key only if T has store. Here are examples for this conditional system for each ability:","breadcrumbs":"Type Abilities » Conditional Abilities and Generic Types","id":"178","title":"Conditional Abilities and Generic Types"},"179":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun example(c_x: Cup, c_s: Cup) { // Valid, 'Cup' has 'copy' because 'u64' has 'copy' let c_x2 = copy c_x; // Valid, 'Cup' has 'copy' because 'S' has 'copy' let c_s2 = copy c_s;\n} fun invalid(c_account: Cup, c_n: Cup) { // Invalid, 'Cup' does not have 'copy'. // Even though 'Cup' was declared with copy, the instance does not have 'copy' // because 'signer' does not have 'copy' let c_account2 = copy c_account; // Invalid, 'Cup' does not have 'copy' // because 'NoAbilities' does not have 'copy' let c_n2 = copy c_n;\n}","breadcrumbs":"Type Abilities » Example: conditional copy","id":"179","title":"Example: conditional copy"},"18":{"body":"Literals for bool are either true or false.","breadcrumbs":"Primitive Types » Bool » Literals","id":"18","title":"Literals"},"180":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun unused() { Cup { item: true }; // Valid, 'Cup' has 'drop' Cup { item: S { f: false }}; // Valid, 'Cup' has 'drop'\n} fun left_in_local(c_account: Cup): u64 { let c_b = Cup { item: true }; let c_s = Cup { item: S { f: false }}; // Valid return: 'c_account', 'c_b', and 'c_s' have values // but 'Cup', 'Cup', and 'Cup' have 'drop' 0\n} fun invalid_unused() { // Invalid, Cannot ignore 'Cup' because it does not have 'drop'. // Even though 'Cup' was declared with 'drop', the instance does not have 'drop' // because 'NoAbilities' does not have 'drop' Cup { item: NoAbilities {} };\n} fun invalid_left_in_local(): u64 { let n = Cup { item: NoAbilities {} }; // Invalid return: 'c_n' has a value // and 'Cup' does not have 'drop' 0\n}","breadcrumbs":"Type Abilities » Example: conditional drop","id":"180","title":"Example: conditional drop"},"181":{"body":"public struct Cup has copy, drop, store { item: T } // 'MyInnerData is declared with 'store' so all fields need 'store'\nstruct MyInnerData has store { yes: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n} // 'MyData' is declared with 'key' so all fields need 'store'\nstruct MyData has key { yes: Cup, // Valid, 'Cup' has 'store' inner: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n}","breadcrumbs":"Type Abilities » Example: conditional store","id":"181","title":"Example: conditional store"},"182":{"body":"public struct NoAbilities {}\npublic struct MyData has key { f: T } fun valid(addr: address) acquires MyData { // Valid, 'MyData' has 'key' transfer(addr, MyData { f: 0 });\n} fun invalid(addr: address) { // Invalid, 'MyData' does not have 'key' transfer(addr, MyData { f: NoAbilities {} }) // Invalid, 'MyData' does not have 'key' borrow(addr); // Invalid, 'MyData' does not have 'key' borrow_mut(addr);\n} // Mock storage operation\nnative public fun transfer(addr: address, value: T);","breadcrumbs":"Type Abilities » Example: conditional key","id":"182","title":"Example: conditional key"},"183":{"body":"The use syntax can be used to create aliases to members in other modules. use can be used to create aliases that last either for the entire module, or for a given expression block scope.","breadcrumbs":"Uses and Aliases » Uses and Aliases","id":"183","title":"Uses and Aliases"},"184":{"body":"There are several different syntax cases for use. Starting with the most simple, we have the following for creating aliases to other modules use
::;\nuse
:: as ; For example use std::vector;\nuse std::option as o; use std::vector; introduces an alias vector for std::vector. This means that anywhere you would want to use the module name std::vector (assuming this use is in scope), you could use vector instead. use std::vector; is equivalent to use std::vector as vector; Similarly use std::option as o; would let you use o instead of std::option use std::vector;\nuse std::option as o; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, o::some(0)); vector::push_back(&mut v, o::none()); v\n} If you want to import a specific module member (such as a function or struct). You can use the following syntax. use
::::;\nuse
:::: as ; For example use std::vector::push_back;\nuse std::option::some as s; This would let you use the function std::vector::push_back without full qualification. Similarly for std::option::some with s. Instead you could use push_back and s respectively. Again, use std::vector::push_back; is equivalent to use std::vector::push_back as push_back; use std::vector::push_back;\nuse std::option::some as s; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, s(0)); vector::push_back(&mut v, std::option::none()); v\n}","breadcrumbs":"Uses and Aliases » Syntax","id":"184","title":"Syntax"},"185":{"body":"If you want to add aliases for multiple module members at once, you can do so with the following syntax use
::::{, as ... }; For example use std::vector::push_back;\nuse std::option::{some as s, none as n}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, s(0)); push_back(&mut v, n()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases","id":"185","title":"Multiple Aliases"},"186":{"body":"If you need to add an alias to the Module itself in addition to module members, you can do that in a single use using Self. Self is a member of sorts that refers to the module. use std::option::{Self, some, none}; For clarity, all of the following are equivalent: use std::option;\nuse std::option as option;\nuse std::option::Self;\nuse std::option::Self as option;\nuse std::option::{Self};\nuse std::option::{Self as option};","breadcrumbs":"Uses and Aliases » Self aliases","id":"186","title":"Self aliases"},"187":{"body":"If needed, you can have as many aliases for any item as you like use std::vector::push_back;\nuse std::option::{Option, some, none}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases for the Same Definition","id":"187","title":"Multiple Aliases for the Same Definition"},"188":{"body":"In Move, you can also import multiple names with the same use declaration. This brings all provided names into scope: use std::{ vector::{Self as vec, push_back}, string::{String, Self as str}\n}; fun example(s: &mut String) { let mut v = vec::empty(); push_back(&mut v, 0); push_back(&mut v, 10); str::append_utf8(s, v);\n}","breadcrumbs":"Uses and Aliases » Nested imports","id":"188","title":"Nested imports"},"189":{"body":"Inside of a module all use declarations are usable regardless of the order of declaration. module a::example { use std::vector; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, 0); vector::push_back(&mut v, 10); v } use std::option::{Option, some, none};\n} The aliases declared by use in the module usable within that module. Additionally, the aliases introduced cannot conflict with other module members. See Uniqueness for more details","breadcrumbs":"Uses and Aliases » Inside a module","id":"189","title":"Inside a module"},"19":{"body":"","breadcrumbs":"Primitive Types » Bool » Operations","id":"19","title":"Operations"},"190":{"body":"You can add use declarations to the beginning of any expression block module a::example { fun new_vec(): vector> { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }\n} As with let, the aliases introduced by use in an expression block are removed at the end of that block. module a::example { fun new_vec(): vector> { let result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }; result }\n} Attempting to use the alias after the block ends will result in an error fun new_vec(): vector> { let mut result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); v }; push_back(&mut result, std::option::none()); // ^^^^^^ ERROR! unbound function 'push_back' result } Any use must be the first item in the block. If the use comes after any expression or let, it will result in a parsing error { let mut v = vector[]; use std::vector; // ERROR!\n} This allows you to shorten your import blocks in many situations. Note that these imports, as the previous ones, are all subject to the naming and uniqueness rules described in the following sections.","breadcrumbs":"Uses and Aliases » Inside an expression","id":"190","title":"Inside an expression"},"191":{"body":"Aliases must follow the same rules as other module members. This means that aliases to structs (and constants) must start with A to Z module a::data { public struct S {} const FLAG: bool = false; public fun foo() {}\n}\nmodule a::example { use a::data::{ S as s, // ERROR! FLAG as fLAG, // ERROR! foo as FOO, // valid foo as bar, // valid };\n}","breadcrumbs":"Uses and Aliases » Naming rules","id":"191","title":"Naming rules"},"192":{"body":"Inside a given scope, all aliases introduced by use declarations must be unique. For a module, this means aliases introduced by use cannot overlap module a::example { use std::option::{none as foo, some as foo}; // ERROR! // ^^^ duplicate 'foo' use std::option::none as bar; use std::option::some as bar; // ERROR! // ^^^ duplicate 'bar' } And, they cannot overlap with any of the module's other members module a::data { public struct S {}\n}\nmodule example { use a::data::S; public struct S { value: u64 } // ERROR! // ^ conflicts with alias 'S' above\n}\n} Inside of an expression block, they cannot overlap with each other, but they can shadow other aliases or names from an outer scope","breadcrumbs":"Uses and Aliases » Uniqueness","id":"192","title":"Uniqueness"},"193":{"body":"use aliases inside of an expression block can shadow names (module members or aliases) from the outer scope. As with shadowing of locals, the shadowing ends at the end of the expression block; module a::example { public struct WrappedVector { vec: vector } public fun empty(): WrappedVector { WrappedVector { vec: std::vector::empty() } } public fun push_back(v: &mut WrappedVector, value: u64) { std::vector::push_back(&mut v.vec, value); } fun example1(): WrappedVector { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut vec = vector[]; push_back(&mut vec, 0); push_back(&mut vec, 1); push_back(&mut vec, 10); WrappedVector { vec } } fun example2(): WrappedVector { let vec = { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut v = vector[]; push_back(&mut v, 0); push_back(&mut v, 1); v }; // 'push_back' now refers to Self::push_back let mut res = WrappedVector { vec }; push_back(&mut res, 10); res }\n}","breadcrumbs":"Uses and Aliases » Shadowing","id":"193","title":"Shadowing"},"194":{"body":"An unused use will result in a warning module a::example { use std::option::{some, none}; // Warning! // ^^^^ unused alias 'none' public fun example(): std::option::Option { some(0) }\n}","breadcrumbs":"Uses and Aliases » Unused Use or Alias","id":"194","title":"Unused Use or Alias"},"195":{"body":"As a syntactic convenience, some functions in Move can be called as \"methods\" on a value. This is done by using the . operator to call the function, where the value on the left-hand side of the . is the first argument to the function (sometimes called the receiver). The type of that value statically determines which function is called. This is an important difference from some other languages, where this syntax might indicate a dynamic call, where the function to be called is determined at runtime. In Move, all function calls are statically determined. In short, this syntax exists to make it easier to call functions without having to create an alias with use, and without having to explicitly borrow the first argument to the function. Additionally, this can make code more readable, as it reduces the amount of boilerplate needed to call a function and makes it easier to chain function calls.","breadcrumbs":"Method Syntax » Methods","id":"195","title":"Methods"},"196":{"body":"The syntax for calling a method is as follows: . <[type_arguments],*> ( ) For example coin.value();\n*nums.borrow_mut(i) = 5;","breadcrumbs":"Method Syntax » Syntax","id":"196","title":"Syntax"},"197":{"body":"When a method is called, the compiler will statically determine which function is called based on the type of the receiver (the argument on the left-hand side of the .). The compiler maintains a mapping from type and method name to the module and function name that should be called. This mapping is created form the use fun aliases that are currently in scope, and from the appropriate functions in the receiver type's defining module. In all cases, the receiver type is the first argument to the function, whether by-value or by-reference. In this section, when we say a method \"resolves\" to a function, we mean that the compiler will statically replace the method with a normal function call. For example if we have x.foo(e) with foo resolving to a::m::foo, the compiler will replace x.foo(e) with a::m::foo(x, e), potentially automatically borrowing x.","breadcrumbs":"Method Syntax » Method Resolution","id":"197","title":"Method Resolution"},"198":{"body":"In a type’s defining module, the compiler will automatically create a method alias for any function declaration for its types when the type is the first argument in the function. For example, module a::m { public struct X() has copy, drop, store; public fun foo(x: &X) { ... } public fun bar(flag: bool, x: &X) { ... }\n} The function foo can be called as a method on a value of type X. However, not the first argument (and one is not created for bool since bool is not defined in that module). For example, fun example(x: a::m::X) { x.foo(); // valid // x.bar(true); ERROR!\n}","breadcrumbs":"Method Syntax » Functions in the Defining Module","id":"198","title":"Functions in the Defining Module"},"199":{"body":"Like a traditional use , a use fun statement creates an alias local to its current scope. This could be for the current module or the current expression block. However, the alias is associated to a type. The syntax for a use fun statement is as follows: use fun as .; This creates an alias for the , which the can receive as . For example module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 } public fun cup_value(c: Cup): T { let Cup(t) = c; t } public fun cup_swap(c: &mut Cup, t: T) { c.0 = t; }\n} We can now create use fun aliases to these functions module b::example { use fun a::cup::cup_borrow as Cup.borrow; use fun a::cup::cup_value as Cup.value; use fun a::cup::cup_swap as Cup.set; fun example(c: &mut Cup) { let _ = c.borrow(); // resolves to a::cup::cup_borrow let v = c.value(); // resolves to a::cup::cup_value c.set(v * 2); // resolves to a::cup::cup_swap }\n} Note that the in the use fun does not have to be a fully resolved path, and an alias can be used instead, so the declarations in the above example could equivalently be written as use a::cup::{Self, cup_swap}; use fun cup::cup_borrow as Cup.borrow; use fun cup::cup_value as Cup.value; use fun cup_swap as Cup.set; While these examples are cute for renaming the functions in the current module, the feature is perhaps more useful for declaring methods on types from other modules. For example, if we wanted to add a new utility to Cup, we could do so with a use fun alias and still use method syntax module b::example { fun double(c: &Cup): Cup { let v = c.value(); Cup::new(v * 2) } } Normally, we would be stuck having to call it as double(&c) because b::example did not define Cup, but instead we can use a use fun alias fun double_double(c: Cup): (Cup, Cup) { use fun b::example::double as Cup.dub; (c.dub(), c.dub()) // resolves to b::example::double in both calls } While use fun can be made in any scope, the target of the use fun must have a first argument that is the same as the . public struct X() has copy, drop, store; fun new(): X { X() }\nfun flag(flag: bool): u8 { if (flag) 1 else 0 } use fun new as X.new; // ERROR!\nuse fun flag as X.flag; // ERROR!\n// Neither `new` nor `flag` has first argument of type `X` But any first argument of the can be used, including references and mutable references public struct X() has copy, drop, store; public fun by_val(_: X) {}\npublic fun by_ref(_: &X) {}\npublic fun by_mut(_: &mut X) {} // All 3 valid, in any scope\nuse fun by_val as X.v;\nuse fun by_ref as X.r;\nuse fun by_mut as X.m; Note for generics, the methods are associated for all instances of the generic type. You cannot overload the method to resolve to different functions depending on the instantiation. public struct Cup(T) has copy, drop, store; public fun value(c: &Cup): T { c.0\n} use fun value as Cup.flag; // ERROR!\nuse fun value as Cup.num; // ERROR!\n// In both cases, `use fun` aliases cannot be generic, they must work for all instances of the type","breadcrumbs":"Method Syntax » use fun Aliases","id":"199","title":"use fun Aliases"},"2":{"body":"A module has the following syntax: module
:: { ( | | | )*\n} where
is a valid address specifying the module's package. For example: module 0x42::test { public struct Example has copy, drop { i: u64 } use std::debug; const ONE: u64 = 1; public fun print(x: u64) { let sum = x + ONE; let example = Example { i: sum }; debug::print(&sum) }\n}","breadcrumbs":"Modules » Syntax","id":"2","title":"Syntax"},"20":{"body":"bool supports three logical operations: Syntax Description Equivalent Expression && short-circuiting logical and p && q is equivalent to if (p) q else false || short-circuiting logical or p || q is equivalent to if (p) true else q ! logical negation !p is equivalent to if (p) false else true","breadcrumbs":"Primitive Types » Bool » Logical","id":"20","title":"Logical"},"200":{"body":"Unlike a traditional use , the use fun statement can be made public, which allows it to be used outside of its declared scope. A use fun can be made public if it is declared in the module that defines the receivers type, much like the method aliases that are automatically created for functions in the defining module. Or conversely, one can think that an implicit public use fun is created automatically for every function in the defining module that has a first argument of the receiver type (if it is defined in that module). Both of these views are equivalent. module a::cup { public struct Cup(T) has copy, drop, store; public use fun cup_borrow as Cup.borrow; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} In this example, a public method alias is created for a::cup::Cup.borrow and a::cup::Cup.cup_borrow. Both resolve to a::cup::cup_borrow. And both are \"public\" in the sense that they can be used outside of a::cup, without an additional use or use fun. module b::example { fun example(c: a::cup::Cup) { c.borrow(); // resolves to a::cup::cup_borrow c.cup_borrow(); // resolves to a::cup::cup_borrow }\n} The public use fun declarations thus serve as a way of renaming a function if you want to give it a cleaner name for use with method syntax. This is especially helpful if you have a module with multiple types, and similarly named functions for each type. module a::shapes { public struct Rectangle { base: u64, height: u64 } public struct Box { base: u64, height: u64, depth: u64 } // Rectangle and Box can have methods with the same name public use fun rectangle_base as Rectangle.base; public fun rectangle_base(rectangle: &Rectangle): u64 { rectangle.base } public use fun box_base as Box.base; public fun box_base(box: &Box): u64 { box.base } } Another use for public use fun is adding methods to types from other modules. This can be helpful in conjunction with functions spread out across a single package. module a::cup { public struct Cup(T) has copy, drop, store; public fun new(t: T): Cup { Cup(t) } public fun borrow(c: &Cup): &T { &c.0 } // `public use fun` to a function defined in another module public use fun a::utils::split as Cup.split;\n} module a::utils { use a::m::{Self, Cup}; public fun split(c: Cup): (Cup, Cup) { let Cup(t) = c; let half = t / 2; let rem = if (t > 0) t - half else 0; (cup::new(half), cup::new(rem)) } } And note that this public use fun does not create a circular dependency, as the use fun is not present after the module is compiled--all methods are resolved statically.","breadcrumbs":"Method Syntax » public use fun Aliases","id":"200","title":"public use fun Aliases"},"201":{"body":"A small detail to note is that method aliases respect normal use aliases. module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} module b::other { use a::cup::{Cup, cup_borrow as borrow}; fun example(c: &Cup) { c.borrow(); // resolves to a::cup::cup_borrow }\n} A helpful way to think about this is that use creates an implicit use fun alias for the function whenever it can. In this case the use a::cup::cup_borrow as borrow creates an implicit use fun a::cup::cup_borrow as Cup.borrow because it would be a valid use fun alias. Both views are equivalent. This line of reasoning can inform how specific methods will resolve with shadowing. See the cases in Scoping for more details.","breadcrumbs":"Method Syntax » Interactions with use Aliases","id":"201","title":"Interactions with use Aliases"},"202":{"body":"If not public, a use fun alias is local to its scope, much like a normal use . For example module a::m { public struct X() has copy, drop, store; public fun foo(_: &X) {} public fun bar(_: &X) {}\n} module b::other { use a::m::X; use fun a::m::foo as X.f; fun example(x: &X) { x.f(); // resolves to a::m::foo { use a::m::bar as f; x.f(); // resolves to a::m::bar }; x.f(); // still resolves to a::m::foo { use fun a::m::bar as X.f; x.f(); // resolves to a::m::bar } }","breadcrumbs":"Method Syntax » Scoping","id":"202","title":"Scoping"},"203":{"body":"When resolving a method, the compiler will automatically borrow the receiver if the function expects a reference. For example module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} fun example(mut x: X) { x.by_ref(); // resolves to a::m::by_ref(&x) x.by_mut(); // resolves to a::m::by_mut(&mut x) }\n} In these examples, x was automatically borrowed to &x and &mut x respectively. This will also work through field access module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } fun example(mut y: Y) { y.x.by_ref(); // resolves to a::m::by_ref(&y.x) y.x.by_mut(); // resolves to a::m::by_mut(&mut y.x) }\n} Note that in both examples, the local variable had to be labeled as mut to allow for the &mut borrow. Without this, there would be an error saying that x (or y in the second example) is not mutable. Keep in mind that without a reference, normal rules for variable and field access come into play. Meaning a value might be moved or copied if it is not borrowed. module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } public fun drop_y(y: Y) { y } fun example(y: Y) { y.x.by_val(); // copies `y.x` since `by_val` is by-value and `X` has `copy` y.drop_y(); // moves `y` since `drop_y` is by-value and `Y` does _not_ have `copy` }\n}","breadcrumbs":"Method Syntax » Automatic Borrowing","id":"203","title":"Automatic Borrowing"},"204":{"body":"Method calls can be chained, because any expression can be the receiver of the method. module a::shapes { public struct Point has copy, drop, store { x: u64, y: u64 } public struct Line has copy, drop, store { start: Point, end: Point } public fun x(p: &Point): u64 { p.x } public fun y(p: &Point): u64 { p.y } public fun start(l: &Line): &Point { &l.start } public fun end(l: &Line): &Point { &l.end } } module b::example { use a::shapes::Line; public fun x_values(l: Line): (u64, u64) { (l.start().x(), l.end().x()) } } In this example for l.start().x(), the compiler first resolves l.start() to a::shapes::start(&l). Then .x() is resolved to a::shapes::x(a::shapes::start(&l)). Similarly for l.end().x(). Keep in mind, this feature is not \"special\"--the left-hand side of the . can be any expression, and the compiler will resolve the method call as normal. We simply draw attention to this sort of \"chaining\" because it is a common practice to increase readability.","breadcrumbs":"Method Syntax » Chaining","id":"204","title":"Chaining"},"205":{"body":"Move provides syntax attributes to allow you to define operations that look and feel like native Move code, lowering these operations into your user-provided definitions. Our first syntax method, index, allows you to define a group of operations that can be used as custom index accessors for your datatypes, such as accessing a matrix element as m[i,j], by annotating functions that should be used for these index operations. Moreover, these definitions are bespoke per-type and available implicitly for any programmer using your type.","breadcrumbs":"Index Syntax Methods » Index Syntax","id":"205","title":"Index Syntax"},"206":{"body":"To start, consider a Matrix type that uses a vector of vectors to represent its values. You can write a small library using index syntax annotations on the borrow and borrow_mut functions as follows: module matrix { public struct Matrix { v: vector> } #[syntax(index)] public fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j) } #[syntax(index)] public fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { vector::borrow_mut(vector::borrow_mut(&mut s.v, i), j) } public fun make_matrix(v: vector>): Matrix { Matrix { v } } } Now anyone using this Matrix type has access to index syntax for it: let mut m = matrix::make_matrix(vector[ vector[1, 0, 0], vector[0, 1, 0], vector[0, 0, 1],\n]); let mut i = 0;\nwhile (i < 3) { let mut j = 0; while (j < 3) { if (i == j) { assert!(m[i, j] == 1, 1); } else { assert!(m[i, j] == 0, 0); }; *(&mut m[i,j]) = 2; j = j + 1; }; i = i + 1;\n}","breadcrumbs":"Index Syntax Methods » Overview and Summary","id":"206","title":"Overview and Summary"},"207":{"body":"As the example indicates, if you define a datatype and an associated index syntax method, anyone can invoke that method by writing index syntax on a value of that type: let mat = matrix::make_matrix(...);\nlet m_0_0 = mat[0, 0]; During compilation, the compiler translates these into the appropriate function invocations based on the position and mutable usage of the expression: let mut mat = matrix::make_matrix(...); let m_0_0 = mat[0, 0];\n// translates to `copy matrix::borrow(&mat, 0, 0)` let m_0_0 = &mat[0, 0];\n// translates to `matrix::borrow(&mat, 0, 0)` let m_0_0 = &mut mat[0, 0];\n// translates to `matrix::borrow_mut(&mut mat, 0, 0)`\n`` You can also intermix index expressions with field accesses: ```move\npublic struct V { v: vector } public struct Vs { vs: vector } fun borrow_first(input: &Vs): &u64 { &input.vs[0].v[0] // translates to `vector::borrow(&vector::borrow(&input.vs, 0).v, 0)`\n}","breadcrumbs":"Index Syntax Methods » Usage","id":"207","title":"Usage"},"208":{"body":"Note that, aside from the definition and type limitations described in the rest of this chapter, Move places no restrictions on the values your index syntax method takes as parameters. This allows you to implement intricate programmatic behavior when defining index syntax, such as a data structure that takes a default value if the index is out of bounds: #[syntax(index)]\npublic fun borrow_or_set( input: &mut MTable, key: Key, default: Value\n): &mut Value { if (contains(input, key)) { borrow(input, key) } else { insert(input, key, default); borrow(input, key) }\n} Now, when you index into MTable, you must also provide a default value: let string_key: String = ...;\nlet mut table: MTable = m_table::make_table();\nlet entry: &mut u64 = &mut table[string_key, 0]; This sort of extensible power allows you to write precise index interfaces for your types, concretely enforcing bespoke behavior.","breadcrumbs":"Index Syntax Methods » Index Functions Take Flexible Arguments","id":"208","title":"Index Functions Take Flexible Arguments"},"209":{"body":"This powerful syntax form allows all of your user-defined datatypes to behave in this way, assuming your definitions adhere to the following rules: The #[syntax(index)] attribute is added to the designated functions defined in the same module as the subject type. The designated functions have public visibility. The functions take a reference type as its subject type (its first argument) and returns a matching references type (mut if the subject was mut). Each type has only a single mutable and single immutable definition. Immutable and mutable versions have type agreement: The subject types match, differing only in mutability. The return types match the mutability of their subject types. Type parameters, if present, have identical constraints between both versions. All parameters beyond the subject type are identical. The following content and additional examples describe these rules in greater detail.","breadcrumbs":"Index Syntax Methods » Defining Index Syntax Functions","id":"209","title":"Defining Index Syntax Functions"},"21":{"body":"bool values are used in several of Move's control-flow constructs: if (bool) { ... } while (bool) { .. } assert!(bool, u64)","breadcrumbs":"Primitive Types » Bool » Control Flow","id":"21","title":"Control Flow"},"210":{"body":"To declare an index syntax method, add the #[syntax(index)] attribute above the relevant function definition in the same module as the subject type's definition. This signals to the compiler that the function is an index accessor for the specified type. Immutable Accessor The immutable index syntax method is defined for read-only access. It takes an immutable reference of the subject type and returns an immutable reference to the element type. The borrow function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow(v: &vector, i: u64): ∈ Mutable Accessor The mutable index syntax method is the dual of the immutable one, allowing for both read and write operations. It takes a mutable reference of the subject type and returns a mutable reference to the element type. The borrow_mut function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow_mut(v: &mut vector, i: u64): &mut Element; Visibility To ensure that indexing functions are available anywhere the type is used, all index syntax methods must have public visibility. This ensures ergonomic usage of indexing across modules and packages in Move. No Duplicates In addition to the above requirements, we restrict each subject base type to defining a single index syntax method for immutable references and a single index syntax method for mutable references. For example, you cannot define a specialized version for a polymorphic type: #[syntax(index)]\npublic fun borrow_matrix_u64(s: &Matrix, i: u64, j: u64): &u64 { ... } #[syntax(index)]\npublic fun borrow_matrix(s: &Matrix, i: u64, j: u64): &T { ... } // ERROR! Matrix already has a definition // for its immutable index syntax method This ensures that you can always tell which method is being invoked, without the need to inspect type instantiation.","breadcrumbs":"Index Syntax Methods » Declaration","id":"210","title":"Declaration"},"211":{"body":"By default, an index syntax method has the following type constraints: Its subject type (first argument) must be a reference to a single type defined in the same module as the marked function. This means that you cannot define index syntax methods for tuples, type parameters, or values: #[syntax(index)]\npublic fun borrow_fst(x: &(u64, u64), ...): &u64 { ... } // ERROR because the subject type is a tuple #[syntax(index)]\npublic fun borrow_tyarg(x: &T, ...): &T { ... } // ERROR because the subject type is a type parameter #[syntax(index)]\npublic fun borrow_value(x: Matrix, ...): &u64 { ... } // ERROR because x is not a reference The subject type must match mutability with the return type. This restriction allows you to clarify the expected behavior when borrowing an indexed expression as &vec[i] versus &mut vec[i]. The Move compiler uses the mutability marker to determine which borrow form to call to produce a reference of the appropriate mutability. As a result, we disallow index syntax methods whose subject and return mutability differ: #[syntax(index)]\npublic fun borrow_imm(x: &mut Matrix, ...): &u64 { ... } // ERROR! incompatible mutability // expected a mutable reference '&mut' return type","breadcrumbs":"Index Syntax Methods » Type Constraints","id":"211","title":"Type Constraints"},"212":{"body":"When defining an immutable and mutable index syntax method pair, they are subject to a number of compatibility constraints: They must take the same number of type parameters, those type parameters must have the same constraints. Type parameters must be used the same by position , not name. Their subject types must match exactly except for the mutability. Their return types must match exactly except for the mutability. All other parameter types must match exactly. These constraints are to ensure that index syntax behaves identically regardless of being in a mutable or immutable position. To illustrate some of these errors, recall the previous Matrix definition: #[syntax(index)]\npublic fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j)\n} All of the following are type-incompatible definitions of the mutable version: #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { ... } // ERROR! `T` has `drop` here, but no in the immutable version #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut u64 { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut U { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i_j: (u64, u64)): &mut U { ... } // ERROR! This takes a different number of arguments #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u32): &mut U { ... } // ERROR! `j` is a different type Again, the goal here is to make the usage across the immutable and mutable versions consistent. This allows index syntax methods to work without changing out the behavior or constraints based on mutable versus immutable usage, ultimately ensuring a consistent interface to program against.","breadcrumbs":"Index Syntax Methods » Type Compatibility","id":"212","title":"Type Compatibility"},"213":{"body":"Packages allow Move programmers to more easily re-use code and share it across projects. The Move package system allows programmers to easily: Define a package containing Move code; Parameterize a package by named addresses ; Import and use packages in other Move code and instantiate named addresses; Build packages and generate associated compilation artifacts from packages; and Work with a common interface around compiled Move artifacts.","breadcrumbs":"Packages » Packages","id":"213","title":"Packages"},"214":{"body":"A Move package source directory contains a Move.toml package manifest file, a generated Move.lock file, and a set of subdirectories: a_move_package\n├── Move.toml (required)\n├── Move.lock (generated)\n├── sources (required)\n├── doc_templates (optional)\n├── examples (optional, test & dev mode)\n└── tests (optional, test mode) The directories and files labeled \"required\" must be present for a directory to be considered a Move package and built. Optional directories may be present, and if so, they will be included in the compilation process depending on the mode used to build the package. For instance, when built in \"dev\" or \"test\" modes, the tests and examples directories will also be included. Going through each of these in turn: The Move.toml file is the package manifest and is required for a directory to be considered a Move package. This file contains metadata about the package, such as name, dependencies, and so on. The Move.lock file is generated by the Move CLI and contains the fixed build versions of the package and its dependencies. It is used to ensure consistent versions are used across different builds and that changes in dependencies are apparent as a change in this file. The sources directory is required and contains the Move modules that make up the package. Modules in this directory will always be included in the compilation process. The doc_templates directory can contain documentation templates that will be used when generating documentation for the package. The examples directory can hold additional code to be used only for development and/or tutorials, this will not be included when compiled outside of test or dev modes. The tests directory can contain Move modules that are only included when compiled in test mode or when Move unit tests are run.","breadcrumbs":"Packages » Package Layout and Manifest Syntax","id":"214","title":"Package Layout and Manifest Syntax"},"215":{"body":"The Move package manifest is defined within the Move.toml file and has the following syntax. Optional fields are marked with *, + denotes one or more elements: [package]\nname = \nedition* = # e.g., \"2024.alpha\" to use the Move 2024 edition, # currently in alpha. Will default to the latest stable edition if not specified.\nlicense* = # e.g., \"MIT\", \"GPL\", \"Apache 2.0\"\nauthors* = [,+] # e.g., [\"Joe Smith (joesmith@noemail.com)\", \"John Snow (johnsnow@noemail.com)\"] # Additional fields may be added to this section by external tools. E.g., on Sui the following sections are added:\npublished-at* = \"\" # The address that the package is published at. Should be set after the first publication. [dependencies] # (Optional section) Paths to dependencies\n# One or more lines declaring dependencies in the following format # ##### Local Dependencies #####\n# For local dependencies use `local = path`. Path is relative to the package root\n# Local = { local = \"../path/to\" }\n# To resolve a version conflict and force a specific version for dependency\n# override you can use `override = true`\n# Override = { local = \"../conflicting/version\", override = true }\n# To instantiate address values in a dependency, use `addr_subst`\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n} # ##### Git Dependencies #####\n# For remote import, use the `{ git = \"...\", subdir = \"...\", rev = \"...\" }`.\n# Revision must be supplied, it can be a branch, a tag, or a commit hash.\n# If no `subdir` is specified, the root of the repository is used.\n# MyRemotePackage = { git = \"https://some.remote/host.git\", subdir = \"remote/path\", rev = \"main\" }\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [addresses] # (Optional section) Declares named addresses in this package\n# One or more lines declaring named addresses in the following format\n# Addresses that match the name of the package must be set to `\"0x0\"` or they will be unable to be published.\n = \"_\" | \"\" # e.g., std = \"_\" or my_addr = \"0xC0FFEECAFE\" # Named addresses will be accessible in Move as `@name`. They're also exported:\n# for example, `std = \"0x1\"` is exported by the Standard Library.\n# alice = \"0xA11CE\" [dev-dependencies] # (Optional section) Same as [dependencies] section, but only included in \"dev\" and \"test\" modes\n# The dev-dependencies section allows overriding dependencies for `--test` and\n# `--dev` modes. You can e.g., introduce test-only dependencies here.\n# Local = { local = \"../path/to/dev-build\" }\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n}\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [dev-addresses] # (Optional section) Same as [addresses] section, but only included in \"dev\" and \"test\" modes\n# The dev-addresses section allows overwriting named addresses for the `--test`\n# and `--dev` modes.\n = \"\" # e.g., alice = \"0xB0B\" An example of a minimal package manifest: [package]\nname = \"AName\" An example of a more standard package manifest that also includes the Move standard library and instantiates the named address std from the LocalDep package with the address value 0x1: [package]\nname = \"AName\"\nlicense = \"Apache 2.0\" [addresses]\naddress_to_be_filled_in = \"_\"\nspecified_address = \"0xB0B\" [dependencies]\n# Local dependency\nLocalDep = { local = \"projects/move-awesomeness\", addr_subst = { \"std\" = \"0x1\" } }\n# Git dependency\nMoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" } [dev-addresses] # For use when developing this module\naddress_to_be_filled_in = \"0x101010101\" Most of the sections in the package manifest are self explanatory, but named addresses can be a bit difficult to understand so we examine them in more detail in Named Addresses During Compilation .","breadcrumbs":"Packages » Move.toml","id":"215","title":"Move.toml"},"216":{"body":"Recall that Move has named addresses and that named addresses cannot be declared in Move. Instead they are declared at the package level: in the manifest file (Move.toml) for a Move package you declare named addresses in the package, instantiate other named addresses, and rename named addresses from other packages within the Move package system. Let's go through each of these actions, and how they are performed in the package's manifest one-by-one:","breadcrumbs":"Packages » Named Addresses During Compilation","id":"216","title":"Named Addresses During Compilation"},"217":{"body":"Let's say we have a Move module in example_pkg/sources/A.move as follows: module named_addr::a { public fun x(): address { @named_addr }\n} We could in example_pkg/Move.toml declare the named address named_addr in two different ways. The first: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" Declares named_addr as a named address in the package example_pkg and that this address can be any valid address value . In particular, an importing package can pick the value of the named address named_addr to be any address it wishes. Intuitively you can think of this as parameterizing the package example_pkg by the named address named_addr, and the package can then be instantiated later on by an importing package. named_addr can also be declared as: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"0xCAFE\" which states that the named address named_addr is exactly 0xCAFE and cannot be changed. This is useful so other importing packages can use this named address without needing to worry about the exact value assigned to it. With these two different declaration methods, there are two ways that information about named addresses can flow in the package graph: The former (\"unassigned named addresses\") allows named address values to flow from the importation site to the declaration site. The latter (\"assigned named addresses\") allows named address values to flow from the declaration site upwards in the package graph to usage sites. With these two methods for flowing named address information throughout the package graph the rules around scoping and renaming become important to understand.","breadcrumbs":"Packages » Declaring Named Addresses","id":"217","title":"Declaring Named Addresses"},"218":{"body":"A named address N in a package P is in scope if: P declares a named address N; or A package in one of P's transitive dependencies declares the named address N and there is a dependency path in the package graph between between P and the declaring package of N with no renaming of N. Additionally, every named address in a package is exported. Because of this and the above scoping rules each package can be viewed as coming with a set of named addresses that will be brought into scope when the package is imported, e.g., if you import example_pkg, that import will also bring the named_addr named address into scope. Because of this, if P imports two packages P1 and P2 both of which declare a named address N an issue arises in P: which \"N\" is meant when N is referred to in P? The one from P1 or P2? To prevent this ambiguity around which package a named address is coming from, we enforce that the sets of scopes introduced by all dependencies in a package are disjoint, and provide a way to rename named addresses when the package that brings them into scope is imported. Renaming a named address when importing can be done as follows in our P, P1, and P2 example above: [package]\nname = \"P\"\n...\n[dependencies]\nP1 = { local = \"some_path_to_P1\", addr_subst = { \"P1N\" = \"N\" } }\nP2 = { local = \"some_path_to_P2\" } With this renaming N refers to the N from P2 and P1N will refer to N coming from P1: module N::A { public fun x(): address { @P1N }\n} It is important to note that renaming is not local : once a named address N has been renamed to N2 in a package P all packages that import P will not see N but only N2 unless N is reintroduced from outside of P. This is why rule (2) in the scoping rules at the start of this section specifies a \"dependency path in the package graph between between P and the declaring package of N with no renaming of N.\"","breadcrumbs":"Packages » Scope and Renaming of Named Addresses","id":"218","title":"Scope and Renaming of Named Addresses"},"219":{"body":"Named addresses can be instantiated multiple times across the package graph as long as it is always with the same value. It is an error if the same named address (regardless of renaming) is instantiated with differing values across the package graph. A Move package can only be compiled if all named addresses resolve to a value. This presents issues if the package wishes to expose an uninstantiated named address. This is what the [dev-addresses] section solves in part. This section can set values for named addresses, but cannot introduce any named addresses. Additionally, only the [dev-addresses] in the root package are included in dev mode. For example a root package with the following manifest would not compile outside of dev mode since named_addr would be uninstantiated: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" [dev-addresses]\nnamed_addr = \"0xC0FFEE\"","breadcrumbs":"Packages » Instantiating Named Addresses","id":"219","title":"Instantiating Named Addresses"},"22":{"body":"As with the other scalar values built-in to the language, boolean values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Bool » Ownership","id":"22","title":"Ownership"},"220":{"body":"The Move package system comes with a command line option as part of the CLI: sui move . Unless a particular path is provided, all package commands will run in the current enclosing Move package. The full list of commands and flags for the Move CLI can be found by running sui move --help.","breadcrumbs":"Packages » Usage and Artifacts","id":"220","title":"Usage and Artifacts"},"221":{"body":"A package can be compiled using CLI commands. This will create a build directory containing build-related artifacts (including bytecode binaries, source maps, and documentation). The general layout of the build directory is as follows: a_move_package\n├── BuildInfo.yaml\n├── bytecode_modules\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mv\n│ │ ...\n│ │ └── \n│ │ └── *.mv\n│ ...\n│ └── *.mv\n├── docs\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.md\n│ │ ...\n│ │ └── \n│ │ └── *.md\n│ ...\n│ └── *.md\n├── source_maps\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mvsm\n│ │ ...\n│ │ └── \n│ │ └── *.mvsm\n│ ...\n│ └── *.mvsm\n└── sources ... └── *.move ├── dependencies │ ├── │ │ └── *.move │ ... │ └── │ └── *.move ... └── *.move","breadcrumbs":"Packages » Artifacts","id":"221","title":"Artifacts"},"222":{"body":"The Move.lock file is generated at the root of the Move package when the package is built. The Move.lock file contains information about your package and its build configuration, and acts as a communication layer between the Move compiler and other tools, like chain-specific command line interfaces and third-party package managers. Like the Move.toml file, the Move.lock file is a text-based TOML file. Unlike the package manifest however, the Move.lock file is not intended for you to edit directly. Processes on the toolchain, like the Move compiler, access and edit the file to read and append relevant information to it. You also must not move the file from the root, as it needs to be at the same level as the Move.toml manifest in the package. If you are using source control for your package, it's recommended practice to check in the Move.lock file that corresponds with your desired built or published package. This ensures that every build of your package is an exact replica of the original, and that changes to the build will be apparent as changes to the Move.lock file. The Move.lock file is a TOML file that currently contains the following fields. Note : other fields may be added to the lock file either in the future, or by third-party package package managers as well.","breadcrumbs":"Packages » Move.lock","id":"222","title":"Move.lock"},"223":{"body":"This section contains the core information needed in the lockfile: The version of the lockfile (needed for backwards compatibility checking, and versioning lockfile changes in the future). The hash of the Move.toml file that was used to generate this lock file. The hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string. The list of dependencies. [move]\nversion = # Lock file version, used for backwards compatibility checking.\nmanifest_digest = # Sha3-256 hash of the Move.toml file that was used to generate this lock file.\ndeps_digest = # Sha3-256 hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string.\ndependencies = { (name = )* } # List of dependencies. Not present if there are no dependencies.","breadcrumbs":"Packages » The [move] Section","id":"223","title":"The [move] Section"},"224":{"body":"After the Move compiler resolves each of the dependencies for the package it writes the location of the dependency to the Move.lock file. If a dependency failed to resolve, the compiler will not write the Move.lock file and the build fails. If all dependencies resolve, the Move.lock file contains the locations (local and remote) of all of the package's transitive dependencies. These will be stored in the Move.lock file in the following format: # ... [[move.package]]\nname = \"A\"\nsource = { git = \"https://github.com/b/c.git\", subdir = \"e/f\", rev = \"a1b2c3\" } [[move.package]]\nname = \"B\"\nsource = { local = \"../local-dep\" }","breadcrumbs":"Packages » The [move.package] Sections","id":"224","title":"The [move.package] Sections"},"225":{"body":"As mentioned above, additional fields may be added to the lock file by external tools. For example, the Sui package manager adds toolchain version information to the lock file that can then be used for on-chain source verification: # ... [move.toolchain-version]\ncompiler-version = # The version of the Move compiler used to build the package, e.g. \"1.21.0\"\nedition = # The edition of the Move language used to build the package, e.g. \"2024.alpha\"\nflavor = # The flavor of the Move compiler used to build the package, e.g. \"sui\"","breadcrumbs":"Packages » The [move.toolchain-version] Section","id":"225","title":"The [move.toolchain-version] Section"},"226":{"body":"Unit testing for Move uses three annotations in the Move source language: #[test] marks a function as a test; #[expected_failure] marks that a test is expected to fail; #[test_only] marks a module or module member ( use , function , struct , or constant ) as code to be included for testing only. These annotations can be placed on any appropriate form with any visibility. Whenever a module or module member is annotated as #[test_only] or #[test], it will not be included in the compiled bytecode unless it is compiled for testing.","breadcrumbs":"Unit Tests » Unit Tests","id":"226","title":"Unit Tests"},"227":{"body":"The #[test] annotation can only be placed on a function with no parameters. This annotation marks the function as a test to be run by the unit testing harness. #[test] // OK\nfun this_is_a_test() { ... } #[test] // Will fail to compile since the test takes an argument\nfun this_is_not_correct(arg: u64) { ... } A test can also be annotated as an #[expected_failure]. This annotation marks that the test is expected to raise an error. There are a number of options that can be used with the #[expected_failure] annotation to ensure only a failure with the specified condition is marked as passing, these options are detailed in Expected Failures . Only functions that have the #[test] annotation can also be annotated as an #[expected_failure]. Some simple examples of using the #[expected_failure] annotation are shown below: #[test]\n#[expected_failure]\npublic fun this_test_will_abort_and_pass() { abort 1 } #[test]\n#[expected_failure]\npublic fun test_will_error_and_pass() { 1/0; } #[test] // Will pass since test fails with the expected abort code constant.\n#[expected_failure(abort_code = ENotFound)] // ENotFound is a constant defined in the module\npublic fun test_will_error_and_pass_abort_code() { abort ENotFound } #[test] // Will fail since test fails with a different error than expected.\n#[expected_failure(abort_code = my_module::ENotFound)]\npublic fun test_will_error_and_fail() { 1/0; } #[test, expected_failure] // Can have multiple in one attribute. This test will pass.\npublic fun this_other_test_will_abort_and_pass() { abort 1 } Note : #[test] and #[test_only] functions can also call entry functions, regardless of their visibility.","breadcrumbs":"Unit Tests » Test Annotations","id":"227","title":"Test Annotations"},"228":{"body":"There are a number of different ways that you can use the #[expected_failure] annotation to specify different types of error conditions. These are:","breadcrumbs":"Unit Tests » Expected Failures","id":"228","title":"Expected Failures"},"229":{"body":"This will pass if the test aborts with the specified constant value in the module that defines the constant and fail otherwise. This is the recommended way of testing for expected test failures. Note : You can reference constants outside of the current module or package in expected_failure annotations. module pkg_addr::other_module { const ENotFound: u64 = 1; public fun will_abort() { abort ENotFound }\n} module pkg_addr::my_module { use pkg_addr::other_module; const ENotFound: u64 = 1; #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { abort ENotFound } #[test] #[expected_failure(abort_code = other_module::ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() } // FAIL: Will not pass since we are expecting the constant from the wrong module. #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() }\n}","breadcrumbs":"Unit Tests » 1. #[expected_failure(abort_code = )]","id":"229","title":"1. #[expected_failure(abort_code = )]"},"23":{"body":"address is a built-in type in Move that is used to represent locations (sometimes called accounts) in storage. An address value is a 256-bit (32 byte) identifier. Move uses addresses to differentiate packages of modules , where each package has its own address and modules. Specific deployments of Move might also use the address value for storage operations. For Sui, address is used to represent \"accounts\", and also objects via strong type wrappers (with sui::object::UID and sui::object::ID). Although an address is a 256 bit integer under the hood, Move addresses are intentionally opaque---they cannot be created from integers, they do not support arithmetic operations, and they cannot be modified. Specific deployments of Move might have native functions to enable some of these operations (e.g., creating an address from bytes vector), but these are not part of the Move language itself. While there are runtime address values (values of type address), they cannot be used to access modules at runtime.","breadcrumbs":"Primitive Types » Address » Address","id":"23","title":"Address"},"230":{"body":"This specifies that the test is expected to fail with an arithmetic error (e.g., integer overflow, division by zero, etc) at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_arith_error() { 1/0; }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_pass1() { 1/0; } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_arith_error_and_pass2() { other_module::will_arith_error() } // FAIL: Will fail since the location we expect it the fail at is different from where the test actually failed. #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_fail() { other_module::will_arith_error() }\n}","breadcrumbs":"Unit Tests » 2. #[expected_failure(arithmetic_error, location = )]","id":"230","title":"2. #[expected_failure(arithmetic_error, location = )]"},"231":{"body":"This specifies that the test is expected to fail with an out of gas error at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_oog() { loop {} }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_pass1() { loop {} } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_oog_and_pass2() { other_module::will_oog() } // FAIL: Will fail since the location we expect it the fail at is different from where // the test actually failed. #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_fail() { other_module::will_oog() }\n}","breadcrumbs":"Unit Tests » 3. #[expected_failure(out_of_gas, location = )]","id":"231","title":"3. #[expected_failure(out_of_gas, location = )]"},"232":{"body":"This specifies that the test is expected to fail with a vector error at the specified location with the given minor_status (if provided). The must be a valid path to a module module location, e.g., Self, or my_package::my_module. The is an optional parameter that specifies the minor status of the vector error. If it is not specified, the test will pass if the test fails with any minor status. If it is specified, the test will only pass if the test fails with a vector error with the specified minor status. module pkg_addr::other_module { public fun vector_borrow_empty() { &vector[][1]; }\n} module pkg_addr::my_module { #[test] #[expected_failure(vector_error, location = Self)] fun vector_abort_same_module() { vector::borrow(&vector[], 1); } #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // Can specify minor statues (i.e., vector-specific error codes) to expect. #[test] #[expected_failure(vector_error, minor_status = 1, location = Self)] fun native_abort_good_right_code() { vector::borrow(&vector[], 1); } // FAIL: correct error, but wrong location. #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // FAIL: correct error and location but the minor status differs so this test will fail. #[test] #[expected_failure(vector_error, minor_status = 0, location = Self)] fun vector_abort_wrong_minor_code() { vector::borrow(&vector[], 1); }\n}","breadcrumbs":"Unit Tests » 4. #[expected_failure(vector_error, minor_status = , location = )]","id":"232","title":"4. #[expected_failure(vector_error, minor_status = , location = )]"},"233":{"body":"This will pass if the test aborts with any error code. You should be incredibly careful using this to annotate expected tests failures, and always prefer one of the ways described above instead. Examples of these types of annotations are: #[test]\n#[expected_failure]\nfun test_will_abort_and_pass1() { abort 1 } #[test]\n#[expected_failure]\nfun test_will_arith_error_and_pass2() { 1/0; }","breadcrumbs":"Unit Tests » 5. #[expected_failure]","id":"233","title":"5. #[expected_failure]"},"234":{"body":"A module and any of its members can be declared as test only. If an item is annotated as #[test_only] the item will only be included in the compiled Move bytecode when compiled in test mode. Additionally, when compiled outside of test mode, any non-test uses of a #[test_only] module will raise an error during compilation. Note : functions that are annotated with #[test_only] will only be available to be called from test code, but they themselves are not tests and will not be run as tests by the unit testing framework. #[test_only] // test only attributes can be attached to modules\nmodule abc { ... } #[test_only] // test only attributes can be attached to constants\nconst MY_ADDR: address = @0x1; #[test_only] // .. to uses\nuse pkg_addr::some_other_module; #[test_only] // .. to structs\npublic struct SomeStruct { ... } #[test_only] // .. and functions. Can only be called from test code, but this is _not_ a test!\nfun test_only_function(...) { ... }","breadcrumbs":"Unit Tests » Test Only Annotations","id":"234","title":"Test Only Annotations"},"235":{"body":"Unit tests for a Move package can be run with the sui move test command . When running tests, every test will either PASS, FAIL, or TIMEOUT. If a test case fails, the location of the failure along with the function name that caused the failure will be reported if possible. You can see an example of this below. A test will be marked as timing out if it exceeds the maximum number of instructions that can be executed for any single test. This bound can be changed using the options below. Additionally, while the result of a test is always deterministic, tests are run in parallel by default, so the ordering of test results in a test run is non-deterministic unless running with only one thread, which can be configured via an option. These aforementioned options are two among many that can fine-tune testing and help debug failing tests. To see all available options, and a description of what each one does, pass the --help flag to the sui move test command: $ sui move test --help","breadcrumbs":"Unit Tests » Running Unit Tests","id":"235","title":"Running Unit Tests"},"236":{"body":"A simple module using some of the unit testing features is shown in the following example: First create an empty package and change directory into it: $ sui move new test_example; cd test_example Next add the following module under the sources directory: // filename: sources/my_module.move\nmodule test_example::my_module { public struct Wrapper(u64) const ECoinIsZero: u64 = 0; public fun make_sure_non_zero_coin(coin: Wrapper): Wrapper { assert!(coin.0 > 0, ECoinIsZero); coin } #[test] fun make_sure_non_zero_coin_passes() { let coin = Wrapper(1); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test] // Or #[expected_failure] if we don't care about the abort code #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails() { let coin = Wrapper(0); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test_only] // test only helper function fun make_coin_zero(coin: &mut Wrapper) { coin.0 = 0; } #[test] #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails2() { let mut coin = Wrapper(10); coin.make_coin_zero(); let Wrapper(_) = make_sure_non_zero_coin(coin); }\n}","breadcrumbs":"Unit Tests » Example","id":"236","title":"Example"},"237":{"body":"You can then run these tests with the move test command: $ sui move test\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2\nTest result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Running Tests","id":"237","title":"Running Tests"},"238":{"body":"Passing specific tests to run You can run a specific test, or a set of tests with sui move test . This will only run tests whose fully qualified name contains . For example if we wanted to only run tests with \"non_zero\" in their name: $ sui move test non_zero\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\nTest result: OK. Total tests: 1; passed: 1; failed: 0 -i or --gas_used This bounds the amount of gas that can be consumed for any one test to : $ sui move test -i 0\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ TIMEOUT ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails2 Test failures: Failures in 0x0::my_module: ┌── make_sure_non_zero_coin_passes ──────\n│ Test timed out\n└────────────────── ┌── make_sure_zero_coin_fails ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:22:27\n│ │\n│ 21 │ fun make_sure_zero_coin_fails() {\n│ │ ------------------------- In this function in 0x0::my_module\n│ 22 │ let coin = MyCoin(0);\n│ │ ^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── ┌── make_sure_zero_coin_fails2 ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:34:31\n│ │\n│ 33 │ fun make_sure_zero_coin_fails2() {\n│ │ -------------------------- In this function in 0x0::my_module\n│ 34 │ let mut coin = MyCoin(10);\n│ │ ^^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── Test result: FAILED. Total tests: 3; passed: 0; failed: 3 -s or --statistics With these flags you can gather statistics about the tests run and report the runtime and gas used for each test. You can additionally add csv (sui move test -s csv) to get the gas usage in a csv output format. For example, if we wanted to see the statistics for the tests in the example above: $ sui move test -s\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2 Test Statistics: ┌────────────────────────────────────────────────┬────────────┬───────────────────────────┐\n│ Test Name │ Time │ Gas Used │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_non_zero_coin_passes │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails2 │ 0.001 │ 1 │\n└────────────────────────────────────────────────┴────────────┴───────────────────────────┘ Test result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Using Test Flags","id":"238","title":"Using Test Flags"},"239":{"body":"See Sui's Coding Conventions for Move","breadcrumbs":"Coding Conventions","id":"239","title":"Coding Conventions"},"24":{"body":"Addresses come in two flavors, named or numerical. The syntax for a named address follows the same rules for any named identifier in Move. The syntax of a numerical address is not restricted to hex-encoded values, and any valid u256 numerical value can be used as an address value, e.g., 42, 0xCAFE, and 10_000 are all valid numerical address literals. To distinguish when an address is being used in an expression context or not, the syntax when using an address differs depending on the context where it's used: When an address is used as an expression, the address must be prefixed by the @ character, i.e., @ or @. Outside of expression contexts, the address may be written without the leading @ character, i.e., or . In general, you can think of @ as an operator that takes an address from being a namespace item to being an expression item.","breadcrumbs":"Primitive Types » Address » Addresses and Their Syntax","id":"24","title":"Addresses and Their Syntax"},"240":{"body":"NOTE: this feature has been superseded by public(package) . The friend syntax was used to declare modules that are trusted by the current module. A trusted module is allowed to call any function defined in the current module that have the public(friend) visibility. For details on function visibilities, refer to the Visibility section in Functions .","breadcrumbs":"Friends » DEPRECATED: Friends","id":"240","title":"DEPRECATED: Friends"},"241":{"body":"A module can declare other modules as friends via friend declaration statements, in the format of friend — friend declaration using fully qualified module name like the example below, or module 0x42::a { friend 0x42::b;\n} friend — friend declaration using a module name alias, where the module alias is introduced via the use statement. module 0x42::a { use 0x42::b; friend b;\n} A module may have multiple friend declarations, and the union of all the friend modules forms the friend list. In the example below, both 0x42::B and 0x42::C are considered as friends of 0x42::A. module 0x42::a { friend 0x42::b; friend 0x42::c;\n} Unlike use statements, friend can only be declared in the module scope and not in the expression block scope. friend declarations may be located anywhere a top-level construct (e.g., use, function, struct, etc.) is allowed. However, for readability, it is advised to place friend declarations near the beginning of the module definition.","breadcrumbs":"Friends » Friend declaration","id":"241","title":"Friend declaration"},"242":{"body":"Friend declarations are subject to the following rules: A module cannot declare itself as a friend. module 0x42::m { friend Self; // ERROR! }\n// ^^^^ Cannot declare the module itself as a friend module 0x43::m { friend 0x43::M; // ERROR! }\n// ^^^^^^^ Cannot declare the module itself as a friend Friend modules must be known by the compiler module 0x42::m { friend 0x42::nonexistent; // ERROR! }\n// ^^^^^^^^^^^^^^^^^ Unbound module '0x42::nonexistent' Friend modules must be within the same account address. module 0x42::m {} module 0x42::n { friend 0x42::m; // ERROR! }\n// ^^^^^^^ Cannot declare modules out of the current address as a friend Friends relationships cannot create cyclic module dependencies. Cycles are not allowed in the friend relationships, e.g., the relation 0x2::a friends 0x2::b friends 0x2::c friends 0x2::a is not allowed. More generally, declaring a friend module adds a dependency upon the current module to the friend module (because the purpose is for the friend to call functions in the current module). If that friend module is already used, either directly or transitively, a cycle of dependencies would be created. module 0x2::a { use 0x2::c; friend 0x2::b; public fun a() { c::c() }\n} module 0x2::b { friend 0x2::c; // ERROR!\n// ^^^^^^ This friend relationship creates a dependency cycle: '0x2::b' is a friend of '0x2::a' uses '0x2::c' is a friend of '0x2::b'\n} module 0x2::c { public fun c() {}\n} The friend list for a module cannot contain duplicates. module 0x42::a {} module 0x42::m { use 0x42::a as aliased_a; friend 0x42::A; friend aliased_a; // ERROR!\n// ^^^^^^^^^ Duplicate friend declaration '0x42::a'. Friend declarations in a module must be unique\n}","breadcrumbs":"Friends » Friend declaration rules","id":"242","title":"Friend declaration rules"},"25":{"body":"Named addresses are a feature that allow identifiers to be used in place of numerical values in any spot where addresses are used, and not just at the value level. Named addresses are declared and bound as top level elements (outside of modules and scripts) in Move packages, or passed as arguments to the Move compiler. Named addresses only exist at the source language level and will be fully substituted for their value at the bytecode level. Because of this, modules and module members should be accessed through the module's named address and not through the numerical value assigned to the named address during compilation. So while use my_addr::foo is equivalent to use 0x2::foo (if my_addr is assigned 0x2), it is a best practice to always use the my_addr name.","breadcrumbs":"Primitive Types » Address » Named Addresses","id":"25","title":"Named Addresses"},"26":{"body":"// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000001\nlet a1: address = @0x1;\n// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000042\nlet a2: address = @0x42;\n// shorthand for\n// 0x00000000000000000000000000000000000000000000000000000000DEADBEEF\nlet a3: address = @0xDEADBEEF;\n// shorthand for\n// 0x000000000000000000000000000000000000000000000000000000000000000A\nlet a4: address = @0x0000000000000000000000000000000A;\n// Assigns `a5` the value of the named address `std`\nlet a5: address = @std;\n// Any valid numerical value can be used as an address\nlet a6: address = @66;\nlet a7: address = @42_000; module 66::some_module { // Not in expression context, so no @ needed use 0x1::other_module; // Not in expression context so no @ needed use std::vector; // Can use a named address as a namespace item ...\n} module std::other_module { // Can use a named address when declaring a module ...\n}","breadcrumbs":"Primitive Types » Address » Examples","id":"26","title":"Examples"},"27":{"body":"vector is the only primitive collection type provided by Move. A vector is a homogeneous collection of T's that can grow or shrink by pushing/popping values off the \"end\". A vector can be instantiated with any type T. For example, vector, vector
, vector<0x42::my_module::MyData>, and vector> are all valid vector types.","breadcrumbs":"Primitive Types » Vector » Vector","id":"27","title":"Vector"},"28":{"body":"","breadcrumbs":"Primitive Types » Vector » Literals","id":"28","title":"Literals"},"29":{"body":"Vectors of any type can be created with vector literals. Syntax Type Description vector[] vector[]: vector where T is any single, non-reference type An empty vector vector[e1, ..., en] vector[e1, ..., en]: vector where e_i: T s.t. 0 < i <= n and n > 0 A vector with n elements (of length n) In these cases, the type of the vector is inferred, either from the element type or from the vector's usage. If the type cannot be inferred, or simply for added clarity, the type can be specified explicitly: vector[]: vector\nvector[e1, ..., en]: vector Example Vector Literals (vector[]: vector);\n(vector[0u8, 1u8, 2u8]: vector);\n(vector[]: vector);\n(vector
[@0x42, @0x100]: vector
);","breadcrumbs":"Primitive Types » Vector » General vector Literals","id":"29","title":"General vector Literals"},"3":{"body":"The module test_addr::test part specifies that the module test will be published under the numerical address value assigned for the name test_addr in the package settings . Modules should normally be declared using named addresses (as opposed to using the numerical value directly). For example: module test_addr::test { public struct Example has copy, drop { a: address } friend test_addr::another_test; public fun print() { let example = Example { a: @test_addr }; debug::print(&example) }\n} These named addresses commonly match the name of the package . Because named addresses only exist at the source language level and during compilation, named addresses will be fully substituted for their value at the bytecode level. For example if we had the following code: fun example() { my_addr::m::foo(@my_addr);\n} and we compiled it with my_addr set to 0xC0FFEE, then it would be operationally equivalent to the following: fun example() { 0xC0FFEE::m::foo(@0xC0FFEE);\n} While at the source level these two different accesses are equivalent, it is a best practice to always use the named address and not the numerical value assigned to that address. Module names can start with a lowercase letter from a to z or an uppercase letter from A to Z. After the first character, module names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. module a::my_module {}\nmodule a::foo_bar_42 {} Typically, module names start with a lowercase letter. A module named my_module should be stored in a source file named my_module.move.","breadcrumbs":"Modules » Names","id":"3","title":"Names"},"30":{"body":"A common use-case for vectors in Move is to represent \"byte arrays\", which are represented with vector. These values are often used for cryptographic purposes, such as a public key or a hash result. These values are so common that specific syntax is provided to make the values more readable, as opposed to having to use vector[] where each individual u8 value is specified in numeric form. There are currently two supported types of vector literals, byte strings and hex strings . Byte Strings Byte strings are quoted string literals prefixed by a b, e.g. b\"Hello!\\n\". These are ASCII encoded strings that allow for escape sequences. Currently, the supported escape sequences are: Escape Sequence Description \\n New line (or Line feed) \\r Carriage return \\t Tab \\\\ Backslash \\0 Null \\\" Quote \\xHH Hex escape, inserts the hex byte sequence HH Hex Strings Hex strings are quoted string literals prefixed by a x, e.g. x\"48656C6C6F210A\". Each byte pair, ranging from 00 to FF, is interpreted as hex encoded u8 value. So each byte pair corresponds to a single entry in the resulting vector. Example String Literals fun byte_and_hex_strings() { assert!(b\"\" == x\"\", 0); assert!(b\"Hello!\\n\" == x\"48656C6C6F210A\", 1); assert!(b\"\\x48\\x65\\x6C\\x6C\\x6F\\x21\\x0A\" == x\"48656C6C6F210A\", 2); assert!( b\"\\\"Hello\\tworld!\\\"\\n \\r \\\\Null=\\0\" == x\"2248656C6C6F09776F726C6421220A200D205C4E756C6C3D00\", 3 );\n}","breadcrumbs":"Primitive Types » Vector » vector literals","id":"30","title":"vector literals"},"31":{"body":"vector supports the following operations via the std::vector module in the Move standard library: Function Description Aborts? vector::empty(): vector Create an empty vector that can store values of type T Never vector::singleton(t: T): vector Create a vector of size 1 containing t Never vector::push_back(v: &mut vector, t: T) Add t to the end of v Never vector::pop_back(v: &mut vector): T Remove and return the last element in v If v is empty vector::borrow(v: &vector, i: u64): &T Return an immutable reference to the T at index i If i is not in bounds vector::borrow_mut(v: &mut vector, i: u64): &mut T Return a mutable reference to the T at index i If i is not in bounds vector::destroy_empty(v: vector) Delete v If v is not empty vector::append(v1: &mut vector, v2: vector) Add the elements in v2 to the end of v1 Never vector::contains(v: &vector, e: &T): bool Return true if e is in the vector v. Otherwise, returns false Never vector::swap(v: &mut vector, i: u64, j: u64) Swaps the elements at the ith and jth indices in the vector v If i or j is out of bounds vector::reverse(v: &mut vector) Reverses the order of the elements in the vector v in place Never vector::index_of(v: &vector, e: &T): (bool, u64) Return (true, i) if e is in the vector v at index i. Otherwise, returns (false, 0) Never vector::remove(v: &mut vector, i: u64): T Remove the ith element of the vector v, shifting all subsequent elements. This is O(n) and preserves ordering of elements in the vector If i is out of bounds vector::swap_remove(v: &mut vector, i: u64): T Swap the ith element of the vector v with the last element and then pop the element, This is O(1), but does not preserve ordering of elements in the vector If i is out of bounds More operations may be added over time.","breadcrumbs":"Primitive Types » Vector » Operations","id":"31","title":"Operations"},"32":{"body":"use std::vector; let mut v = vector::empty();\nvector::push_back(&mut v, 5);\nvector::push_back(&mut v, 6); assert!(*vector::borrow(&v, 0) == 5, 42);\nassert!(*vector::borrow(&v, 1) == 6, 42);\nassert!(vector::pop_back(&mut v) == 6, 42);\nassert!(vector::pop_back(&mut v) == 5, 42);","breadcrumbs":"Primitive Types » Vector » Example","id":"32","title":"Example"},"33":{"body":"Some behaviors of vector depend on the abilities of the element type, T. For example, vectors containing elements that do not have drop cannot be implicitly discarded like v in the example above--they must be explicitly destroyed with vector::destroy_empty. Note that vector::destroy_empty will abort at runtime unless vec contains zero elements: fun destroy_any_vector(vec: vector) { vector::destroy_empty(vec) // deleting this line will cause a compiler error\n} But no error would occur for dropping a vector that contains elements with drop: fun destroy_droppable_vector(vec: vector) { // valid! // nothing needs to be done explicitly to destroy the vector\n} Similarly, vectors cannot be copied unless the element type has copy. In other words, a vector has copy if and only if T has copy. Note that it will be implicitly copied if needed: let x = vector[10];\nlet y = x; // implicit copy\nlet z = x;\n(y, z) Keep in mind, copies of large vectors can be expensive. If this is a concern, annotating the intended usage can prevent accidental copies. For example, let x = vector[10];\nlet y = move x;\nlet z = x; // ERROR! x has been moved\n(y, z) For more details see the sections on type abilities and generics .","breadcrumbs":"Primitive Types » Vector » Destroying and copying vectors","id":"33","title":"Destroying and copying vectors"},"34":{"body":"As mentioned above , vector values can be copied only if the elements can be copied. In that case, the copy can be done via a copy or a dereference * .","breadcrumbs":"Primitive Types » Vector » Ownership","id":"34","title":"Ownership"},"35":{"body":"Move has two types of references: immutable & and mutable &mut. Immutable references are read only, and cannot modify the underlying value (or any of its fields). Mutable references allow for modifications via a write through that reference. Move's type system enforces an ownership discipline that prevents reference errors.","breadcrumbs":"Primitive Types » References » References","id":"35","title":"References"},"36":{"body":"Move provides operators for creating and extending references as well as converting a mutable reference to an immutable one. Here and elsewhere, we use the notation e: T for \"expression e has type T\". Syntax Type Description &e &T where e: T and T is a non-reference type Create an immutable reference to e &mut e &mut T where e: T and T is a non-reference type Create a mutable reference to e. &e.f &T where e.f: T Create an immutable reference to field f of struct e. &mut e.f &mut T where e.f: T Create a mutable reference to field f of structe. freeze(e) &T where e: &mut T Convert the mutable reference e into an immutable reference. The &e.f and &mut e.f operators can be used both to create a new reference into a struct or to extend an existing reference: let s = S { f: 10 };\nlet f_ref1: &u64 = &s.f; // works\nlet s_ref: &S = &s;\nlet f_ref2: &u64 = &s_ref.f // also works A reference expression with multiple fields works as long as both structs are in the same module: public struct A { b: B }\npublic struct B { c : u64 }\nfun f(a: &A): &u64 { &a.b.c\n} Finally, note that references to references are not allowed: let x = 7;\nlet y: &u64 = &x;\nlet z: &&u64 = &y; // ERROR! will not compile","breadcrumbs":"Primitive Types » References » Reference Operators","id":"36","title":"Reference Operators"},"37":{"body":"Both mutable and immutable references can be read to produce a copy of the referenced value. Only mutable references can be written. A write *x = v discards the value previously stored in x and updates it with v. Both operations use the C-like * syntax. However, note that a read is an expression, whereas a write is a mutation that must occur on the left hand side of an equals. Syntax Type Description *e T where e is &T or &mut T Read the value pointed to by e *e1 = e2 () where e1: &mut T and e2: T Update the value in e1 with e2. In order for a reference to be read, the underlying type must have the copy ability as reading the reference creates a new copy of the value. This rule prevents the copying of assets: fun copy_coin_via_ref_bad(c: Coin) { let c_ref = &c; let counterfeit: Coin = *c_ref; // not allowed! pay(c); pay(counterfeit);\n} Dually: in order for a reference to be written to, the underlying type must have the drop ability as writing to the reference will discard (or \"drop\") the old value. This rule prevents the destruction of resource values: fun destroy_coin_via_ref_bad(mut ten_coins: Coin, c: Coin) { let ref = &mut ten_coins; *ref = c; // ERROR! not allowed--would destroy 10 coins!\n}","breadcrumbs":"Primitive Types » References » Reading and Writing Through References","id":"37","title":"Reading and Writing Through References"},"38":{"body":"A mutable reference can be used in a context where an immutable reference is expected: let mut x = 7;\nlet y: &u64 = &mut x; This works because the under the hood, the compiler inserts freeze instructions where they are needed. Here are a few more examples of freeze inference in action: fun takes_immut_returns_immut(x: &u64): &u64 { x } // freeze inference on return value\nfun takes_mut_returns_immut(x: &mut u64): &u64 { x } fun expression_examples() { let mut x = 0; let mut y = 0; takes_immut_returns_immut(&x); // no inference takes_immut_returns_immut(&mut x); // inferred freeze(&mut x) takes_mut_returns_immut(&mut x); // no inference assert!(&x == &mut y, 42); // inferred freeze(&mut y)\n} fun assignment_examples() { let x = 0; let y = 0; let imm_ref: &u64 = &x; imm_ref = &x; // no inference imm_ref = &mut y; // inferred freeze(&mut y)\n}","breadcrumbs":"Primitive Types » References » freeze inference","id":"38","title":"freeze inference"},"39":{"body":"With this freeze inference, the Move type checker can view &mut T as a subtype of &T. As shown above, this means that anywhere for any expression where a &T value is used, a &mut T value can also be used. This terminology is used in error messages to concisely indicate that a &mut T was needed where a &T was supplied. For example module a::example { fun read_and_assign(store: &mut u64, new_value: &u64) { *store = *new_value } fun subtype_examples() { let mut x: &u64 = &0; let mut y: &mut u64 = &mut 1; x = &mut 1; // valid y = &2; // ERROR! invalid! read_and_assign(y, x); // valid read_and_assign(x, y); // ERROR! invalid! }\n} will yield the following error messages error: ┌── example.move:11:9 ─── │ 12 │ y = &2; // invalid! │ ^ Invalid assignment to local 'y' · 12 │ y = &2; // invalid! │ -- The type: '&{integer}' · 9 │ let mut y: &mut u64 = &mut 1; │ -------- Is not a subtype of: '&mut u64' │ error: ┌── example.move:14:9 ─── │ 15 │ read_and_assign(x, y); // invalid! │ ^^^^^^^^^^^^^^^^^^^^^ Invalid call of 'a::example::read_and_assign'. Invalid argument for parameter 'store' · 8 │ let mut x: &u64 = &0; │ ---- The type: '&u64' · 3 │ fun read_and_assign(store: &mut u64, new_value: &u64) { │ -------- Is not a subtype of: '&mut u64' │ The only other types that currently have subtyping are tuples","breadcrumbs":"Primitive Types » References » Subtyping","id":"39","title":"Subtyping"},"4":{"body":"All members inside a module block can appear in any order. Fundamentally, a module is a collection of types and functions . The use keyword refers to members from other modules. The const keyword defines constants that can be used in the functions of a module. The friend syntax is a deprecated concept for specifying a list of trusted modules. The concept has been superseded by public(package)","breadcrumbs":"Modules » Members","id":"4","title":"Members"},"40":{"body":"Both mutable and immutable references can always be copied and extended even if there are existing copies or extensions of the same reference : fun reference_copies(s: &mut S) { let s_copy1 = s; // ok let s_extension = &mut s.f; // also ok let s_copy2 = s; // still ok ...\n} This might be surprising for programmers familiar with Rust's ownership system, which would reject the code above. Move's type system is more permissive in its treatment of copies , but equally strict in ensuring unique ownership of mutable references before writes.","breadcrumbs":"Primitive Types » References » Ownership","id":"40","title":"Ownership"},"41":{"body":"References and tuples are the only types that cannot be stored as a field value of structs, which also means that they cannot exist in storage or objects . All references created during program execution will be destroyed when a Move program terminates; they are entirely ephemeral. This also applies to all types without the store ability: any value of a non-store type must be destroyed before the program terminates. ability , but note that references and tuples go a step further by never being allowed in structs in the first place. This is another difference between Move and Rust, which allows references to be stored inside of structs. One could imagine a fancier, more expressive, type system that would allow references to be stored in structs. We could allow references inside of structs that do not have the store ability , but the core difficulty is that Move has a fairly complex system for tracking static reference safety. This aspect of the type system would also have to be extended to support storing references inside of structs. In short, Move's reference safety system would have to expand to support stored references, and it is something we are keeping an eye on as the language evolves.","breadcrumbs":"Primitive Types » References » References Cannot Be Stored","id":"41","title":"References Cannot Be Stored"},"42":{"body":"Move does not fully support tuples as one might expect coming from another language with them as a first-class value . However, in order to support multiple return values, Move has tuple-like expressions. These expressions do not result in a concrete value at runtime (there are no tuples in the bytecode), and as a result they are very limited: They can only appear in expressions (usually in the return position for a function). They cannot be bound to local variables. They cannot be bound to local variables. They cannot be stored in structs. Tuple types cannot be used to instantiate generics. Similarly, unit () is a type created by the Move source language in order to be expression based. The unit value () does not result in any runtime value. We can consider unit() to be an empty tuple, and any restrictions that apply to tuples also apply to unit. It might feel weird to have tuples in the language at all given these restrictions. But one of the most common use cases for tuples in other languages is for functions to allow functions to return multiple values. Some languages work around this by forcing the users to write structs that contain the multiple return values. However in Move, you cannot put references inside of structs . This required Move to support multiple return values. These multiple return values are all pushed on the stack at the bytecode level. At the source level, these multiple return values are represented using tuples.","breadcrumbs":"Primitive Types » Tuples and Unit » Tuples and Unit","id":"42","title":"Tuples and Unit"},"43":{"body":"Tuples are created by a comma separated list of expressions inside of parentheses. Syntax Type Description () (): () Unit, the empty tuple, or the tuple of arity 0 (e1, ..., en) (e1, ..., en): (T1, ..., Tn) where e_i: Ti s.t. 0 < i <= n and n > 0 A n-tuple, a tuple of arity n, a tuple with n elements Note that (e) does not have type (e): (t), in other words there is no tuple with one element. If there is only a single element inside of the parentheses, the parentheses are only used for disambiguation and do not carry any other special meaning. Sometimes, tuples with two elements are called \"pairs\" and tuples with three elements are called \"triples.\"","breadcrumbs":"Primitive Types » Tuples and Unit » Literals","id":"43","title":"Literals"},"44":{"body":"module 0x42::example { // all 3 of these functions are equivalent // when no return type is provided, it is assumed to be `()` fun returns_unit_1() { } // there is an implicit () value in empty expression blocks fun returns_unit_2(): () { } // explicit version of `returns_unit_1` and `returns_unit_2` fun returns_unit_3(): () { () } fun returns_3_values(): (u64, bool, address) { (0, false, @0x42) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") }\n}","breadcrumbs":"Primitive Types » Tuples and Unit » Examples","id":"44","title":"Examples"},"45":{"body":"The only operation that can be done on tuples currently is destructuring.","breadcrumbs":"Primitive Types » Tuples and Unit » Operations","id":"45","title":"Operations"},"46":{"body":"For tuples of any size, they can be destructured in either a let binding or in an assignment. For example: module 0x42::example { // all 3 of these functions are equivalent fun returns_unit() {} fun returns_2_values(): (bool, bool) { (true, false) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") } fun examples(cond: bool) { let () = (); let (mut x, mut y): (u8, u64) = (0, 1); let (mut a, mut b, mut c, mut d) = (@0x0, 0, false, b\"\"); () = (); (x, y) = if (cond) (1, 2) else (3, 4); (a, b, c, d) = (@0x1, 1, true, b\"1\"); } fun examples_with_function_calls() { let () = returns_unit(); let (mut x, mut y): (bool, bool) = returns_2_values(); let (mut a, mut b, mut c, mut d) = returns_4_values(&0); () = returns_unit(); (x, y) = returns_2_values(); (a, b, c, d) = returns_4_values(&1); }\n} For more details, see Move Variables .","breadcrumbs":"Primitive Types » Tuples and Unit » Destructuring","id":"46","title":"Destructuring"},"47":{"body":"Along with references, tuples are the only types that have subtyping in Move. Tuples have subtyping only in the sense that subtype with references (in a covariant way). For example: let x: &u64 = &0;\nlet y: &mut u64 = &mut 1; // (&u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (a, b): (&u64, &u64) = (x, y); // (&mut u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (c, d): (&u64, &u64) = (y, y); // ERROR! (&u64, &mut u64) is NOT a subtype of (&mut u64, &mut u64)\n// since &u64 is NOT a subtype of &mut u64\nlet (e, f): (&mut u64, &mut u64) = (x, y);","breadcrumbs":"Primitive Types » Tuples and Unit » Subtyping","id":"47","title":"Subtyping"},"48":{"body":"As mentioned above, tuple values don't really exist at runtime. And currently they cannot be stored into local variables because of this (but it is likely that this feature will come at some point in the future). As such, tuples can only be moved currently, as copying them would require putting them into a local variable first.","breadcrumbs":"Primitive Types » Tuples and Unit » Ownership","id":"48","title":"Ownership"},"49":{"body":"Local variables in Move are lexically (statically) scoped. New variables are introduced with the keyword let, which will shadow any previous local with the same name. Locals marked as mut are mutable and can be updated both directly and via a mutable reference.","breadcrumbs":"Local Variables and Scopes » Local Variables and Scope","id":"49","title":"Local Variables and Scope"},"5":{"body":"The primitive types are the basic building blocks of the language. These primitive types can be used on their own or can be used be used to build more complex, user-defined types, e.g. in a struct . Integers Bool Address Vector These primitive types are used in conjunction with other types References Tuples and Unit","breadcrumbs":"Primitive Types » Primitive Types","id":"5","title":"Primitive Types"},"50":{"body":"","breadcrumbs":"Local Variables and Scopes » Declaring Local Variables","id":"50","title":"Declaring Local Variables"},"51":{"body":"Move programs use let to bind variable names to values: let x = 1;\nlet y = x + x: let can also be used without binding a value to the local. let x; The local can then be assigned a value later. let x;\nif (cond) { x = 1\n} else { x = 0\n} This can be very helpful when trying to extract a value from a loop when a default value cannot be provided. let x;\nlet cond = true;\nlet i = 0;\nloop { let (res, cond) = foo(i); if (!cond) { x = res; break; }; i = i + 1;\n} To modify a local variable after it is assigned, or to borrow it mutably &mut, it must be declared as mut. let mut x = 0;\nif (cond) x = x + 1;\nfoo(&mut x); For more details see the section on assignments below.","breadcrumbs":"Local Variables and Scopes » let bindings","id":"51","title":"let bindings"},"52":{"body":"Move's type system prevents a local variable from being used before it has been assigned. let x;\nx + x // ERROR! x is used before being assigned let x;\nif (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases let x;\nwhile (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases","breadcrumbs":"Local Variables and Scopes » Variables must be assigned before use","id":"52","title":"Variables must be assigned before use"},"53":{"body":"Variable names can contain underscores _, letters a to z, letters A to Z, and digits 0 to 9. Variable names must start with either an underscore _ or a letter a through z. They cannot start with uppercase letters. // all valid\nlet x = e;\nlet _x = e;\nlet _A = e;\nlet x0 = e;\nlet xA = e;\nlet foobar_123 = e; // all invalid\nlet X = e; // ERROR!\nlet Foo = e; // ERROR!","breadcrumbs":"Local Variables and Scopes » Valid variable names","id":"53","title":"Valid variable names"},"54":{"body":"The type of a local variable can almost always be inferred by Move's type system. However, Move allows explicit type annotations that can be useful for readability, clarity, or debuggability. The syntax for adding a type annotation is: let x: T = e; // \"Variable x of type T is initialized to expression e\" Some examples of explicit type annotations: module 0x42::example { public struct S { f: u64, g: u64 } fun annotated() { let u: u8 = 0; let b: vector = b\"hello\"; let a: address = @0x0; let (x, y): (&u64, &mut u64) = (&0, &mut 1); let S { f, g: f2 }: S = S { f: 0, g: 1 }; }\n} Note that the type annotations must always be to the right of the pattern: // ERROR! should be let (x, y): (&u64, &mut u64) = ...\nlet (x: &u64, y: &mut u64) = (&0, &mut 1);","breadcrumbs":"Local Variables and Scopes » Type annotations","id":"54","title":"Type annotations"},"55":{"body":"In some cases, a local type annotation is required if the type system cannot infer the type. This commonly occurs when the type argument for a generic type cannot be inferred. For example: let _v1 = vector[]; // ERROR!\n// ^^^^^^^^ Could not infer this type. Try adding an annotation\nlet v2: vector = vector[]; // no error In a rarer case, the type system might not be able to infer a type for divergent code (where all the following code is unreachable). Both return and abort are expressions and can have any type. A loop has type () if it has a break (or T if has a break e where e: T), but if there is no break out of the loop, it could have any type. If these types cannot be inferred, a type annotation is required. For example, this code: let a: u8 = return ();\nlet b: bool = abort 0;\nlet c: signer = loop (); let x = return (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet y = abort 0; // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet z = loop (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation Adding type annotations to this code will expose other errors about dead code or unused local variables, but the example is still helpful for understanding this problem.","breadcrumbs":"Local Variables and Scopes » When annotations are necessary","id":"55","title":"When annotations are necessary"},"56":{"body":"let can introduce more than one local at a time using tuples. The locals declared inside the parenthesis are initialized to the corresponding values from the tuple. let () = ();\nlet (x0, x1) = (0, 1);\nlet (y0, y1, y2) = (0, 1, 2);\nlet (z0, z1, z2, z3) = (0, 1, 2, 3); The type of the expression must match the arity of the tuple pattern exactly. let (x, y) = (0, 1, 2); // ERROR!\nlet (x, y, z, q) = (0, 1, 2); // ERROR! You cannot declare more than one local with the same name in a single let. let (x, x) = 0; // ERROR! The mutability of the local variables declared can be mixed. let (mut x, y) = (0, 1);\nx = 1;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with tuples","id":"56","title":"Multiple declarations with tuples"},"57":{"body":"let can also introduce more than one local variables at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this: public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Similarly for positional structs public struct P(u64, u64) and let P (local1, local2) = P ( 1, 2 );\n// local1: u64\n// local2: u64 Here is a more complicated example: module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let Y { x1: X(f), x2 } = Y { x1: new_x(), x2: new_x() }; assert!(f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = Y { x1: new_x(), x2: new_x() }; assert!(f1 + f2 == 2, 42); }\n} Fields of structs can serve double duty, identifying the field to bind and the name of the variable. This is sometimes referred to as punning. let Y { x1, x2 } = e; is equivalent to: let Y { x1: x1, x2: x2 } = e; As shown with tuples, you cannot declare more than one local with the same name in a single let. let Y { x1: x, x2: x } = e; // ERROR! And as with tuples, the mutability of the local variables declared can be mixed. let Y { x1: mut x1, x2 } = e; Furthermore, the mutability of annotation can be applied to the punned fields. Giving the equivalent example let Y { mut x1, x2 } = e;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with structs","id":"57","title":"Multiple declarations with structs"},"58":{"body":"In the examples above for structs, the bound value in the let was moved, destroying the struct value and binding its fields. public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 In this scenario the struct value T { f1: 1, f2: 2 } no longer exists after the let. If you wish instead to not move and destroy the struct value, you can borrow each of its fields. For example: let t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &t;\n// local1: &u64\n// local2: &u64 And similarly with mutable references: let mut t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &mut t;\n// local1: &mut u64\n// local2: &mut u64 This behavior can also work with nested structs. module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let mut y = Y { x1: new_x(), x2: new_x() }; let Y { x1: X(f), x2 } = &y; assert!(*f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = &mut y; *f1 = *f1 + 1; *f2 = *f2 + 1; assert!(*f1 + *f2 == 4, 42); }\n}","breadcrumbs":"Local Variables and Scopes » Destructuring against references","id":"58","title":"Destructuring against references"},"59":{"body":"In let bindings, it is often helpful to ignore some values. Local variables that start with _ will be ignored and not introduce a new variable fun three(): (u64, u64, u64) { (0, 1, 2)\n} let (x1, _, z1) = three();\nlet (x2, _y, z2) = three();\nassert!(x1 + z1 == x2 + z2, 42); This can be necessary at times as the compiler will warn on unused local variables let (x1, y, z1) = three(); // WARNING!\n// ^ unused local 'y'","breadcrumbs":"Local Variables and Scopes » Ignoring Values","id":"59","title":"Ignoring Values"},"6":{"body":"Move supports six unsigned integer types: u8, u16, u32, u64, u128, and u256. Values of these types range from 0 to a maximum that depends on the size of the type. Type Value Range Unsigned 8-bit integer, u8 0 to 28 - 1 Unsigned 16-bit integer, u16 0 to 216 - 1 Unsigned 32-bit integer, u32 0 to 232 - 1 Unsigned 64-bit integer, u64 0 to 264 - 1 Unsigned 128-bit integer, u128 0 to 2128 - 1 Unsigned 256-bit integer, u256 0 to 2256 - 1","breadcrumbs":"Primitive Types » Integers » Integers","id":"6","title":"Integers"},"60":{"body":"All of the different structures in let can be combined! With that we arrive at this general grammar for let statements: let-binding → let pattern-or-list type-annotation opt > initializer opt > pattern-or-list → pattern | ( pattern-list ) > pattern-list → pattern , opt | pattern , pattern-list > type-annotation → : type initializer → = expression The general term for the item that introduces the bindings is a pattern . The pattern serves to both destructure data (possibly recursively) and introduce the bindings. The pattern grammar is as follows: pattern → local-variable | struct-type { field-binding-list } > field-binding-list → field-binding , opt | field-binding , > field-binding-list > field-binding → field | field : pattern A few concrete examples with this grammar applied: let (x, y): (u64, u64) = (0, 1);\n// ^ local-variable\n// ^ pattern\n// ^ local-variable\n// ^ pattern\n// ^ pattern-list\n// ^^^^ pattern-list\n// ^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^ type-annotation\n// ^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding let Foo { f, g: x } = Foo { f: 0, g: 1 };\n// ^^^ struct-type\n// ^ field\n// ^ field-binding\n// ^ field\n// ^ local-variable\n// ^ pattern\n// ^^^^ field-binding\n// ^^^^^^^ field-binding-list\n// ^^^^^^^^^^^^^^^ pattern\n// ^^^^^^^^^^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding","breadcrumbs":"Local Variables and Scopes » General let grammar","id":"60","title":"General let grammar"},"61":{"body":"","breadcrumbs":"Local Variables and Scopes » Mutations","id":"61","title":"Mutations"},"62":{"body":"After the local is introduced (either by let or as a function parameter), a mut local can be modified via an assignment: x = e Unlike let bindings, assignments are expressions. In some languages, assignments return the value that was assigned, but in Move, the type of any assignment is always (). (x = e: ()) Practically, assignments being expressions means that they can be used without adding a new expression block with braces ({...}). let x;\nif (cond) x = 1 else x = 2; The assignment uses the similar pattern syntax scheme as let bindings, but with absence of mut: module 0x42::example { public struct X { f: u64 } fun new_x(): X { X { f: 1 } } // Note: this example will complain about unused variables and assignments. fun example() { let (mut x, mut y, mut f, mut g) = (0, 0, 0, 0); (X { f }, X { f: x }) = (new_x(), new_x()); assert!(f + x == 2, 42); (x, y, f, _, g) = (0, 0, 0, 0, 0); }\n} Note that a local variable can only have one type, so the type of the local cannot change between assignments. let mut x;\nx = 0;\nx = false; // ERROR!","breadcrumbs":"Local Variables and Scopes » Assignments","id":"62","title":"Assignments"},"63":{"body":"In addition to directly modifying a local with assignment, a mut local can be modified via a mutable reference &mut. let mut x = 0;\nlet r = &mut x;\n*r = 1;\nassert!(x == 1, 42); This is particularly useful if either: (1) You want to modify different variables depending on some condition. let mut x = 0;\nlet mut y = 1;\nlet r = if (cond) &mut x else &mut y;\n*r = *r + 1; (2) You want another function to modify your local value. let mut x = 0;\nmodify_ref(&mut x); This sort of modification is how you modify structs and vectors! let mut v = vector[];\nvector::push_back(&mut v, 100);\nassert!(*vector::borrow(&v, 0) == 100, 42); For more details, see Move references .","breadcrumbs":"Local Variables and Scopes » Mutating through a reference","id":"63","title":"Mutating through a reference"},"64":{"body":"Any local declared with let is available for any subsequent expression, within that scope . Scopes are declared with expression blocks, {...}. Locals cannot be used outside of the declared scope. let x = 0;\n{ let y = 1;\n};\nx + y // ERROR!\n// ^ unbound local 'y' But, locals from an outer scope can be used in a nested scope. { let x = 0; { let y = x + 1; // valid }\n} Locals can be mutated in any scope where they are accessible. That mutation survives with the local, regardless of the scope that performed the mutation. let mut x = 0;\nx = x + 1;\nassert!(x == 1, 42);\n{ x = x + 1; assert!(x == 2, 42);\n};\nassert!(x == 2, 42);","breadcrumbs":"Local Variables and Scopes » Scopes","id":"64","title":"Scopes"},"65":{"body":"An expression block is a series of statements separated by semicolons (;). The resulting value of an expression block is the value of the last expression in the block. { let x = 1; let y = 1; x + y } In this example, the result of the block is x + y. A statement can be either a let declaration or an expression. Remember that assignments (x = e) are expressions of type (). { let x; let y = 1; x = 1; x + y } Function calls are another common expression of type (). Function calls that modify data are commonly used as statements. { let v = vector[]; vector::push_back(&mut v, 1); v } This is not just limited to () types---any expression can be used as a statement in a sequence! { let x = 0; x + 1; // value is discarded x + 2; // value is discarded b\"hello\"; // value is discarded\n} But! If the expression contains a resource (a value without the drop ability ), you will get an error. This is because Move's type system guarantees that any value that is dropped has the drop ability . (Ownership must be transferred or the value must be explicitly destroyed within its declaring module.) { let x = 0; Coin { value: x }; // ERROR!\n// ^^^^^^^^^^^^^^^^^ unused value without the `drop` ability x\n} If a final expression is not present in a block---that is, if there is a trailing semicolon ;, there is an implicit unit () value . Similarly, if the expression block is empty, there is an implicit unit () value. Both are equivalent { x = x + 1; 1 / x; } { x = x + 1; 1 / x; () } Similarly both are equivalent { } { () } An expression block is itself an expression and can be used anyplace an expression is used. (Note: The body of a function is also an expression block, but the function body cannot be replaced by another expression.) let my_vector: vector> = { let mut v = vector[]; vector::push_back(&mut v, b\"hello\"); vector::push_back(&mut v, b\"goodbye\"); v\n}; (The type annotation is not needed in this example and only added for clarity.)","breadcrumbs":"Local Variables and Scopes » Expression Blocks","id":"65","title":"Expression Blocks"},"66":{"body":"If a let introduces a local variable with a name already in scope, that previous variable can no longer be accessed for the rest of this scope. This is called shadowing . let x = 0;\nassert!(x == 0, 42); let x = 1; // x is shadowed\nassert!(x == 1, 42); When a local is shadowed, it does not need to retain the same type as before. let x = 0;\nassert!(x == 0, 42); let x = b\"hello\"; // x is shadowed\nassert!(x == b\"hello\", 42); After a local is shadowed, the value stored in the local still exists, but will no longer be accessible. This is important to keep in mind with values of types without the drop ability , as ownership of the value must be transferred by the end of the function. module 0x42::example { public struct Coin has store { value: u64 } fun unused_coin(): Coin { let x = Coin { value: 0 }; // ERROR!\n// ^ This local still contains a value without the `drop` ability x.value = 1; let x = Coin { value: 10 }; x\n// ^ Invalid return }\n} When a local is shadowed inside a scope, the shadowing only remains for that scope. The shadowing is gone once that scope ends. let x = 0;\n{ let x = 1; assert!(x == 1, 42);\n};\nassert!(x == 0, 42); Remember, locals can change type when they are shadowed. let x = 0;\n{ let x = b\"hello\"; assert!(x = b\"hello\", 42);\n};\nassert!(x == 0, 42);","breadcrumbs":"Local Variables and Scopes » Shadowing","id":"66","title":"Shadowing"},"67":{"body":"All local variables in Move can be used in two ways, either by move or copy. If one or the other is not specified, the Move compiler is able to infer whether a copy or a move should be used. This means that in all of the examples above, a move or a copy would be inserted by the compiler. A local variable cannot be used without the use of move or copy. copy will likely feel the most familiar coming from other programming languages, as it creates a new copy of the value inside of the variable to use in that expression. With copy, the local variable can be used more than once. let x = 0;\nlet y = copy x + 1;\nlet z = copy x + 2; Any value with the copy ability can be copied in this way, and will be copied implicitly unless a move is specified. move takes the value out of the local variable without copying the data. After a move occurs, the local variable is unavailable, even if the value's type has the copy ability . let x = 1;\nlet y = move x + 1;\n// ------ Local was moved here\nlet z = move x + 2; // Error!\n// ^^^^^^ Invalid usage of local 'x'\ny + z","breadcrumbs":"Local Variables and Scopes » Move and Copy","id":"67","title":"Move and Copy"},"68":{"body":"Move's type system will prevent a value from being used after it is moved. This is the same safety check described in let declaration that prevents local variables from being used before it is assigned a value.","breadcrumbs":"Local Variables and Scopes » Safety","id":"68","title":"Safety"},"69":{"body":"As mentioned above, the Move compiler will infer a copy or move if one is not indicated. The algorithm for doing so is quite simple: Any value with the copy ability is given a copy. Any reference (both mutable &mut and immutable &) is given a copy. Except under special circumstances where it is made a move for predictable borrow checker errors. This will happen once the reference is no longer used. Any other value is given a move. Given the structs public struct Foo has copy, drop, store { f: u64 }\npublic struct Coin has store { value: u64 } we have the following example let s = b\"hello\";\nlet foo = Foo { f: 0 };\nlet coin = Coin { value: 0 };\nlet coins = vector[Coin { value: 0 }, Coin { value: 0 }]; let s2 = s; // copy\nlet foo2 = foo; // copy\nlet coin2 = coin; // move\nlet coins2 = coin; // move let x = 0;\nlet b = false;\nlet addr = @0x42;\nlet x_ref = &x;\nlet coin_ref = &mut coin2; let x2 = x; // copy\nlet b2 = b; // copy\nlet addr2 = @0x42; // copy\nlet x_ref2 = x_ref; // copy\nlet coin_ref2 = coin_ref; // copy","breadcrumbs":"Local Variables and Scopes » Inference","id":"69","title":"Inference"},"7":{"body":"Literal values for these types are specified either as a sequence of digits (e.g.,112) or as hex literals, e.g., 0xFF. The type of the literal can optionally be added as a suffix, e.g., 112u8. If the type is not specified, the compiler will try to infer the type from the context where the literal is used. If the type cannot be inferred, it is assumed to be u64. Number literals can be separated by underscores for grouping and readability. (e.g.,1_234_5678, 1_000u128, 0xAB_CD_12_35). If a literal is too large for its specified (or inferred) size range, an error is reported.","breadcrumbs":"Primitive Types » Integers » Literals","id":"7","title":"Literals"},"70":{"body":"Move supports two equality operations == and !=","breadcrumbs":"Equality » Equality","id":"70","title":"Equality"},"71":{"body":"Syntax Operation Description == equal Returns true if the two operands have the same value, false otherwise != not equal Returns true if the two operands have different values, false otherwise","breadcrumbs":"Equality » Operations","id":"71","title":"Operations"},"72":{"body":"Both the equal (==) and not-equal (!=) operations only work if both operands are the same type 0 == 0; // `true`\n1u128 == 2u128; // `false`\nb\"hello\" != x\"00\"; // `true` Equality and non-equality also work over all user defined types! module 0x42::example { public struct S has copy, drop { f: u64, s: vector } fun always_true(): bool { let s = S { f: 0, s: b\"\" }; s == s } fun always_false(): bool { let s = S { f: 0, s: b\"\" }; s != s }\n} If the operands have different types, there is a type checking error 1u8 == 1u128; // ERROR!\n// ^^^^^ expected an argument of type 'u8'\nb\"\" != 0; // ERROR!\n// ^ expected an argument of type 'vector'","breadcrumbs":"Equality » Typing","id":"72","title":"Typing"},"73":{"body":"When comparing references , the type of the reference (immutable or mutable) does not matter. This means that you can compare an immutable & reference with a mutable one &mut of the same underlying type. let i = &0;\nlet m = &mut 1; i == m; // `false`\nm == i; // `false`\nm == m; // `true`\ni == i; // `true` The above is equivalent to applying an explicit freeze to each mutable reference where needed let i = &0;\nlet m = &mut 1; i == freeze(m); // `false`\nfreeze(m) == i; // `false`\nm == m; // `true`\ni == i; // `true` But again, the underlying type must be the same type let i = &0;\nlet s = &b\"\"; i == s; // ERROR!\n// ^ expected an argument of type '&u64'","breadcrumbs":"Equality » Typing with references","id":"73","title":"Typing with references"},"74":{"body":"Starting in Move 2024 edition, the == and != operators automatically borrow their operands if one of the operands is a reference and the other is not. This means that the following code works without any errors: let r = &0; // In all cases, `0` is automatically borrowed as `&0`\nr == 0; // `true`\n0 == r; // `true`\nr != 0; // `false`\n0 != r; // `false` This automatic borrow is always an immutable borrow.","breadcrumbs":"Equality » Automatic Borrowing","id":"74","title":"Automatic Borrowing"},"75":{"body":"Both == and != consume the value when comparing them. As a result, the type system enforces that the type must have drop . Recall that without the drop ability , ownership must be transferred by the end of the function, and such values can only be explicitly destroyed within their declaring module. If these were used directly with either equality == or non-equality !=, the value would be destroyed which would break drop ability safety guarantees! module 0x42::example { public struct Coin has store { value: u64 } fun invalid(c1: Coin, c2: Coin) { c1 == c2 // ERROR!\n// ^^ ^^ These assets would be destroyed! }\n} But, a programmer can always borrow the value first instead of directly comparing the value, and reference types have the drop ability . For example module 0x42::example { public struct Coin has store { value: u64 } fun swap_if_equal(c1: Coin, c2: Coin): (Coin, Coin) { let are_equal = &c1 == c2; // valid, note `c2` is automatically borrowed if (are_equal) (c2, c1) else (c1, c2) }\n}","breadcrumbs":"Equality » Restrictions","id":"75","title":"Restrictions"},"76":{"body":"While a programmer can compare any value whose type has drop , a programmer should often compare by reference to avoid expensive copies. let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(copy v1 == copy v2, 42);\n// ^^^^ ^^^^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(copy s1 == copy s2, 42);\n// ^^^^ ^^^^\nuse_two_foos(s1, s2); This code is perfectly acceptable (assuming Foo has drop ), just not efficient. The highlighted copies can be removed and replaced with borrows let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(&v1 == &v2, 42);\n// ^ ^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(&s1 == &s2, 42);\n// ^ ^\nuse_two_foos(s1, s2); The efficiency of the == itself remains the same, but the copys are removed and thus the program is more efficient.","breadcrumbs":"Equality » Avoid Extra Copies","id":"76","title":"Avoid Extra Copies"},"77":{"body":"return and abort are two control flow constructs that end execution, one for the current function and one for the entire transaction. More information on return can be found in the linked section","breadcrumbs":"Abort and Assert » Abort and Assert","id":"77","title":"Abort and Assert"},"78":{"body":"abort is an expression that takes one argument: an abort code of type u64. For example: abort 42 The abort expression halts execution the current function and reverts all changes made to state by the current transaction (note though that this guarantee must be upheld by the adapter of the specific deployment of Move). There is no mechanism for \"catching\" or otherwise handling an abort. Luckily, in Move transactions are all or nothing, meaning any changes to storage are made all at once only if the transaction succeeds. For Sui, this means no objects are modified. Because of this transactional commitment of changes, after an abort there is no need to worry about backing out changes. While this approach is lacking in flexibility, it is incredibly simple and predictable. Similar to return , abort is useful for exiting control flow when some condition cannot be met. In this example, the function will pop two items off of the vector, but will abort early if the vector does not have two items use std::vector; fun pop_twice(v: &mut vector): (T, T) { if (vector::length(v) < 2) abort 42; (vector::pop_back(v), vector::pop_back(v))\n} This is even more useful deep inside a control-flow construct. For example, this function checks that all numbers in the vector are less than the specified bound. And aborts otherwise use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); if (cur > bound) abort 42; i = i + 1; }\n}","breadcrumbs":"Abort and Assert » abort","id":"78","title":"abort"},"79":{"body":"assert is a builtin, macro operation provided by the Move compiler. It takes two arguments, a condition of type bool and a code of type u64 assert!(condition: bool, code: u64) Since the operation is a macro, it must be invoked with the !. This is to convey that the arguments to assert are call-by-expression. In other words, assert is not a normal function and does not exist at the bytecode level. It is replaced inside the compiler with if (condition) () else abort code assert is more commonly used than just abort by itself. The abort examples above can be rewritten using assert use std::vector;\nfun pop_twice(v: &mut vector): (T, T) { assert!(vector::length(v) >= 2, 42); // Now uses 'assert' (vector::pop_back(v), vector::pop_back(v))\n} and use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); assert!(cur <= bound, 42); // Now uses 'assert' i = i + 1; }\n} Note that because the operation is replaced with this if-else, the argument for the code is not always evaluated. For example: assert!(true, 1 / 0) Will not result in an arithmetic error, it is equivalent to if (true) () else (1 / 0) So the arithmetic expression is never evaluated!","breadcrumbs":"Abort and Assert » assert","id":"79","title":"assert"},"8":{"body":"// literals with explicit annotations;\nlet explicit_u8 = 1u8;\nlet explicit_u16 = 1u16;\nlet explicit_u32 = 1u32;\nlet explicit_u64 = 2u64;\nlet explicit_u128 = 3u128;\nlet explicit_u256 = 1u256;\nlet explicit_u64_underscored = 154_322_973u64; // literals with simple inference\nlet simple_u8: u8 = 1;\nlet simple_u16: u16 = 1;\nlet simple_u32: u32 = 1;\nlet simple_u64: u64 = 2;\nlet simple_u128: u128 = 3;\nlet simple_u256: u256 = 1; // literals with more complex inference\nlet complex_u8 = 1; // inferred: u8\n// right hand argument to shift must be u8\nlet _unused = 10 << complex_u8; let x: u8 = 38;\nlet complex_u8 = 2; // inferred: u8\n// arguments to `+` must have the same type\nlet _unused = x + complex_u8; let complex_u128 = 133_876; // inferred: u128\n// inferred from function argument type\nfunction_that_takes_u128(complex_u128); // literals can be written in hex\nlet hex_u8: u8 = 0x1;\nlet hex_u16: u16 = 0x1BAE;\nlet hex_u32: u32 = 0xDEAD80;\nlet hex_u64: u64 = 0xCAFE;\nlet hex_u128: u128 = 0xDEADBEEF;\nlet hex_u256: u256 = 0x1123_456A_BCDE_F;","breadcrumbs":"Primitive Types » Integers » Examples","id":"8","title":"Examples"},"80":{"body":"When using abort, it is important to understand how the u64 code will be used by the VM. Normally, after successful execution, the Move VM, and the adapter for the specific deployment, determine the changes made to storage. If an abort is reached, the VM will instead indicate an error. Included in that error will be two pieces of information: The module that produced the abort (package/address value and module name) The abort code. For example module 0x2::example { public fun aborts() { abort 42 }\n} module 0x3::invoker { public fun always_aborts() { 0x2::example::aborts() }\n} If a transaction, such as the function always_aborts above, calls 0x2::example::aborts, the VM would produce an error that indicated the module 0x2::example and the code 42. This can be useful for having multiple aborts being grouped together inside a module. In this example, the module has two separate error codes used in multiple functions module 0x42::example { use std::vector; const EEmptyVector: u64 = 0; const EIndexOutOfBounds: u64 = 1; // move i to j, move j to k, move k to i public fun rotate_three(v: &mut vector, i: u64, j: u64, k: u64) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(k < n, EIndexOutOfBounds); vector::swap(v, i, k); vector::swap(v, j, k); } public fun remove_twice(v: &mut vector, i: u64, j: u64): (T, T) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(i > j, EIndexOutOfBounds); (vector::remove(v, i), vector::remove(v, j)) }\n}","breadcrumbs":"Abort and Assert » Abort codes in the Move VM","id":"80","title":"Abort codes in the Move VM"},"81":{"body":"The abort i expression can have any type! This is because both constructs break from the normal control flow, so they never need to evaluate to the value of that type. The following are not useful, but they will type check let y: address = abort 0; This behavior can be helpful in situations where you have a branching instruction that produces a value on some branches, but not all. For example: let b = if (x == 0) false else if (x == 1) true else abort 42;\n// ^^^^^^^^ `abort 42` has type `bool`","breadcrumbs":"Abort and Assert » The type of abort","id":"81","title":"The type of abort"},"82":{"body":"Move offers multiple constructs for control flow based on boolean expressions , including common programming constructs such as if expressions and while and for loops, along with advanced control flow structures including labels for loops and escapable named blocks. It also supports more more complex constructs based on structural pattern matching. Conditional Expressions Pattern Matching Loops Labeled Control FLow","breadcrumbs":"Control Flow » Control Flow","id":"82","title":"Control Flow"},"83":{"body":"An if expression specifies that some code should only be evaluated if a certain condition is true. For example: if (x > 5) x = x - 5 The condition must be an expression of type bool. An if expression can optionally include an else clause to specify another expression to evaluate when the condition is false. if (y <= 10) y = y + 1 else y = 10 Either the \"true\" branch or the \"false\" branch will be evaluated, but not both. Either branch can be a single expression or an expression block. The conditional expressions may produce values so that the if expression has a result. let z = if (x < 100) x else 100; The expressions in the true and false branches must have compatible types. For example: // x and y must be u64 integers\nlet maximum: u64 = if (x > y) x else y; // ERROR! branches different types\nlet z = if (maximum < 10) 10u8 else 100u64; // ERROR! branches different types, as default false-branch is () not u64\nif (maximum >= 10) maximum; If the else clause is not specified, the false branch defaults to the unit value. The following are equivalent: if (condition) true_branch // implied default: else ()\nif (condition) true_branch else () Commonly, if expressions are used in conjunction with expression blocks . let maximum = if (x > y) x else y;\nif (maximum < 10) { x = x + 10; y = y + 10;\n} else if (x >= 10 && y >= 10) { x = x - 10; y = y - 10;\n}","breadcrumbs":"Control Flow » Conditional Expressions » Conditional if Expressions","id":"83","title":"Conditional if Expressions"},"84":{"body":"if-expression → if ( expression ) expression else-clause opt > else-clause → else expression","breadcrumbs":"Control Flow » Conditional Expressions » Grammar for Conditionals","id":"84","title":"Grammar for Conditionals"},"85":{"body":"Many programs require iteration over values, and Move provides while and loop forms to allow you to write code in these situations. In addition, you can also modify control flow of these loops during execution by using break (to exit the loop) and continue (to skip the remainder of this iteration and return to the top of the control flow structure).","breadcrumbs":"Control Flow » Loops » Loop Constructs in Move","id":"85","title":"Loop Constructs in Move"},"86":{"body":"The while construct repeats the body (an expression of type unit) until the condition (an expression of type bool) evaluates to false. Here is an example of simple while loop that computes the sum of the numbers from 1 to n: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; while (i <= n) { sum = sum + i; i = i + 1 }; sum\n} Infinite while loops are also allowed: fun foo() { while (true) { }\n}","breadcrumbs":"Control Flow » Loops » while Loops","id":"86","title":"while Loops"},"87":{"body":"In Move, while loops can use break to exit early. For example, suppose we were looking for the position of a value in a vector, and would like to break if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; let mut found = false; while (i < size) { if (vector::borrow(values, i) == &target_value) { found = true; break }; i = i + 1 }; if (found) { Option::Some(i) } else { Option::None }\n} Here, if the borrowed vector value is equal to our target value, we set the found flag to true and then call break, which will cause the program to exit the loop. Finally, note that break for while loops cannot take a value: while loops always return the unit type () and thus break does, too.","breadcrumbs":"Control Flow » Loops » Using break Inside of while Loops","id":"87","title":"Using break Inside of while Loops"},"88":{"body":"Similar to break, Move's while loops can invoke continue to skip over part of the loop body. This allows us to skip part of a computation if a condition is not met, such as in the following example: fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; while (i < size) { let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n} This code will iterate over the provided vector. For each entry, if that entry is an even number, it will add it to the even_sum. If it is not, however, it will call continue, skipping the sum operation and returning to the while loop conditional check.","breadcrumbs":"Control Flow » Loops » Using continue Inside of while Loops","id":"88","title":"Using continue Inside of while Loops"},"89":{"body":"The loop expression repeats the loop body (an expression with type ()) until it hits a break: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; loop { i = i + 1; if (i >= n) break; sum = sum + i; }; sum\n} Without a break, the loop will continue forever. In the example below, the program will run forever because the loop does not have a break: fun foo() { let mut i = 0; loop { i = i + 1 }\n} Here is an example that uses loop to write the sum function: fun sum(n: u64): u64 { let sum = 0; let i = 0; loop { i = i + 1; if (i > n) break; sum = sum + i }; sum\n}","breadcrumbs":"Control Flow » Loops » loop Expressions","id":"89","title":"loop Expressions"},"9":{"body":"","breadcrumbs":"Primitive Types » Integers » Operations","id":"9","title":"Operations"},"90":{"body":"Unlike while loops, which always return (), a loop may return a value using break. In doing so, the overall loop expression evaluates to a value of that type. For example, we can rewrite find_position from above using loop and break, immediately returning the index if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; loop { if (vector::borrow(values, i) == &target_value) { break Option::Some(i) } else if (i >= size) { break Option::None }; i = i + 1; }\n} This loop will break with an option result, and, as the last expression in the function body, will produce that value as the final function result.","breadcrumbs":"Control Flow » Loops » Using break with Values in loop","id":"90","title":"Using break with Values in loop"},"91":{"body":"As you might expect, continue can also be used inside a loop. Here is the previous sum_even function rewritten using loop with break and continue instead of while. fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; loop { if (i >= size) break; let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n}","breadcrumbs":"Control Flow » Loops » Using continue Inside of loop Expressions","id":"91","title":"Using continue Inside of loop Expressions"},"92":{"body":"In Move, loops are typed expressions. A while expression always has type (). let () = while (i < 10) { i = i + 1 }; If a loop contains a break, the expression has the type of the break. A break with no value has the unit type (). (loop { if (i < 10) i = i + 1 else break }: ());\nlet () = loop { if (i < 10) i = i + 1 else break }; let x: u64 = loop { if (i < 10) i = i + 1 else break 5 };\nlet x: u64 = loop { if (i < 10) { i = i + 1; continue} else break 5 }; In addition, if a loop contains multiple breaks, they must all return the same type: // invalid -- first break returns (), second returns 5\nlet x: u64 = loop { if (i < 10) break else break 5 }; If loop does not have a break, loop can have any type much like return, abort, break, and continue. (loop (): u64);\n(loop (): address);\n(loop (): &vector>); If you need even more-precise control flow, such as breaking out of nested loops, the next chapter presents the use of labeled control flow in Move.","breadcrumbs":"Control Flow » Loops » The Type of while and loop","id":"92","title":"The Type of while and loop"},"93":{"body":"Move supports labeled control flow, allowing you to define and transfer control to specific labels in a function. For example, we can nest two loops and use break and continue with those labels to precisely specify control flow. You can prefix any loop or while form with a 'label: form to allow breaking or continuing directly there. To demonstrate this behavior, consider a function that takes nested vectors of numbers (i.e., vector>) to sum against some threshold, which behaves as follows: If the sum of all the numbers are under the threshold, return that sum. If adding a number to the current sum would surpass the threshold, return the current sum. We can write this by iterating over the vector of vectors as nested loops and labelling the outer one. If any addition in the inner loop would push us over the threshold, we can use break with the outer label to escape both loops at once: fun sum_until_threshold(input: &vector>, threshold: u64): u64 { let mut sum = 0; let mut i = 0; let input_size = vector::length(vec); 'outer: loop { // breaks to outer since it is the closest enclosing loop if (i >= input_size) break sum; let vec = vector::borrow(input, i); let size = vector::length(vec); let mut j = 0; while (j < size) { let v_entry = *vector::borrow(vec, j); if (sum + v_entry < threshold) { sum = sum + v_entry; } else { // the next element we saw would break the threshold, // so we return the current sum break 'outer sum }; j = j + 1; }; i = i + 1; }\n} These sorts of labels can also be used with a nested loop form, providing precise control in larger bodies of code. For example, if we were processing a large table where each entry required iteration that might see us continuing the inner or outer loop, we could express that code using labels: 'outer: loop { ... 'inner: while (cond) { ... if (cond0) { break 'outer value }; ... if (cond1) { continue 'inner } else if (cond2) { continue 'outer }; ... } ...\n}","breadcrumbs":"Control Flow » Labeled Control FLow » Labeled Control Flow","id":"93","title":"Labeled Control Flow"},"94":{"body":"A match expression is a powerful control structure that allows you to compare a value against a series of patterns and then execute code based on which pattern matches first. Patterns can be anything from simple literals to complex, nested struct and enum definitions. As opposed to if expressions, which change control flow based on a bool-typed test expression, a match expression operates over a value of any type and selects one of many arms. A match expression can match Move values as well as mutable or immutable references, binding sub-patterns accordingly. For example: fun run(x: u64): u64 { match (x) { 1 => 2, 2 => 3, x => x, }\n} run(1); // returns 2\nrun(2); // returns 3\nrun(3); // returns 3\nrun(0); // returns 0","breadcrumbs":"Control Flow » Patterm Matching » Pattern Matching","id":"94","title":"Pattern Matching"},"95":{"body":"A match takes an expression and a non-empty series of match arms delimited by commas. Each match arm consists of a pattern (p), an optional guard (if (g) where g is an expression of type bool), an arrow (=>), and an arm expression (e) to execute when the pattern matches. For example, match (expression) { pattern1 if (guard_expression) => expression1, pattern2 => expression2, pattern3 => { expression3, expression4, ... },\n} Match arms are checked in order from top to bottom, and the first pattern that matches (with a guard expression, if present, that evaluates to true) will be executed. Note that the series of match arms within a match must be exhaustive, meaning that every possible value of the type being matched must be covered by one of the patterns in the match. If the series of match arms is not exhaustive, the compiler will raise an error.","breadcrumbs":"Control Flow » Patterm Matching » match Syntax","id":"95","title":"match Syntax"},"96":{"body":"A pattern is matched by a value if the value is equal to the pattern, and where variables and wildcards (e.g., x, y, _, or ..) are \"equal\" to anything. Patterns are used to match values. Patterns can be Pattern Description Literal A literal value, such as 1, true, @0x1 Constant A constant value, e.g., MyConstant Variable A variable, e.g., x, y, z Wildcard A wildcard, e.g., _ Constructor A constructor pattern, e.g., MyStruct { x, y }, MyEnum::Variant(x) At-pattern An at-pattern, e.g., x @ MyEnum::Variant(..) Or-pattern An or-pattern, e.g., MyEnum::Variant(..) \\| MyEnum::OtherVariant(..) Multi-arity wildcard A multi-arity wildcard, e.g., MyEnum::Variant(..) Mutable-binding A mutable-binding pattern, e.g., mut x Patterns in Move have the following grammar: pattern = | | | _ | C { : inner-pattern [\",\" : inner-pattern]* } // where C is a struct or enum variant | C ( inner-pattern [\",\" inner-pattern]* ... ) // where C is a struct or enum variant | C // where C is an enum variant | @ top-level-pattern | pattern | pattern | mut \ninner-pattern = pattern | .. // multi-arity wildcard Some examples of patterns are: // literal pattern\n1 // constant pattern\nMyConstant // variable pattern\nx // wildcard pattern\n_ // constructor pattern that matches `MyEnum::Variant` with the fields `1` and `true`\nMyEnum::Variant(1, true) // constructor pattern that matches `MyEnum::Variant` with the fields `1` and binds the second field's value to `x`\nMyEnum::Variant(1, x) // multi-arity wildcard pattern that matches multiple fields within the `MyEnum::Variant` variant\nMyEnum::Variant(..) // constructor pattern that matches the `x` field of `MyStruct` and binds the `y` field to `other_variable`\nMyStruct { x, y: other_variable } // at-pattern that matches `MyEnum::Variant` and binds the entire value to `x`\nx @ MyEnum::Variant(..) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant`\nMyEnum::Variant(..) | MyEnum::OtherVariant(..) // same as the above or-pattern, but with explicit wildcards\nMyEnum::Variant(_, _) | MyEnum::OtherVariant(_, _) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant` and binds the u64 field to `x`\nMyEnum::Variant(x, _) | MyEnum::OtherVariant(_, x) // constructor pattern that matches `OtherEnum::V` and if the inner `MyEnum` is `MyEnum::Variant`\nOtherEnum::V(MyEnum::Variant(..))","breadcrumbs":"Control Flow » Patterm Matching » Pattern Syntax","id":"96","title":"Pattern Syntax"},"97":{"body":"Patterns that contain variables bind them to the match subject or subject subcomponent being matched. These variables can then be used either in any match guard expressions, or on the right-hand side of the match arm. For example: public struct Wrapper(u64) fun add_under_wrapper_unless_equal(wrapper: Wrapper, x: u64): u64 { match (wrapper) { Wrapper(y) if (y == x) => Wrapper(y), Wrapper(y) => y + x, }\n}\nadd_under_wrapper_unless_equal(Wrapper(1), 2); // returns Wrapper(3)\nadd_under_wrapper_unless_equal(Wrapper(2), 3); // returns Wrapper(5)\nadd_under_wrapper_unless_equal(Wrapper(3), 3); // returns Wrapper(3)","breadcrumbs":"Control Flow » Patterm Matching » Patterns and Variables","id":"97","title":"Patterns and Variables"},"98":{"body":"Patterns can be nested, but patterns can also be combined using the or operator (|). For example, p1 | p2 succeeds if either pattern p1 or p2 matches the subject. This pattern can occur anywhere -- either as a top-level pattern or a sub-pattern within another pattern. public enum MyEnum has drop { Variant(u64, bool), OtherVariant(bool, u64),\n} fun test_or_pattern(x: u64): u64 { match (x) { MyEnum::Variant(1 | 2 | 3, true) | MyEnum::OtherVariant(true, 1 | 2 | 3) => 1, MyEnum::Variant(8, true) | MyEnum::OtherVariant(_, 6 | 7) => 2, _ => 3, }\n} test_or_pattern(MyEnum::Variant(3, true)); // returns 1\ntest_or_pattern(MyEnum::OtherVariant(true, 2)); // returns 1\ntest_or_pattern(MyEnum::Variant(8, true)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 7)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 80)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Combining Patterns","id":"98","title":"Combining Patterns"},"99":{"body":"The mut and .. patterns also have specific conditions placed on when, where, and how they can be used, as detailed in Limitations on Specific Patterns . At a high level, the mut modifier can only be used on variable patterns, and the .. pattern can only be used once within a constructor pattern -- and not as a top-level pattern. The following is an invalid usage of the .. pattern because it is used as a top-level pattern: match (x) { .. => 1, // ERROR: `..` pattern can only be used within a constructor pattern\n} match (x) { MyStruct(.., ..) => 1, // ERROR: ^^ `..` pattern can only be used once within a constructor pattern\n}","breadcrumbs":"Control Flow » Patterm Matching » Restrictions on Some Patterns","id":"99","title":"Restrictions on Some Patterns"}},"length":243,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"103":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.8284271247461903},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.6457513110645907},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":3.605551275463989},"178":{"tf":3.4641016151377544},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.4641016151377544},"79":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.449489742783178},"217":{"tf":4.358898943540674},"218":{"tf":3.605551275463989},"219":{"tf":3.3166247903554},"23":{"tf":3.4641016151377544},"234":{"tf":1.0},"24":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.3166247903554},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":14,"docs":{"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"33":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.7320508075688772},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":3,"docs":{"30":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.6457513110645907},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":40,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.4142135623730951},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":18,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.8284271247461903},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.123105625617661},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.0},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":3.872983346207417},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.449489742783178}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.8284271247461903},"165":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.0},"242":{"tf":3.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.449489742783178},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.1622776601683795},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":2.8284271247461903},"137":{"tf":4.47213595499958},"138":{"tf":2.23606797749979},"139":{"tf":2.6457513110645907},"140":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":3.0},"144":{"tf":2.0},"177":{"tf":3.3166247903554},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.605551275463989},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.0},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.4641016151377544},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":3.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.0},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":4.242640687119285},"242":{"tf":5.5677643628300215},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":3.7416573867739413},"112":{"tf":3.3166247903554},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":2.6457513110645907},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.6457513110645907},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.082762530298219},"2":{"tf":1.0},"200":{"tf":4.58257569495584},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.0},"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"210":{"tf":3.1622776601683795},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":15,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"161":{"tf":2.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":2.8284271247461903},"83":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.449489742783178},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"43":{"tf":1.0},"7":{"tf":2.6457513110645907},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":30,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"68":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":3.0},"232":{"tf":3.4641016151377544},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":2.0},"89":{"tf":3.0},"90":{"tf":2.6457513110645907},"91":{"tf":2.0},"92":{"tf":3.872983346207417},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":4.358898943540674},"102":{"tf":3.0},"103":{"tf":2.8284271247461903},"104":{"tf":5.291502622129181},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":5.744562646538029},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"200":{"tf":2.449489742783178},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":2.8284271247461903},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"199":{"tf":2.449489742783178},"2":{"tf":1.7320508075688772},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.1622776601683795},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.605551275463989},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.449489742783178},"217":{"tf":3.872983346207417},"218":{"tf":3.605551275463989},"219":{"tf":2.8284271247461903},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"26":{"tf":1.7320508075688772},"3":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.449489742783178},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.8284271247461903},"214":{"tf":3.3166247903554},"215":{"tf":3.4641016151377544},"216":{"tf":2.23606797749979},"217":{"tf":3.3166247903554},"218":{"tf":4.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":3.3166247903554},"224":{"tf":1.0},"225":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":4.795831523312719},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":1.7320508075688772},"143":{"tf":4.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.0},"96":{"tf":6.082762530298219},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":3.605551275463989}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.477225575051661}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":4.898979485566356},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":2.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":4.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.3166247903554},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"121":{"tf":3.4641016151377544},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":16,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"241":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.1622776601683795},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.3166247903554},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.0},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":3.605551275463989},"124":{"tf":2.449489742783178},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":3.3166247903554},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":2.0},"133":{"tf":3.3166247903554},"134":{"tf":2.8284271247461903},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"177":{"tf":3.872983346207417},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.0},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.23606797749979},"47":{"tf":3.1622776601683795}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":44,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":2.8284271247461903},"227":{"tf":4.358898943540674},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":3.3166247903554},"233":{"tf":2.0},"234":{"tf":3.605551275463989},"235":{"tf":4.0},"236":{"tf":2.23606797749979},"237":{"tf":2.6457513110645907},"238":{"tf":5.830951894845301},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":119,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.449489742783178},"100":{"tf":4.242640687119285},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.6457513110645907},"163":{"tf":5.291502622129181},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.1622776601683795},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"178":{"tf":4.358898943540674},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"210":{"tf":3.0},"211":{"tf":3.3166247903554},"212":{"tf":3.3166247903554},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"52":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":20,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":5.0990195135927845},"185":{"tf":1.7320508075688772},"186":{"tf":3.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.656854249492381},"2":{"tf":1.4142135623730951},"200":{"tf":4.58257569495584},"201":{"tf":2.8284271247461903},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.605551275463989},"143":{"tf":4.0},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":1.4142135623730951},"29":{"tf":3.1622776601683795},"30":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.23606797749979},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.449489742783178},"124":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.23606797749979}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.0},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":3.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"171":{"tf":2.6457513110645907},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":3.7416573867739413},"178":{"tf":3.7416573867739413},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.6457513110645907},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.6457513110645907},"217":{"tf":4.47213595499958},"218":{"tf":3.7416573867739413},"219":{"tf":3.4641016151377544},"23":{"tf":3.7416573867739413},"234":{"tf":1.0},"24":{"tf":3.7416573867739413},"242":{"tf":1.4142135623730951},"25":{"tf":3.0},"26":{"tf":3.4641016151377544},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":16,"docs":{"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.1622776601683795},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.0},"33":{"tf":1.0},"54":{"tf":2.6457513110645907},"55":{"tf":3.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":2.0},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":6,"docs":{"30":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":3.3166247903554},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"74":{"tf":2.23606797749979},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.8284271247461903},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.1622776601683795},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":42,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"215":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.23606797749979},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.449489742783178},"128":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.6457513110645907}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":2.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":2.0}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":17,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":40,"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},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.7320508075688772},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.242640687119285},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.1622776601683795},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.6457513110645907}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.23606797749979},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"165":{"tf":1.7320508075688772},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.8284271247461903},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.1622776601683795},"242":{"tf":3.1622776601683795},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.6457513110645907},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.3166247903554},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":3.0},"137":{"tf":4.69041575982343},"138":{"tf":2.449489742783178},"139":{"tf":2.8284271247461903},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":2.6457513110645907},"143":{"tf":3.3166247903554},"144":{"tf":2.449489742783178},"177":{"tf":3.4641016151377544},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.7416573867739413},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.23606797749979},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.123105625617661},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":3.0},"131":{"tf":2.8284271247461903},"132":{"tf":3.1622776601683795},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":34,"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},"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.23606797749979},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":4.47213595499958},"242":{"tf":5.744562646538029},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":3.4641016151377544},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":2.0},"118":{"tf":3.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":2.8284271247461903},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.449489742783178},"157":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.23606797749979},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.164414002968976},"2":{"tf":1.0},"200":{"tf":4.69041575982343},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":3.0},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":2.0}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.8284271247461903},"209":{"tf":1.7320508075688772},"210":{"tf":3.3166247903554},"211":{"tf":2.23606797749979},"212":{"tf":2.0},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.4641016151377544},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":18,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":2.449489742783178},"16":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":3.1622776601683795},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.3166247903554}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":35,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.3166247903554},"231":{"tf":3.3166247903554},"232":{"tf":3.7416573867739413},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":3.0},"91":{"tf":2.449489742783178},"92":{"tf":4.123105625617661},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":28,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":4.58257569495584},"102":{"tf":3.3166247903554},"103":{"tf":3.0},"104":{"tf":5.385164807134504},"105":{"tf":3.4641016151377544},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":2.0},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":5.830951894845301},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":3.872983346207417},"96":{"tf":3.3166247903554},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.449489742783178},"2":{"tf":2.0},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":3.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":3.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.7416573867739413},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":2.0},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.6457513110645907},"217":{"tf":4.0},"218":{"tf":3.7416573867739413},"219":{"tf":3.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"3":{"tf":3.7416573867739413},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.6457513110645907},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"45":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":2.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":3.1622776601683795},"214":{"tf":3.605551275463989},"215":{"tf":3.605551275463989},"216":{"tf":2.449489742783178},"217":{"tf":3.4641016151377544},"218":{"tf":4.123105625617661},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":3.4641016151377544},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":4.898979485566356},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"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},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":3.0},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":2.0},"143":{"tf":4.123105625617661},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.0},"96":{"tf":6.164414002968976},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":3.7416573867739413}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.5677643628300215}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.449489742783178},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":5.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":51,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":4.242640687119285},"37":{"tf":3.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"63":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.4142135623730951},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":3.0},"117":{"tf":1.7320508075688772},"120":{"tf":2.23606797749979},"121":{"tf":3.605551275463989},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":3.0},"241":{"tf":1.4142135623730951},"49":{"tf":2.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":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":2.0},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.23606797749979},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.3166247903554}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.3166247903554},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.4641016151377544},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.1622776601683795},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":3.0},"123":{"tf":3.872983346207417},"124":{"tf":2.6457513110645907},"125":{"tf":3.4641016151377544},"126":{"tf":2.6457513110645907},"127":{"tf":1.7320508075688772},"128":{"tf":3.605551275463989},"129":{"tf":2.8284271247461903},"130":{"tf":3.3166247903554},"131":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":3.605551275463989},"134":{"tf":3.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.8284271247461903},"169":{"tf":2.23606797749979},"177":{"tf":4.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.1622776601683795},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.449489742783178},"47":{"tf":3.3166247903554}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":2.8284271247461903},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":3.1622776601683795},"227":{"tf":4.58257569495584},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":2.449489742783178},"231":{"tf":2.449489742783178},"232":{"tf":3.4641016151377544},"233":{"tf":2.23606797749979},"234":{"tf":3.872983346207417},"235":{"tf":4.242640687119285},"236":{"tf":2.449489742783178},"237":{"tf":3.0},"238":{"tf":6.0},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":141,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.6457513110645907},"100":{"tf":4.358898943540674},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"119":{"tf":1.0},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":2.6457513110645907},"162":{"tf":2.8284271247461903},"163":{"tf":5.385164807134504},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.3166247903554},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":2.449489742783178},"177":{"tf":1.0},"178":{"tf":4.58257569495584},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"21":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":3.4641016151377544},"212":{"tf":3.4641016151377544},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":2.8284271247461903},"52":{"tf":1.0},"54":{"tf":3.0},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":2.8284271247461903},"73":{"tf":2.6457513110645907},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":31,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":2.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"161":{"tf":1.0},"207":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":5.196152422706632},"185":{"tf":2.0},"186":{"tf":3.1622776601683795},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":1.4142135623730951},"192":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"200":{"tf":4.69041575982343},"201":{"tf":3.0},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.7416573867739413},"143":{"tf":4.123105625617661},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":3.4641016151377544},"30":{"tf":1.7320508075688772},"31":{"tf":3.4641016151377544},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.449489742783178},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.449489742783178}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"4":{"df":1,"docs":{"232":{"tf":1.0}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"s":{"df":7,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"177":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"156":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"12":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"239":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"209":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"173":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"190":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"38":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}}},"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"161":{"tf":1.0},"6":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"175":{"tf":1.0},"182":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"167":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"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}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"0":{"tf":1.0},"223":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"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":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"133":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"191":{"tf":1.0},"242":{"tf":1.0}}}},"n":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"193":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"181":{"tf":1.0},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"184":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}},"t":{"df":3,"docs":{"226":{"tf":1.0},"235":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"162":{"tf":1.0},"194":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0}}}},"df":14,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"149":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/reference/searchindex.json b/reference/searchindex.json index eb87aca..48ce134 100644 --- a/reference/searchindex.json +++ b/reference/searchindex.json @@ -1 +1 @@ -{"doc_urls":["introduction.html#the-move-reference","modules.html#modules","modules.html#syntax","modules.html#names","modules.html#members","primitive-types.html#primitive-types","primitive-types/integers.html#integers","primitive-types/integers.html#literals","primitive-types/integers.html#examples","primitive-types/integers.html#operations","primitive-types/integers.html#arithmetic","primitive-types/integers.html#bitwise","primitive-types/integers.html#bit-shifts","primitive-types/integers.html#comparisons","primitive-types/integers.html#equality","primitive-types/integers.html#casting","primitive-types/integers.html#ownership","primitive-types/bool.html#bool","primitive-types/bool.html#literals","primitive-types/bool.html#operations","primitive-types/bool.html#logical","primitive-types/bool.html#control-flow","primitive-types/bool.html#ownership","primitive-types/address.html#address","primitive-types/address.html#addresses-and-their-syntax","primitive-types/address.html#named-addresses","primitive-types/address.html#examples","primitive-types/vector.html#vector","primitive-types/vector.html#literals","primitive-types/vector.html#general-vector-literals","primitive-types/vector.html#vector-literals","primitive-types/vector.html#operations","primitive-types/vector.html#example","primitive-types/vector.html#destroying-and-copying-vectors","primitive-types/vector.html#ownership","primitive-types/references.html#references","primitive-types/references.html#reference-operators","primitive-types/references.html#reading-and-writing-through-references","primitive-types/references.html#freeze-inference","primitive-types/references.html#subtyping","primitive-types/references.html#ownership","primitive-types/references.html#references-cannot-be-stored","primitive-types/tuples.html#tuples-and-unit","primitive-types/tuples.html#literals","primitive-types/tuples.html#examples","primitive-types/tuples.html#operations","primitive-types/tuples.html#destructuring","primitive-types/tuples.html#subtyping","primitive-types/tuples.html#ownership","variables.html#local-variables-and-scope","variables.html#declaring-local-variables","variables.html#let-bindings","variables.html#variables-must-be-assigned-before-use","variables.html#valid-variable-names","variables.html#type-annotations","variables.html#when-annotations-are-necessary","variables.html#multiple-declarations-with-tuples","variables.html#multiple-declarations-with-structs","variables.html#destructuring-against-references","variables.html#ignoring-values","variables.html#general-let-grammar","variables.html#mutations","variables.html#assignments","variables.html#mutating-through-a-reference","variables.html#scopes","variables.html#expression-blocks","variables.html#shadowing","variables.html#move-and-copy","variables.html#safety","variables.html#inference","equality.html#equality","equality.html#operations","equality.html#typing","equality.html#typing-with-references","equality.html#automatic-borrowing","equality.html#restrictions","equality.html#avoid-extra-copies","abort-and-assert.html#abort-and-assert","abort-and-assert.html#abort","abort-and-assert.html#assert","abort-and-assert.html#abort-codes-in-the-move-vm","abort-and-assert.html#the-type-of-abort","control-flow.html#control-flow","control-flow/conditionals.html#conditional-if-expressions","control-flow/conditionals.html#grammar-for-conditionals","control-flow/loops.html#loop-constructs-in-move","control-flow/loops.html#while-loops","control-flow/loops.html#using-break-inside-of-while-loops","control-flow/loops.html#using-continue-inside-of-while-loops","control-flow/loops.html#loop-expressions","control-flow/loops.html#using-break-with-values-in-loop","control-flow/loops.html#using-continue-inside-of-loop-expressions","control-flow/loops.html#the-type-of-while-and-loop","control-flow/labeled-control-flow.html#labeled-control-flow","control-flow/pattern-matching.html#pattern-matching","control-flow/pattern-matching.html#match-syntax","control-flow/pattern-matching.html#pattern-syntax","control-flow/pattern-matching.html#patterns-and-variables","control-flow/pattern-matching.html#combining-patterns","control-flow/pattern-matching.html#restrictions-on-some-patterns","control-flow/pattern-matching.html#pattern-typing","control-flow/pattern-matching.html#matching","control-flow/pattern-matching.html#matching-constructors","control-flow/pattern-matching.html#ability-constraints","control-flow/pattern-matching.html#exhaustiveness","control-flow/pattern-matching.html#guards","control-flow/pattern-matching.html#limitations-on-specific-patterns","control-flow/pattern-matching.html#mutability-usage","control-flow/pattern-matching.html#-usage","functions.html#functions","functions.html#declaration","functions.html#visibility","functions.html#entry-modifier","functions.html#name","functions.html#type-parameters","functions.html#parameters","functions.html#return-type","functions.html#function-body","functions.html#native-functions","functions.html#calling","functions.html#returning-values","functions.html#return-expression","structs.html#structs-and-resources","structs.html#defining-structs","structs.html#visibility","structs.html#abilities","structs.html#naming","structs.html#using-structs","structs.html#creating-structs","structs.html#destroying-structs-via-pattern-matching","structs.html#accessing-struct-fields","structs.html#borrowing-structs-and-fields","structs.html#reading-and-writing-fields","structs.html#privileged-struct-operations","structs.html#ownership","structs.html#storage","enums.html#enumerations","enums.html#defining-enums","enums.html#visibility","enums.html#abilities","enums.html#naming","enums.html#using-enums","enums.html#creating-enum-variants","enums.html#pattern-matching-enum-variants-and-destructuring","enums.html#overwriting-to-enum-values","constants.html#constants","constants.html#declaration","constants.html#naming","constants.html#visibility","constants.html#valid-expressions","constants.html#values","constants.html#complex-expressions","generics.html#generics","generics.html#declaring-type-parameters","generics.html#generic-functions","generics.html#generic-structs","generics.html#type-arguments","generics.html#calling-generic-functions","generics.html#using-generic-structs","generics.html#type-argument-mismatch","generics.html#type-inference","generics.html#integers","generics.html#unused-type-parameters","generics.html#phantom-type-parameters","generics.html#constraints","generics.html#declaring-constraints","generics.html#verifying-constraints","generics.html#limitations-on-recursions","generics.html#recursive-structs","generics.html#advanced-topic-type-level-recursions","abilities.html#abilities","abilities.html#the-four-abilities","abilities.html#copy","abilities.html#drop","abilities.html#store","abilities.html#key","abilities.html#builtin-types","abilities.html#annotating-structs-and-enums","abilities.html#conditional-abilities-and-generic-types","abilities.html#example-conditional-copy","abilities.html#example-conditional-drop","abilities.html#example-conditional-store","abilities.html#example-conditional-key","uses.html#uses-and-aliases","uses.html#syntax","uses.html#multiple-aliases","uses.html#self-aliases","uses.html#multiple-aliases-for-the-same-definition","uses.html#nested-imports","uses.html#inside-a-module","uses.html#inside-an-expression","uses.html#naming-rules","uses.html#uniqueness","uses.html#shadowing","uses.html#unused-use-or-alias","method-syntax.html#methods","method-syntax.html#syntax","method-syntax.html#method-resolution","method-syntax.html#functions-in-the-defining-module","method-syntax.html#use-fun-aliases","method-syntax.html#public-use-fun-aliases","method-syntax.html#interactions-with-use-aliases","method-syntax.html#scoping","method-syntax.html#automatic-borrowing","method-syntax.html#chaining","index-syntax.html#index-syntax","index-syntax.html#overview-and-summary","index-syntax.html#usage","index-syntax.html#index-functions-take-flexible-arguments","index-syntax.html#defining-index-syntax-functions","index-syntax.html#declaration","index-syntax.html#type-constraints","index-syntax.html#type-compatibility","packages.html#packages","packages.html#package-layout-and-manifest-syntax","packages.html#movetoml","packages.html#named-addresses-during-compilation","packages.html#declaring-named-addresses","packages.html#scope-and-renaming-of-named-addresses","packages.html#instantiating-named-addresses","packages.html#usage-and-artifacts","packages.html#artifacts","packages.html#movelock","packages.html#the-move-section","packages.html#the-movepackage-sections","packages.html#the-movetoolchain-version-section","unit-testing.html#unit-tests","unit-testing.html#test-annotations","unit-testing.html#expected-failures","unit-testing.html#1-expected_failureabort_code--","unit-testing.html#2-expected_failurearithmetic_error-location--","unit-testing.html#3-expected_failureout_of_gas-location--","unit-testing.html#4-expected_failurevector_error-minor_status---location--","unit-testing.html#5-expected_failure","unit-testing.html#test-only-annotations","unit-testing.html#running-unit-tests","unit-testing.html#example","unit-testing.html#running-tests","unit-testing.html#using-test-flags","coding-conventions.html","friends.html#deprecated-friends","friends.html#friend-declaration","friends.html#friend-declaration-rules"],"index":{"documentStore":{"docInfo":{"0":{"body":61,"breadcrumbs":4,"title":2},"1":{"body":52,"breadcrumbs":2,"title":1},"10":{"body":79,"breadcrumbs":4,"title":1},"100":{"body":89,"breadcrumbs":6,"title":2},"101":{"body":209,"breadcrumbs":5,"title":1},"102":{"body":148,"breadcrumbs":6,"title":2},"103":{"body":95,"breadcrumbs":6,"title":2},"104":{"body":231,"breadcrumbs":5,"title":1},"105":{"body":148,"breadcrumbs":5,"title":1},"106":{"body":6,"breadcrumbs":7,"title":3},"107":{"body":109,"breadcrumbs":6,"title":2},"108":{"body":123,"breadcrumbs":5,"title":1},"109":{"body":16,"breadcrumbs":2,"title":1},"11":{"body":44,"breadcrumbs":4,"title":1},"110":{"body":38,"breadcrumbs":2,"title":1},"111":{"body":188,"breadcrumbs":2,"title":1},"112":{"body":125,"breadcrumbs":3,"title":2},"113":{"body":25,"breadcrumbs":2,"title":1},"114":{"body":28,"breadcrumbs":3,"title":2},"115":{"body":46,"breadcrumbs":2,"title":1},"116":{"body":62,"breadcrumbs":3,"title":2},"117":{"body":34,"breadcrumbs":3,"title":2},"118":{"body":49,"breadcrumbs":3,"title":2},"119":{"body":105,"breadcrumbs":2,"title":1},"12":{"body":68,"breadcrumbs":5,"title":2},"120":{"body":59,"breadcrumbs":3,"title":2},"121":{"body":114,"breadcrumbs":3,"title":2},"122":{"body":65,"breadcrumbs":3,"title":2},"123":{"body":68,"breadcrumbs":3,"title":2},"124":{"body":29,"breadcrumbs":2,"title":1},"125":{"body":139,"breadcrumbs":2,"title":1},"126":{"body":43,"breadcrumbs":2,"title":1},"127":{"body":0,"breadcrumbs":3,"title":2},"128":{"body":118,"breadcrumbs":3,"title":2},"129":{"body":174,"breadcrumbs":6,"title":5},"13":{"body":31,"breadcrumbs":4,"title":1},"130":{"body":77,"breadcrumbs":4,"title":3},"131":{"body":89,"breadcrumbs":4,"title":3},"132":{"body":249,"breadcrumbs":4,"title":3},"133":{"body":100,"breadcrumbs":4,"title":3},"134":{"body":190,"breadcrumbs":2,"title":1},"135":{"body":18,"breadcrumbs":2,"title":1},"136":{"body":86,"breadcrumbs":2,"title":1},"137":{"body":118,"breadcrumbs":3,"title":2},"138":{"body":23,"breadcrumbs":2,"title":1},"139":{"body":87,"breadcrumbs":2,"title":1},"14":{"body":33,"breadcrumbs":4,"title":1},"140":{"body":46,"breadcrumbs":2,"title":1},"141":{"body":0,"breadcrumbs":3,"title":2},"142":{"body":127,"breadcrumbs":4,"title":3},"143":{"body":392,"breadcrumbs":6,"title":5},"144":{"body":35,"breadcrumbs":4,"title":3},"145":{"body":26,"breadcrumbs":2,"title":1},"146":{"body":26,"breadcrumbs":2,"title":1},"147":{"body":75,"breadcrumbs":2,"title":1},"148":{"body":16,"breadcrumbs":2,"title":1},"149":{"body":18,"breadcrumbs":3,"title":2},"15":{"body":69,"breadcrumbs":4,"title":1},"150":{"body":25,"breadcrumbs":2,"title":1},"151":{"body":122,"breadcrumbs":3,"title":2},"152":{"body":50,"breadcrumbs":2,"title":1},"153":{"body":12,"breadcrumbs":4,"title":3},"154":{"body":45,"breadcrumbs":3,"title":2},"155":{"body":31,"breadcrumbs":3,"title":2},"156":{"body":0,"breadcrumbs":3,"title":2},"157":{"body":26,"breadcrumbs":4,"title":3},"158":{"body":49,"breadcrumbs":4,"title":3},"159":{"body":33,"breadcrumbs":4,"title":3},"16":{"body":15,"breadcrumbs":4,"title":1},"160":{"body":105,"breadcrumbs":3,"title":2},"161":{"body":87,"breadcrumbs":2,"title":1},"162":{"body":116,"breadcrumbs":4,"title":3},"163":{"body":362,"breadcrumbs":4,"title":3},"164":{"body":49,"breadcrumbs":2,"title":1},"165":{"body":38,"breadcrumbs":3,"title":2},"166":{"body":97,"breadcrumbs":3,"title":2},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":53,"breadcrumbs":3,"title":2},"169":{"body":169,"breadcrumbs":6,"title":5},"17":{"body":8,"breadcrumbs":4,"title":1},"170":{"body":80,"breadcrumbs":3,"title":1},"171":{"body":61,"breadcrumbs":4,"title":2},"172":{"body":29,"breadcrumbs":3,"title":1},"173":{"body":52,"breadcrumbs":3,"title":1},"174":{"body":48,"breadcrumbs":3,"title":1},"175":{"body":42,"breadcrumbs":3,"title":1},"176":{"body":62,"breadcrumbs":4,"title":2},"177":{"body":209,"breadcrumbs":5,"title":3},"178":{"body":159,"breadcrumbs":6,"title":4},"179":{"body":67,"breadcrumbs":5,"title":3},"18":{"body":4,"breadcrumbs":4,"title":1},"180":{"body":91,"breadcrumbs":5,"title":3},"181":{"body":49,"breadcrumbs":5,"title":3},"182":{"body":50,"breadcrumbs":5,"title":3},"183":{"body":18,"breadcrumbs":4,"title":2},"184":{"body":143,"breadcrumbs":3,"title":1},"185":{"body":38,"breadcrumbs":4,"title":2},"186":{"body":38,"breadcrumbs":4,"title":2},"187":{"body":22,"breadcrumbs":6,"title":4},"188":{"body":34,"breadcrumbs":4,"title":2},"189":{"body":45,"breadcrumbs":4,"title":2},"19":{"body":0,"breadcrumbs":4,"title":1},"190":{"body":121,"breadcrumbs":4,"title":2},"191":{"body":40,"breadcrumbs":4,"title":2},"192":{"body":64,"breadcrumbs":3,"title":1},"193":{"body":98,"breadcrumbs":3,"title":1},"194":{"body":18,"breadcrumbs":5,"title":3},"195":{"body":79,"breadcrumbs":3,"title":1},"196":{"body":12,"breadcrumbs":3,"title":1},"197":{"body":73,"breadcrumbs":4,"title":2},"198":{"body":57,"breadcrumbs":5,"title":3},"199":{"body":332,"breadcrumbs":5,"title":3},"2":{"body":41,"breadcrumbs":2,"title":1},"20":{"body":34,"breadcrumbs":4,"title":1},"200":{"body":261,"breadcrumbs":6,"title":4},"201":{"body":75,"breadcrumbs":5,"title":3},"202":{"body":57,"breadcrumbs":3,"title":1},"203":{"body":173,"breadcrumbs":4,"title":2},"204":{"body":98,"breadcrumbs":3,"title":1},"205":{"body":50,"breadcrumbs":5,"title":2},"206":{"body":103,"breadcrumbs":5,"title":2},"207":{"body":85,"breadcrumbs":4,"title":1},"208":{"body":92,"breadcrumbs":8,"title":5},"209":{"body":87,"breadcrumbs":7,"title":4},"21":{"body":12,"breadcrumbs":5,"title":2},"210":{"body":179,"breadcrumbs":4,"title":1},"211":{"body":116,"breadcrumbs":5,"title":2},"212":{"body":191,"breadcrumbs":5,"title":2},"213":{"body":48,"breadcrumbs":2,"title":1},"214":{"body":157,"breadcrumbs":5,"title":4},"215":{"body":386,"breadcrumbs":2,"title":1},"216":{"body":42,"breadcrumbs":5,"title":4},"217":{"body":144,"breadcrumbs":4,"title":3},"218":{"body":188,"breadcrumbs":5,"title":4},"219":{"body":79,"breadcrumbs":4,"title":3},"22":{"body":15,"breadcrumbs":4,"title":1},"220":{"body":35,"breadcrumbs":3,"title":2},"221":{"body":54,"breadcrumbs":2,"title":1},"222":{"body":114,"breadcrumbs":2,"title":1},"223":{"body":73,"breadcrumbs":3,"title":2},"224":{"body":52,"breadcrumbs":3,"title":2},"225":{"body":56,"breadcrumbs":4,"title":3},"226":{"body":48,"breadcrumbs":4,"title":2},"227":{"body":128,"breadcrumbs":4,"title":2},"228":{"body":11,"breadcrumbs":4,"title":2},"229":{"body":70,"breadcrumbs":5,"title":3},"23":{"body":91,"breadcrumbs":4,"title":1},"230":{"body":62,"breadcrumbs":6,"title":4},"231":{"body":57,"breadcrumbs":6,"title":4},"232":{"body":118,"breadcrumbs":8,"title":6},"233":{"body":33,"breadcrumbs":4,"title":2},"234":{"body":78,"breadcrumbs":4,"title":2},"235":{"body":97,"breadcrumbs":5,"title":3},"236":{"body":90,"breadcrumbs":3,"title":1},"237":{"body":36,"breadcrumbs":4,"title":2},"238":{"body":231,"breadcrumbs":5,"title":3},"239":{"body":5,"breadcrumbs":2,"title":2},"24":{"body":82,"breadcrumbs":5,"title":2},"240":{"body":29,"breadcrumbs":3,"title":2},"241":{"body":102,"breadcrumbs":3,"title":2},"242":{"body":161,"breadcrumbs":4,"title":3},"25":{"body":71,"breadcrumbs":5,"title":2},"26":{"body":64,"breadcrumbs":4,"title":1},"27":{"body":27,"breadcrumbs":4,"title":1},"28":{"body":0,"breadcrumbs":4,"title":1},"29":{"body":70,"breadcrumbs":6,"title":3},"3":{"body":139,"breadcrumbs":2,"title":1},"30":{"body":145,"breadcrumbs":5,"title":2},"31":{"body":196,"breadcrumbs":4,"title":1},"32":{"body":27,"breadcrumbs":4,"title":1},"33":{"body":115,"breadcrumbs":6,"title":3},"34":{"body":13,"breadcrumbs":4,"title":1},"35":{"body":31,"breadcrumbs":4,"title":1},"36":{"body":151,"breadcrumbs":5,"title":2},"37":{"body":125,"breadcrumbs":7,"title":4},"38":{"body":87,"breadcrumbs":5,"title":2},"39":{"body":135,"breadcrumbs":4,"title":1},"4":{"body":34,"breadcrumbs":2,"title":1},"40":{"body":53,"breadcrumbs":4,"title":1},"41":{"body":108,"breadcrumbs":5,"title":2},"42":{"body":128,"breadcrumbs":6,"title":2},"43":{"body":68,"breadcrumbs":5,"title":1},"44":{"body":43,"breadcrumbs":5,"title":1},"45":{"body":5,"breadcrumbs":5,"title":1},"46":{"body":97,"breadcrumbs":5,"title":1},"47":{"body":75,"breadcrumbs":5,"title":1},"48":{"body":26,"breadcrumbs":5,"title":1},"49":{"body":25,"breadcrumbs":6,"title":3},"5":{"body":31,"breadcrumbs":4,"title":2},"50":{"body":0,"breadcrumbs":6,"title":3},"51":{"body":74,"breadcrumbs":4,"title":1},"52":{"body":39,"breadcrumbs":7,"title":4},"53":{"body":43,"breadcrumbs":6,"title":3},"54":{"body":92,"breadcrumbs":5,"title":2},"55":{"body":114,"breadcrumbs":5,"title":2},"56":{"body":77,"breadcrumbs":6,"title":3},"57":{"body":174,"breadcrumbs":6,"title":3},"58":{"body":146,"breadcrumbs":6,"title":3},"59":{"body":48,"breadcrumbs":5,"title":2},"6":{"body":71,"breadcrumbs":4,"title":1},"60":{"body":129,"breadcrumbs":5,"title":2},"61":{"body":0,"breadcrumbs":4,"title":1},"62":{"body":124,"breadcrumbs":4,"title":1},"63":{"body":79,"breadcrumbs":6,"title":3},"64":{"body":67,"breadcrumbs":4,"title":1},"65":{"body":182,"breadcrumbs":5,"title":2},"66":{"body":136,"breadcrumbs":4,"title":1},"67":{"body":110,"breadcrumbs":5,"title":2},"68":{"body":21,"breadcrumbs":4,"title":1},"69":{"body":116,"breadcrumbs":4,"title":1},"7":{"body":48,"breadcrumbs":4,"title":1},"70":{"body":5,"breadcrumbs":2,"title":1},"71":{"body":21,"breadcrumbs":2,"title":1},"72":{"body":79,"breadcrumbs":2,"title":1},"73":{"body":64,"breadcrumbs":3,"title":2},"74":{"body":41,"breadcrumbs":3,"title":2},"75":{"body":97,"breadcrumbs":2,"title":1},"76":{"body":82,"breadcrumbs":4,"title":3},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":137,"breadcrumbs":3,"title":1},"79":{"body":111,"breadcrumbs":3,"title":1},"8":{"body":97,"breadcrumbs":4,"title":1},"80":{"body":162,"breadcrumbs":6,"title":4},"81":{"body":44,"breadcrumbs":4,"title":2},"82":{"body":44,"breadcrumbs":4,"title":2},"83":{"body":137,"breadcrumbs":6,"title":2},"84":{"body":7,"breadcrumbs":6,"title":2},"85":{"body":34,"breadcrumbs":6,"title":3},"86":{"body":42,"breadcrumbs":4,"title":1},"87":{"body":67,"breadcrumbs":7,"title":4},"88":{"body":64,"breadcrumbs":7,"title":4},"89":{"body":65,"breadcrumbs":5,"title":2},"9":{"body":0,"breadcrumbs":4,"title":1},"90":{"body":59,"breadcrumbs":7,"title":4},"91":{"body":40,"breadcrumbs":8,"title":5},"92":{"body":98,"breadcrumbs":5,"title":2},"93":{"body":187,"breadcrumbs":8,"title":3},"94":{"body":84,"breadcrumbs":6,"title":2},"95":{"body":80,"breadcrumbs":6,"title":2},"96":{"body":229,"breadcrumbs":6,"title":2},"97":{"body":51,"breadcrumbs":6,"title":2},"98":{"body":77,"breadcrumbs":6,"title":2},"99":{"body":54,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"Welcome to Move, a next generation language for secure asset programming. Its primary use case is in blockchain environments, where Move programs are used to construct state changes. Move allows developers to write programs that flexibly manage and transfer assets, while providing the security and protections against attacks on those assets. However, Move has been developed with use cases in mind outside a blockchain context as well. Move takes its cue from Rust by using resource types with move (hence the name) semantics as an explicit representation of digital assets, such as currency.","breadcrumbs":"The Move Reference » The Move Reference","id":"0","title":"The Move Reference"},"1":{"body":"Modules are the core program unit that define types along with functions that operate on these types. Struct types define the schema of Move's storage , and module functions define the rules interacting with values of those types. While modules themselves are also stored in storage, they are not accessible from within a Move program. In a blockchain environment, the modules are stored on chain in a process typically referred to as \"publishing\". After being published, entry and public functions can be invoked according to the rules of that particular Move instance.","breadcrumbs":"Modules » Modules","id":"1","title":"Modules"},"10":{"body":"Each of these types supports the same set of checked arithmetic operations. For all of these operations, both arguments (the left and right side operands) must be of the same type. If you need to operate over values of different types, you will need to first perform a cast . Similarly, if you expect the result of the operation to be too large for the integer type, perform a cast to a larger size before performing the operation. All arithmetic operations abort instead of behaving in a way that mathematical integers would not (e.g., overflow, underflow, divide-by-zero). Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0","breadcrumbs":"Primitive Types » Integers » Arithmetic","id":"10","title":"Arithmetic"},"100":{"body":"Patterns are not expressions, but they are nevertheless typed. This means that the type of a pattern must match the type of the value it matches. For example, the pattern 1 has an integer type, the pattern MyEnum::Variant(1, true) has type MyEnum, the pattern MyStruct { x, y } has type MyStruct, and OtherStruct { x: true, y: 1} has type OtherStruct. If you try to match on an expression that differs from the type of the pattern in the match, this will result in a type error. For example: match (1) { // The `true` literal pattern is of type `bool` so this is a type error. true => 1, // TYPE ERROR: expected type u64, found bool _ => 2,\n} Similarly, the following would also result in a type error because MyEnum and MyStruct are different types: match (MyStruct { x: 0, y: 0 }) { MyEnum::Variant(..) => 1, // TYPE ERROR: expected type MyEnum, found MyStruct\n}","breadcrumbs":"Control Flow » Patterm Matching » Pattern Typing","id":"100","title":"Pattern Typing"},"101":{"body":"Prior to delving into the specifics of pattern matching and what it means for a value to \"match\" a pattern, let's examine a few examples to provide an intuition for the concept. fun test_lit(x: u64): u8 { match (x) { 1 => 2, 2 => 3, _ => 4, }\n}\ntest_lit(1); // returns 2\ntest_lit(2); // returns 3\ntest_lit(3); // returns 4\ntest_lit(10); // returns 4 fun test_var(x: u64): u64 { match (x) { y => y, }\n}\ntest_var(1); // returns 1\ntest_var(2); // returns 2\ntest_var(3); // returns 3\n... const MyConstant: u64 = 10;\nfun test_constant(x: u64): u64 { match (x) { MyConstant => 1, _ => 2, }\n}\ntest_constant(MyConstant); // returns 1\ntest_constant(10); // returns 1\ntest_constant(20); // returns 2 fun test_or_pattern(x: u64): u64 { match (x) { 1 | 2 | 3 => 1, 4 | 5 | 6 => 2, _ => 3, }\n}\ntest_or_pattern(3); // returns 1\ntest_or_pattern(5); // returns 2\ntest_or_pattern(70); // returns 3 fun test_or_at_pattern(x: u64): u64 { match (x) { x @ (1 | 2 | 3) => x + 1, y @ (4 | 5 | 6) => y + 2, z => z + 3, }\n}\ntest_or_pattern(2); // returns 3\ntest_or_pattern(5); // returns 7\ntest_or_pattern(70); // returns 73 The most important thing to note from these examples is that a pattern matches a value if the value is equal to the pattern, and wildcard/variable patterns match anything. This is true for literals, variables, and constants. For example, in the test_lit function, the value 1 matches the pattern 1, the value 2 matches the pattern 2, and the value 3 matches the wildcard _. Similarly, in the test_var function, both the value 1 and the value 2 matches the pattern y. A variable x matches (or \"equals\") any value, and a wildcard _ matches any value (but only one value). Or-patterns are like a logical OR, where a value matches the pattern if it matches any of patterns in the or-pattern so p1 | p2 | p3 should be read \"matches p1, or p2, or p3\".","breadcrumbs":"Control Flow » Patterm Matching » Matching","id":"101","title":"Matching"},"102":{"body":"Pattern matching includes the concept of constructor patterns. These patterns allow you to inspect and access deep within both structs and enums, and are one of the most powerful parts of pattern matching. Constructor patterns, coupled with variable bindings, allow you to match on values by their structure, and pull out the parts of the value you care about for usage on the right-hand side of the match arm. Take the following: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 3\nf(MyEnum::OtherVariant(false, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 2)); // returns 4 This is saying that \"if x is MyEnum::Variant with the fields 1 and true, then return 1. If it is MyEnum::OtherVariant with any value for the first field, and 3 for the second, then return 2. If it is MyEnum::Variant with any fields, then return 3. Finally, if it is MyEnum::OtherVariant with any fields, then return 4\". You can also nest patterns. So, if you wanted to match either 1, 2, or 10, instead of just matching 1 in the previous MyEnum::Variant, you could do so with an or-pattern: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1 | 2 | 10, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 1\nf(MyEnum::Variant(10, true)); // returns 1\nf(MyEnum::Variant(10, false)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Matching Constructors","id":"102","title":"Matching Constructors"},"103":{"body":"Additionally, match bindings are subject to the same ability restrictions as other aspects of Move. In particular, the compiler will signal an error if you try to match a value (not-reference) without drop using a wildcard, as the wildcard expects to drop the value. Similarly, if you bind a non-drop value using a binder, it must be used in the right-hand side of the match arm. In addition, if you fully destruct that value, you have unpacked it, matching the semantics of non-drop struct unpacking . See the abilities section on drop for more details about the drop capability. public struct NonDrop(u64) fun drop_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, _ => 2 // ERROR: cannot wildcard match on a non-droppable value }\n} fun destructure_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, NonDrop(_) => 2 // OK! }\n} fun use_nondrop(x: NonDrop): NonDrop { match (x) { NonDrop(1) => NonDrop(8), x => x }\n}","breadcrumbs":"Control Flow » Patterm Matching » Ability Constraints","id":"103","title":"Ability Constraints"},"104":{"body":"The match expression in Move must be exhaustive : every possible value of the type being matched must be covered by one of the patterns in one of the match's arms. If the series of match arms is not exhaustive, the compiler will raise an error. Note that any arm with a guard expression does not contribute to match exhaustion, as it might fail to match at runtime. As an example, a match on a u8 is exhaustive only if it matches on every number from 0 to 255 inclusive, unless there is a wildcard or variable pattern present. Similarly, a match on a bool would need to match on both true and false, unless there is a wildcard or variable pattern present. For structs, because there is only one type of constructor for the type, only one constructor needs to be matched, but the fields within the struct need to be matched exhaustively as well. Conversely, enums may define multiple variants, and each variant must be matched (including any sub-fields) for the match to be considered exhaustive. Because underscores and variables are wildcards that match anything, they count as matching all values of the type they are matching on in that position. Additionally, the multi-arity wildcard pattern .. can be used to match on multiple values within a struct or enum variant. To see some examples of non-exhaustive matches, consider the following: public enum MyEnum { Variant(u64, bool), OtherVariant(bool, u64),\n} public struct Pair(T, T) fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // ERROR: not exhaustive as the value `MyEnum::OtherVariant(_, 4)` is not matched. }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // ERROR: not exhaustive as the value `Pair(false, true)` is not matched. }\n} These examples can then be made exhaustive by adding a wildcard pattern to the end of the match arm, or by fully matching on the remaining values: fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // Now exhaustive since this will match all values of MyEnum::OtherVariant MyEnum::OtherVariant(..) => 2, }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // Now exhaustive since this will match all values of Pair Pair(false, true) => 1, }\n}","breadcrumbs":"Control Flow » Patterm Matching » Exhaustiveness","id":"104","title":"Exhaustiveness"},"105":{"body":"As previously mentioned, you can add a guard to a match arm by adding an if clause after the pattern. This guard will run after the pattern has been matched but before the expression on the right hand side of the arrow is evaluated. If the guard expression evaluates to true then the expression on the right hand side of the arrow will be evaluated, if it evaluates to false then it will be considered a failed match and the next match arm in the match expression will be checked. fun match_with_guard(x: u64): u64 { match (x) { 1 if (false) => 1, 1 => 2, _ => 3, }\n} match_with_guard(1); // returns 2\nmatch_with_guard(0); // returns 3 Guard expressions can reference variables bound in the pattern during evaluation. However, note that variables are only available as immutable reference in guards regardless of the pattern being matched -- even if there are mutability specifiers on the variable or if the pattern is being matched by value. fun incr(x: &mut u64) { *x = *x + 1;\n} fun match_with_guard_incr(x: u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} fun match_with_guard_incr2(x: &mut u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} Additionally, it is important to note any match arms that have guard expressions will not be considered either for exhaustivity purposes because the compiler has no way of evaluating the guard expression statically.","breadcrumbs":"Control Flow » Patterm Matching » Guards","id":"105","title":"Guards"},"106":{"body":"There are some restrictions on when the .. and mut pattern modifiers can be used in a pattern.","breadcrumbs":"Control Flow » Patterm Matching » Limitations on Specific Patterns","id":"106","title":"Limitations on Specific Patterns"},"107":{"body":"A mut modifier can be placed on a variable pattern to specify that the variable is to be mutated in the right-hand expression of the match arm. Note that since the mut modifier only signifies that the variable is to be mutated, not the underlying data, this can be used on all types of match (by value, immutable reference, and mutable reference). Note that the mut modifier can only be applied to variables, and not other types of patterns. public struct MyStruct(u64) fun top_level_mut(x: MyStruct) { match (x) { mut MyStruct(y) => 1, // ERROR: cannot use mut on a non-variable pattern }\n} fun mut_on_immut(x: &MyStruct): u64 { match (x) { MyStruct(mut y) => { y = &(*y + 1); *y } }\n} fun mut_on_value(x: MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} fun mut_on_mut(x: &mut MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} let mut x = MyStruct(1); mut_on_mut(&mut x); // returns 2\nx.0; // returns 2 mut_on_immut(&x); // returns 3\nx.0; // returns 2 mut_on_value(x); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Mutability Usage","id":"107","title":"Mutability Usage"},"108":{"body":"The .. pattern can only be used within a constructor pattern as a wildcard that matches any number of fields -- the the compiler expands the .. to inserting _ in any missing fields in the constructor pattern (if any). So MyStruct(_, _, _) is the same as MyStruct(..), MyStruct(1, _, _) is the same as MyStruct(1, ..). Because of this, there are some restrictions on how, and where the .. pattern can be used: It can only be used once within the constructor pattern; In positional arguments it can be used at the beginning, middle, or end of the patterns within the constructor; In named arguments it can only be used at the end of the patterns within the constructor; public struct MyStruct(u64, u64, u64, u64) has drop; public struct MyStruct2 { x: u64, y: u64, z: u64, w: u64,\n} fun wild_match(x: MyStruct) { match (x) { MyStruct(.., 1) => 1, // OK! The `..` pattern can be used at the begining of the constructor pattern MyStruct(1, ..) => 2, // OK! The `..` pattern can be used at the end of the constructor pattern MyStruct(1, .., 1) => 3, // OK! The `..` pattern can be used at the middle of the constructor pattern MyStruct(1, .., 1, 1) => 4, MyStruct(..) => 5, }\n} fun wild_match2(x: MyStruct2) { match (x) { MyStruct2 { x: 1, .. } => 1, MyStruct2 { x: 1, w: 2 .. } => 2, MyStruct2 { .. } => 3, }\n}","breadcrumbs":"Control Flow » Patterm Matching » .. Usage","id":"108","title":".. Usage"},"109":{"body":"Functions are declared inside of modules and define the logic and behavior of the module. Functions can be reused, either being called from other functions or as entry points for execution.","breadcrumbs":"Functions » Functions","id":"109","title":"Functions"},"11":{"body":"The integer types support the following bitwise operations that treat each number as a series of individual bits, either 0 or 1, instead of as numerical integer values. Bitwise operations do not abort. Syntax Operation Description & bitwise and Performs a boolean and for each bit pairwise | bitwise or Performs a boolean or for each bit pairwise ^ bitwise xor Performs a boolean exclusive or for each bit pairwise","breadcrumbs":"Primitive Types » Integers » Bitwise","id":"11","title":"Bitwise"},"110":{"body":"Functions are declared with the fun keyword followed by the function name, type parameters, parameters, a return type, and finally the function body. ? ? fun <[type_parameters: constraint],*>([identifier: type],*): For example fun foo(x: u64, y: T1, z: T2): (T2, T1, u64) { (z, y, x) }","breadcrumbs":"Functions » Declaration","id":"110","title":"Declaration"},"111":{"body":"Module functions, by default, can only be called within the same module. These internal (sometimes called private) functions cannot be called from other modules or as entry points. module a::m { fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} To allow access from other modules, the function must be declared public or public(package). Tangential to visibility, an entry function can be called as an entry point for execution. public visibility A public function can be called by any function defined in any module. As shown in the following example, a public function can be called by: other functions defined in the same module, functions defined in another module, or as an entry point for execution. module a::m { public fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // valid }\n} Fore more details on the entry point to execution see the section below . public(package) visibility The public(package) visibility modifier is a more restricted form of the public modifier to give more control about where a function can be used. A public(package) function can be called by: other functions defined in the same module, or other functions defined in the same package (the same address) module a::m { public(package) fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // valid, also in `a` }\n} module b::other { fun calls_m_foo(): u64 { b::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' can only be called from a module in `a` }\n} DEPRECATED public(friend) visibility Before the addition of public(package), public(friend) was used to allow limited public access to functions in the same package, but where the list of allowed modules had to be explicitly enumerated by the callee's module. see Friends for more details.","breadcrumbs":"Functions » Visibility","id":"111","title":"Visibility"},"112":{"body":"In addition to public functions, you might have some functions in your modules that you want to use as the entry point to execution. The entry modifier is designed to allow module functions to initiate execution, without having to expose the functionality to other modules. Essentially, the combination of pbulic and entry functions define the \"main\" functions of a module, and they specify where Move programs can start executing. Keep in mind though, an entry function can still be called by other Move functions. So while they can serve as the start of a Move program, they aren't restricted to that case. For example: module a::m { entry fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid!\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} entry functions may have restrictions on their parameters and return types. Although, these restrictions are specific to each individual deployment of Move. The documentation for entry functions on Sui can be found here. . To enable easier testing, entry functions can be called from #[test] and #[test_only] contexts. module a::m { entry fun foo(): u64 { 0 }\n}\nmodule a::m_test { #[test] fun my_test(): u64 { a::m::foo() } // valid! #[test_only] fun my_test_helper(): u64 { a::m::foo() } // valid!\n}","breadcrumbs":"Functions » entry modifier","id":"112","title":"entry modifier"},"113":{"body":"Function names can start with letters a to z. After the first character, function names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. fun fOO() {}\nfun bar_42() {}\nfun bAZ_19() {}","breadcrumbs":"Functions » Name","id":"113","title":"Name"},"114":{"body":"After the name, functions can have type parameters fun id(x: T): T { x }\nfun example(x: T1, y: T2): (T1, T1, T2) { (copy x, x, y) } For more details, see Move generics .","breadcrumbs":"Functions » Type Parameters","id":"114","title":"Type Parameters"},"115":{"body":"Functions parameters are declared with a local variable name followed by a type annotation fun add(x: u64, y: u64): u64 { x + y } We read this as x has type u64 A function does not have to have any parameters at all. fun useless() { } This is very common for functions that create new or empty data structures module a::example { public struct Counter { count: u64 } fun new_counter(): Counter { Counter { count: 0 } }\n}","breadcrumbs":"Functions » Parameters","id":"115","title":"Parameters"},"116":{"body":"After the parameters, a function specifies its return type. fun zero(): u64 { 0 } Here : u64 indicates that the function's return type is u64. Using tuples , a function can return multiple values: fun one_two_three(): (u64, u64, u64) { (0, 1, 2) } If no return type is specified, the function has an implicit return type of unit (). These functions are equivalent: fun just_unit(): () { () }\nfun just_unit() { () }\nfun just_unit() { } As mentioned in the tuples section , these tuple \"values\" do not exist as runtime values. This means that a function that returns unit () does not return any value during execution.","breadcrumbs":"Functions » Return type","id":"116","title":"Return type"},"117":{"body":"A function's body is an expression block. The return value of the function is the last value in the sequence fun example(): u64 { let x = 0; x = x + 1; x // returns 'x'\n} See the section below for more information on returns For more information on expression blocks, see Move variables .","breadcrumbs":"Functions » Function body","id":"117","title":"Function body"},"118":{"body":"Some functions do not have a body specified, and instead have the body provided by the VM. These functions are marked native. Without modifying the VM source code, a programmer cannot add new native functions. Furthermore, it is the intent that native functions are used for either standard library code or for functionality needed for the given Move environment. Most native functions you will likely see are in standard library code, such as vector module std::vector { native public fun length(v: &vector): u64; ...\n}","breadcrumbs":"Functions » Native Functions","id":"118","title":"Native Functions"},"119":{"body":"When calling a function, the name can be specified either through an alias or fully qualified module a::example { public fun zero(): u64 { 0 }\n} module b::other { use a::example::{Self, zero}; fun call_zero() { // With the `use` above all of these calls are equivalent a::example::zero(); example::zero(); zero(); }\n} When calling a function, an argument must be given for every parameter. module a::example { public fun takes_none(): u64 { 0 } public fun takes_one(x: u64): u64 { x } public fun takes_two(x: u64, y: u64): u64 { x + y } public fun takes_three(x: u64, y: u64, z: u64): u64 { x + y + z }\n} module b::other { fun call_all() { a::example::takes_none(); a::example::takes_one(0); a::example::takes_two(0, 1); a::example::takes_three(0, 1, 2); }\n} Type arguments can be either specified or inferred. Both calls are equivalent. module aexample { public fun id(x: T): T { x }\n} module b::other { fun call_all() { a::example::id(0); a::example::id(0); }\n} For more details, see Move generics .","breadcrumbs":"Functions » Calling","id":"119","title":"Calling"},"12":{"body":"Similar to the bitwise operations, each integer type supports bit shifts. But unlike the other operations, the righthand side operand (how many bits to shift by) must always be a u8 and need not match the left side operand (the number you are shifting). Bit shifts can abort if the number of bits to shift by is greater than or equal to 8, 16, 32, 64, 128 or 256 for u8, u16, u32, u64, u128 and u256 respectively. Syntax Operation Aborts if << shift left Number of bits to shift by is greater than the size of the integer type >> shift right Number of bits to shift by is greater than the size of the integer type","breadcrumbs":"Primitive Types » Integers » Bit Shifts","id":"12","title":"Bit Shifts"},"120":{"body":"The result of a function, its \"return value\", is the final value of its function body. For example fun add(x: u64, y: u64): u64 { x + y\n} The return value here is the result of x + y. As mentioned above , the function's body is an expression block . The expression block can sequence various statements, and the final expression in the block will be be the value of that block fun double_and_add(x: u64, y: u64): u64 { let double_x = x * 2; let double_y = y * 2; double_x + double_y\n} The return value here is the result of double_x + double_y","breadcrumbs":"Functions » Returning values","id":"120","title":"Returning values"},"121":{"body":"A function implicitly returns the value that its body evaluates to. However, functions can also use the explicit return expression: fun f1(): u64 { return 0 }\nfun f2(): u64 { 0 } These two functions are equivalent. In this slightly more involved example, the function subtracts two u64 values, but returns early with 0 if the second value is too large: fun safe_sub(x: u64, y: u64): u64 { if (y > x) return 0; x - y\n} Note that the body of this function could also have been written as if (y > x) 0 else x - y. However return really shines is in exiting deep within other control flow constructs. In this example, the function iterates through a vector to find the index of a given value: use std::vector;\nuse std::option::{Self, Option};\nfun index_of(v: &vector, target: &T): Option { let i = 0; let n = vector::length(v); while (i < n) { if (vector::borrow(v, i) == target) return option::some(i); i = i + 1 }; option::none()\n} Using return without an argument is shorthand for return (). That is, the following two functions are equivalent: fun foo() { return }\nfun foo() { return () }","breadcrumbs":"Functions » return expression","id":"121","title":"return expression"},"122":{"body":"A struct is a user-defined data structure containing typed fields. Structs can store any non-reference, non-tuple type, including other structs. Structs can be used to define all \"asset\" values or unrestricted values, where the operations performed on those values can be controlled by the struct's abilities . By default, structs are linear and ephemeral. By this we mean that they: cannot be copied, cannot be dropped, and cannot be stored in storage. This means that all values have to have ownership transferred (linear) and the values must be dealt with by the end of the program's execution (ephemeral). We can relax this behavior by giving the struct abilities which allow values to be copied or dropped and also to be stored in storage or to define storage schemas.","breadcrumbs":"Structs » Structs and Resources","id":"122","title":"Structs and Resources"},"123":{"body":"Structs must be defined inside a module, and the struct's fields can either be named or positional: module a::m { public struct Foo { x: u64, y: bool } public struct Bar {} public struct Baz { foo: Foo, } // ^ note: it is fine to have a trailing comma public struct PosFoo(u64, bool) public struct PosBar() public struct PosBaz(Foo)\n} Structs cannot be recursive, so the following definitions are invalid: public struct Foo { x: Foo }\n// ^ ERROR! recursive definition public struct A { b: B }\npublic struct B { a: A }\n// ^ ERROR! recursive definition public struct D(D)\n// ^ ERROR! recursive definition","breadcrumbs":"Structs » Defining Structs","id":"123","title":"Defining Structs"},"124":{"body":"As you may have noticed, all structs are declared as public. This means that the type of the struct can be referred to from any other module. However, the fields of the struct, and the ability to create or destroy the struct, are still internal to the module that defines the struct. In the future, we plan on adding to declare structs as public(package) or as internal, much like functions .","breadcrumbs":"Structs » Visibility","id":"124","title":"Visibility"},"125":{"body":"As mentioned above: by default, a struct declaration is linear and ephemeral. So to allow the value to be used in these ways (e.g., copied, dropped, stored in an object , or used to define a storable object ), structs can be granted abilities by annotating them with has : module a::m { public struct Foo has copy, drop { x: u64, y: bool }\n} The ability declaration can occur either before or after the struct's fields. However, only one or the other can be used, and not both. If declared after the struct's fields, the ability declaration must be terminated with a semicolon: module a::m { public struct PreNamedAbilities has copy, drop { x: u64, y: bool } public struct PostNamedAbilities { x: u64, y: bool } has copy, drop; public struct PostNamedAbilitiesInvalid { x: u64, y: bool } has copy, drop // ^ ERROR! missing semicolon public struct NamedInvalidAbilities has copy { x: u64, y: bool } has drop; // ^ ERROR! duplicate ability declaration public struct PrePositionalAbilities has copy, drop (u64, bool) public struct PostPositionalAbilities (u64, bool) has copy, drop; public struct PostPositionalAbilitiesInvalid (u64, bool) has copy, drop // ^ ERROR! missing semicolon public struct InvalidAbilities has copy (u64, bool) has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating a struct's abilities .","breadcrumbs":"Structs » Abilities","id":"125","title":"Abilities"},"126":{"body":"Structs must start with a capital letter A to Z. After the first letter, struct names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. public struct Foo {}\npublic struct BAR {}\npublic struct B_a_z_4_2 {}\npublic struct P_o_s_Foo() This naming restriction of starting with A to Z is in place to give room for future language features. It may or may not be removed later.","breadcrumbs":"Structs » Naming","id":"126","title":"Naming"},"127":{"body":"","breadcrumbs":"Structs » Using Structs","id":"127","title":"Using Structs"},"128":{"body":"Values of a struct type can be created (or \"packed\") by indicating the struct name, followed by value for each field. For a struct with named fields, the order of the fields does not matter, but the field name needs to be provided. For a struct with positional fields, the order of the fields must match the order of the fields in the struct definition, and it must be created using () instead of {} to enclose the parameters. module a::m { public struct Foo has drop { x: u64, y: bool } public struct Baz has drop { foo: Foo } public struct Positional(u64, bool) has drop; fun example() { let foo = Foo { x: 0, y: false }; let baz = Baz { foo: foo }; // Note: positional struct values are created using parentheses and // based on position instead of name. let pos = Positional(0, false); let pos_invalid = Positional(false, 0); // ^ ERROR! Fields are out of order and the types don't match. }\n} For structs with named fields, you can use the following shorthand if you have a local variable with the same name as the field: let baz = Baz { foo: foo };\n// is equivalent to\nlet baz = Baz { foo }; This is sometimes called \"field name punning\".","breadcrumbs":"Structs » Creating Structs","id":"128","title":"Creating Structs"},"129":{"body":"Struct values can be destroyed by binding or assigning them in patterns using similar syntax to constructing them. module a::m { public struct Foo { x: u64, y: bool } public struct Bar(Foo) public struct Baz {} public struct Qux() fun example_destroy_foo() { let foo = Foo { x: 3, y: false }; let Foo { x, y: foo_y } = foo; // ^ shorthand for `x: x` // two new bindings // x: u64 = 3 // foo_y: bool = false } fun example_destroy_foo_wildcard() { let foo = Foo { x: 3, y: false }; let Foo { x, y: _ } = foo; // only one new binding since y was bound to a wildcard // x: u64 = 3 } fun example_destroy_foo_assignment() { let x: u64; let y: bool; Foo { x, y } = Foo { x: 3, y: false }; // mutating existing variables x and y // x = 3, y = false } fun example_foo_ref() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &foo; // two new bindings // x: &u64 // y: &bool } fun example_foo_ref_mut() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &mut foo; // two new bindings // x: &mut u64 // y: &mut bool } fun example_destroy_bar() { let bar = Bar(Foo { x: 3, y: false }); let Bar(Foo { x, y }) = bar; // ^ nested pattern // two new bindings // x: u64 = 3 // y: bool = false } fun example_destroy_baz() { let baz = Baz {}; let Baz {} = baz; } fun example_destroy_qux() { let qux = Qux(); let Qux() = qux; }\n}","breadcrumbs":"Structs » Destroying Structs via Pattern Matching","id":"129","title":"Destroying Structs via Pattern Matching"},"13":{"body":"Integer types are the only types in Move that can use the comparison operators. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Comparison operations do not abort. Syntax Operation < less than > greater than <= less than or equal to >= greater than or equal to","breadcrumbs":"Primitive Types » Integers » Comparisons","id":"13","title":"Comparisons"},"130":{"body":"Fields of a struct can be accessed using the dot operator .. For structs with named fields, the fields can be accessed by their name: public struct Foo { x: u64, y: bool }\nlet foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true For positional structs, fields can be accessed by their position in the struct definition: public struct PosFoo(u64, bool)\nlet pos_foo = PosFoo(3, true);\nlet x = pos_foo.0; // x == 3\nlet y = pos_foo.1; // y == true Accessing struct fields without borrowing or copying them is subject to the field's ability constraints. For more details see the sections on borrowing structs and fields and reading and writing fields for more information.","breadcrumbs":"Structs » Accessing Struct Fields","id":"130","title":"Accessing Struct Fields"},"131":{"body":"The & and &mut operator can be used to create references to structs or fields. These examples include some optional type annotations (e.g., : &Foo) to demonstrate the type of operations. let foo = Foo { x: 3, y: true };\nlet foo_ref: &Foo = &foo;\nlet y: bool = foo_ref.y; // reading a field via a reference to the struct\nlet x_ref: &u64 = &foo.x; // borrowing a field by extending a reference to the struct let x_ref_mut: &mut u64 = &mut foo.x;\n*x_ref_mut = 42; // modifying a field via a mutable reference It is possible to borrow inner fields of nested structs: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo); let x_ref = &bar.0.x; You can also borrow a field via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &foo;\nlet x_ref = &foo_ref.x;\n// this has the same effect as let x_ref = &foo.x","breadcrumbs":"Structs » Borrowing Structs and Fields","id":"131","title":"Borrowing Structs and Fields"},"132":{"body":"If you need to read and copy a field's value, you can then dereference the borrowed field: let foo = Foo { x: 3, y: true };\nlet bar = Bar(copy foo);\nlet x: u64 = *&foo.x;\nlet y: bool = *&foo.y;\nlet foo2: Foo = *&bar.0; More canonically, the dot operator can be used to read fields of a struct without any borrowing. As is true with dereferencing , the field type must have the copy ability . let foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true Dot operators can be chained to access nested fields: let bar = Bar(Foo { x: 3, y: true });\nlet x = baz.0.x; // x = 3; However, this is not permitted for fields that contain non-primitive types, such a vector or another struct: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo);\nlet foo2: Foo = *&bar.0;\nlet foo3: Foo = bar.0; // error! must add an explicit copy with *& We can mutably borrow a field to a struct to assign it a new value: let mut foo = Foo { x: 3, y: true };\n*&mut foo.x = 42; // foo = Foo { x: 42, y: true }\n*&mut foo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\n*&mut bar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\n*&mut bar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) Similar to dereferencing, we can instead directly use the dot operator to modify a field. And in both cases, the field type must have the drop ability . let mut foo = Foo { x: 3, y: true };\nfoo.x = 42; // foo = Foo { x: 42, y: true }\nfoo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\nbar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\nbar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) The dot syntax for assignment also works via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &mut foo;\nfoo_ref.x = foo_ref.x + 1;","breadcrumbs":"Structs » Reading and Writing Fields","id":"132","title":"Reading and Writing Fields"},"133":{"body":"Most struct operations on a struct type T can only be performed inside the module that declares T: Struct types can only be created (\"packed\"), destroyed (\"unpacked\") inside the module that defines the struct. The fields of a struct are only accessible inside the module that defines the struct. Following these rules, if you want to modify your struct outside the module, you will need to provide public APIs for them. The end of the chapter contains some examples of this. However as stated in the visibility section above , struct types are always visible to another module module a::m { public struct Foo has drop { x: u64 } public fun new_foo(): Foo { Foo { x: 42 } }\n} module a::n { use a::m::Foo; public struct Wrapper has drop { foo: Foo // ^ valid the type is public } fun f1(foo: Foo) { let x = foo.x; // ^ ERROR! cannot access fields of `Foo` outside of `a::m` } fun f2() { let foo_wrapper = Wrapper { foo: m::new_foo() }; // ^ valid the function is public }\n}","breadcrumbs":"Structs » Privileged Struct Operations","id":"133","title":"Privileged Struct Operations"},"134":{"body":"As mentioned above in Defining Structs , structs are by default linear and ephemeral. This means they cannot be copied or dropped. This property can be very useful when modeling real world assets like money, as you do not want money to be duplicated or get lost in circulation. module a::m { public struct Foo { x: u64 } public fun copying() { let foo = Foo { x: 100 }; let foo_copy = copy foo; // ERROR! 'copy'-ing requires the 'copy' ability let foo_ref = &foo; let another_copy = *foo_ref // ERROR! dereference requires the 'copy' ability } public fun destroying_1() { let foo = Foo { x: 100 }; // error! when the function returns, foo still contains a value. // This destruction requires the 'drop' ability } public fun destroying_2(f: &mut Foo) { *f = Foo { x: 100 } // error! // destroying the old value via a write requires the 'drop' ability }\n} To fix the example fun destroying_1, you would need to manually \"unpack\" the value: module a::m { public struct Foo { x: u64 } public fun destroying_1_fixed() { let foo = Foo { x: 100 }; let Foo { x: _ } = foo; }\n} Recall that you are only able to deconstruct a struct within the module in which it is defined. This can be leveraged to enforce certain invariants in a system, for example, conservation of money. If on the other hand, your struct does not represent something valuable, you can add the abilities copy and drop to get a struct value that might feel more familiar from other programming languages: module a::m { public struct Foo has copy, drop { x: u64 } public fun run() { let foo = Foo { x: 100 }; let foo_copy = foo; // ^ this code copies foo, // whereas `let x = move foo` would move foo let x = foo.x; // x = 100 let x_copy = foo_copy.x; // x = 100 // both foo and foo_copy are implicitly discarded when the function returns }\n}","breadcrumbs":"Structs » Ownership","id":"134","title":"Ownership"},"135":{"body":"Structs can be used to define storage schemas, but the details are different per deployment of Move. See the documentation for the key ability and Sui objects for more details.","breadcrumbs":"Structs » Storage","id":"135","title":"Storage"},"136":{"body":"An enum is a user-defined data structure containing one or more variants . Each variant can optionally contain typed fields. The number, and types of these fields can differ for each variant in the enumeration. Fields in enums can store any non-reference, non-tuple type, including other structs or enums. As a simple example, consider the following enum definition in Move: public enum Action { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64),\n} This declares an enum Action that represents different actions that can be taken by a game -- you can Stop, Pause for a given duration, MoveTo a specific location, or Jump to a specific height. Similar to structs, enums can have abilities that control what operations can be performed on them. It is important to note however that enums cannot have the key ability since they cannot be top-level objects.","breadcrumbs":"Enums » Enumerations","id":"136","title":"Enumerations"},"137":{"body":"Enums must be defined in a module, an enum must contain at least one variant, and each variant of an enum can either have no fields, positional fields, or named fields. Here are some examples of each: module a::m { public enum Foo has drop { VariantWithNoFields, // ^ note: it is fine to have a trailing comma after variant declarations } public enum Bar has copy, drop { VariantWithPositionalFields(u64, bool), } public enum Baz has drop { VariantWithNamedFields { x: u64, y: bool, z: Bar }, }\n} Enums cannot be recursive in any of their variants, so the following definitions of an enum are not allowed because they would be recursive in at least one variant. Incorrect: module a::m { public enum Foo { Recursive(Foo), // ^ error: recursive enum variant } public enum List { Nil, Cons { head: u64, tail: List }, // ^ error: recursive enum variant } public enum BTree { Leaf(T), Node { left: BTree, right: BTree }, // ^ error: recursive enum variant } // Mutually recursive enums are also not allowed public enum MutuallyRecursiveA { Base, Other(MutuallyRecursiveB), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant } public enum MutuallyRecursiveB { Base, Other(MutuallyRecursiveA), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant }\n}","breadcrumbs":"Enums » Defining Enums","id":"137","title":"Defining Enums"},"138":{"body":"All enums are declared as public. This means that the type of the enum can be referred to from any other module. However, the variants of the enum, the fields within each variant, and the ability to create or destroy variants of the enum are internal to the module that defines the enum.","breadcrumbs":"Enums » Visibility","id":"138","title":"Visibility"},"139":{"body":"Just like with structs, by default an enum declaration is linear and ephemeral. To use an enum value in a non-linear or non-ephemeral way -- i.e., copied, dropped, or stored in an object -- you need to grant it additional abilities by annotating them with has : module a::m { public enum Foo has copy, drop { VariantWithNoFields, }\n} The ability declaration can occur either before or after the enum's variants, however only one or the other can be used, and not both. If declared after the variants, the ability declaration must be terminated with a semicolon: module a::m { public enum PreNamedAbilities has copy, drop { Variant } public enum PostNamedAbilities { Variant } has copy, drop; public enum PostNamedAbilitiesInvalid { Variant } has copy, drop // ^ ERROR! missing semicolon public enum NamedInvalidAbilities has copy { Variant } has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating abilities .","breadcrumbs":"Enums » Abilities","id":"139","title":"Abilities"},"14":{"body":"Like all types with drop , all integer types support the \"equal\" and \"not equal\" operations. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Equality operations do not abort. Syntax Operation == equal != not equal For more details see the section on equality","breadcrumbs":"Primitive Types » Integers » Equality","id":"14","title":"Equality"},"140":{"body":"Enums and variants within enums must start with a capital letter A to Z. After the first letter, enum names can contain underscores _, lowercase letters a to z, uppercase letters A to Z, or digits 0 to 9. public enum Foo { Variant }\npublic enum BAR { Variant }\npublic enum B_a_z_4_2 { V_a_riant_0 } This naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Enums » Naming","id":"140","title":"Naming"},"141":{"body":"","breadcrumbs":"Enums » Using Enums","id":"141","title":"Using Enums"},"142":{"body":"Values of an enum type can be created (or \"packed\") by indicating a variant of the enum, followed by a value for each field in the variant. The variant name must always be qualified by the enum's name. Similarly to structs, for a variant with named fields, the order of the fields does not matter but the field names need to be provided. For a variant with positional fields, the order of the fields matters and the order of the fields must match the order in the variant declaration. It must also be created using () instead of {}. If the variant has no fields, the variant name is sufficient and no () or {} needs to be used. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public enum Other has drop { Stop(u64), } fun example() { // Note: The `Stop` variant of `Action` doesn't have fields so no parentheses or curlies are needed. let stop = Action::Stop; let pause = Action::Pause { duration: 10 }; let move_to = Action::MoveTo { x: 10, y: 20 }; let jump = Action::Jump(10); // Note: The `Stop` variant of `Other` does have positional fields so we need to supply them. let other_stop = Other::Stop(10); }\n} For variants with named fields you can also use the shorthand syntax that you might be familiar with from structs to create the variant: let duration = 10; let pause = Action::Pause { duration: duration };\n// is equivalent to\nlet pause = Action::Pause { duration };","breadcrumbs":"Enums » Creating Enum Variants","id":"142","title":"Creating Enum Variants"},"143":{"body":"Since enum values can take on different shapes, dot access to fields of variants is not allowed like it is for struct fields. Instead, to access fields within a variant -- either by value, or immutable or mutable reference -- you must use pattern matching. You can pattern match on Move values by value, immutable reference, and mutable reference. When pattern matching by value, the value is moved into the match arm. When pattern matching by reference, the value is borrowed into the match arm (either immutably or mutably). We'll go through a brief description of pattern matching using match here, but for more information on pattern matching using match in Move see the Pattern Matching section. A match statement is used to pattern match on a Move value and consists of a number of match arms . Each match arm consists of a pattern, an arrow =>, and an expression, followed by a comma ,. The pattern can be a struct, enum variant, binding (x, y), wildcard (_ or ..), constant (ConstValue), or literal value (true, 42, and so on). The value is matched against each pattern from the top-down, and will match the first pattern that structurally matches the value. Once the value is matched, the expression on the right hand side of the => is executed. Additionally, match arms can have optional guards that are checked after the pattern matches but before the expression is executed. Guards are specified by the if keyword followed by an expression that must evaluate to a boolean value before the =>. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public struct GameState { // Fields containing a game state character_x: u64, character_y: u64, character_height: u64, // ... } fun perform_action(stat: &mut GameState, action: Action) { match (action) { // Handle the `Stop` variant Action::Stop => state.stop(), // Handle the `Pause` variant // If the duration is 0, do nothing Action::Pause { duration: 0 } => (), Action::Pause { duration } => state.pause(duration), // Handle the `MoveTo` variant Action::MoveTo { x, y } => state.move_to(x, y), // Handle the `Jump` variant // if the game disallows jumps then do nothing Action::Jump(_) if (state.jumps_not_allowed()) => (), // otherwise, jump to the specified height Action::Jump(height) => state.jump(height), } }\n} To see how to pattern match on an enum to update values within it mutably, let's take the following example of a simple enum that has two variants, each with a single field. We can then write two functions, one that only increments the value of the first variant, and another that only increments the value of the second variant: module a::m { public enum SimpleEnum { Variant1(u64), Variant2(u64), } public fun incr_enum_variant1(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant1(mut value) => *value += 1, _ => (), } } public fun incr_enum_variant2(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant2(mut value) => *value += 1, _ => (), } }\n} Now, if we have a value of SimpleEnum we can use the functions to increment the value of this variant: let mut x = SimpleEnum::Variant1(10);\nincr_enum_variant1(&mut x);\nassert!(x == SimpleEnum::Variant1(11));\n// Doesn't increment since it increments a different variant\nincr_enum_variant2(&mut x);\nassert!(x == SimpleEnum::Variant1(11)); When pattern matching on a Move value that does not have the drop ability, the value must be consumed or destructured in each match arm. If the value is not consumed or destructured in a match arm, the compiler will raise an error. This is to ensure that all possible values are handled in the match statement. As an example, consider the following code: module a::m { public enum X { Variant { x: u64 } } public fun bad(x: X) { match x { _ => () // ^ ERROR! value of type `X` is not consumed or destructured in this match arm } }\n} To properly handle this, you will need to destructure X and all its variants in the match's arm(s): module a::m { public enum X { Variant { x: u64 } } public fun good(x: X) { match x { // OK! Compiles since the value is destructured X::Variant { x: _ } => () } }\n}","breadcrumbs":"Enums » Pattern Matching Enum Variants and Destructuring","id":"143","title":"Pattern Matching Enum Variants and Destructuring"},"144":{"body":"As long as the enum has the drop ability, you can overwrite the value of an enum with a new value of the same type just as you might with other values in Move. module a::m { public enum X has drop { A(u64), B(u64), } public fun overwrite_enum(x: &mut X) { *x = X::A(10); }\n} let mut x = X::B(20);\noverwrite_enum(&mut x);\nassert!(x == X::A(10));","breadcrumbs":"Enums » Overwriting to Enum Values","id":"144","title":"Overwriting to Enum Values"},"145":{"body":"Constants are a way of giving a name to shared, static values inside of a module. The constant's value must be known at compilation. The constant's value is stored in the compiled module. And each time the constant is used, a new copy of that value is made.","breadcrumbs":"Constants » Constants","id":"145","title":"Constants"},"146":{"body":"Constant declarations begin with the const keyword, followed by a name, a type, and a value. const : = ; For example module a::example { const MY_ADDRESS: address = @a; public fun permissioned(addr: address) { assert!(addr == MY_ADDRESS, 0); }\n}","breadcrumbs":"Constants » Declaration","id":"146","title":"Declaration"},"147":{"body":"Constants must start with a capital letter A to Z. After the first letter, constant names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. const FLAG: bool = false;\nconst EMyErrorCode: u64 = 0;\nconst ADDRESS_42: address = @0x42; Even though you can use letters a to z in a constant. The general style guidelines are to use just uppercase letters A to Z, with underscores _ between each word. For error codes, we use E as a prefix and then upper camel case (also known as Pascal case) for the rest of the name, as seen in EMyErrorCode. The current naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Constants » Naming","id":"147","title":"Naming"},"148":{"body":"public or public(package) constants are not currently supported. const values can be used only in the declaring module. However, as a convenience, they can be used across modules in unit tests attributes .","breadcrumbs":"Constants » Visibility","id":"148","title":"Visibility"},"149":{"body":"Currently, constants are limited to the primitive types bool, u8, u16, u32, u64, u128, u256, address, and vector, where T is the valid type for a constant.","breadcrumbs":"Constants » Valid Expressions","id":"149","title":"Valid Expressions"},"15":{"body":"Integer types of one size can be cast to integer types of another size. Integers are the only types in Move that support casting. Casts do not truncate. Casting aborts if the result is too large for the specified type. Syntax Operation Aborts if (e as T) Cast integer expression e into an integer type T e is too large to represent as a T Here, the type of e must be 8, 16, 32, 64, 128 or 256 and T must be u8, u16, u32, u64, u128, or u256. For example: (x as u8) (y as u16) (873u16 as u32) (2u8 as u64) (1 + 3 as u128) (4/2 + 12345 as u256)","breadcrumbs":"Primitive Types » Integers » Casting","id":"15","title":"Casting"},"150":{"body":"Commonly, consts are assigned a simple value, or literal, of their type. For example const MY_BOOL: bool = false;\nconst MY_ADDRESS: address = @0x70DD;\nconst BYTES: vector = b\"hello world\";\nconst HEX_BYTES: vector = x\"DEADBEEF\";","breadcrumbs":"Constants » Values","id":"150","title":"Values"},"151":{"body":"In addition to literals, constants can include more complex expressions, as long as the compiler is able to reduce the expression to a value at compile time. Currently, equality operations, all boolean operations, all bitwise operations, and all arithmetic operations can be used. const RULE: bool = true && false;\nconst CAP: u64 = 10 * 100 + 1;\nconst SHIFTY: u8 = { (1 << 1) * (1 << 2) * (1 << 3) * (1 << 4)\n};\nconst HALF_MAX: u128 = 340282366920938463463374607431768211455 / 2;\nconst REM: u256 = 57896044618658097711785492504343953926634992332820282019728792003956564819968 % 654321;\nconst EQUAL: bool = 1 == 1; If the operation would result in a runtime exception, the compiler will give an error that it is unable to generate the constant's value const DIV_BY_ZERO: u64 = 1 / 0; // ERROR!\nconst SHIFT_BY_A_LOT: u64 = 1 << 100; // ERROR!\nconst NEGATIVE_U64: u64 = 0 - 1; // ERROR! Additionally, constants can refer to other constants within the same module. const BASE: u8 = 4;\nconst SQUARE: u8 = BASE * BASE; Note though, that any cycle in the constant definitions results in an error. const A: u16 = B + 1;\nconst B: u16 = A + 1; // ERROR!","breadcrumbs":"Constants » Complex Expressions","id":"151","title":"Complex Expressions"},"152":{"body":"Generics can be used to define functions and structs over different input data types. This language feature is sometimes referred to as parametric polymorphism. In Move, we will often use the term generics interchangeably with type parameters and type arguments . Generics are commonly used in library code, such as in vector , to declare code that works over any possible type (that satisfies the specified constraints). This sort of parameterization allows you to reuse the same implementation across multiple types and situations.","breadcrumbs":"Generics » Generics","id":"152","title":"Generics"},"153":{"body":"Both functions and structs can take a list of type parameters in their signatures, enclosed by a pair of angle brackets <...>.","breadcrumbs":"Generics » Declaring Type Parameters","id":"153","title":"Declaring Type Parameters"},"154":{"body":"Type parameters for functions are placed after the function name and before the (value) parameter list. The following code defines a generic identity function that takes a value of any type and returns that value unchanged. fun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} Once defined, the type parameter T can be used in parameter types, return types, and inside the function body.","breadcrumbs":"Generics » Generic Functions","id":"154","title":"Generic Functions"},"155":{"body":"Type parameters for structs are placed after the struct name, and can be used to name the types of the fields. public struct Foo has copy, drop { x: T } public struct Bar has copy, drop { x: T1, y: vector,\n} Note that type parameters do not have to be used","breadcrumbs":"Generics » Generic Structs","id":"155","title":"Generic Structs"},"156":{"body":"","breadcrumbs":"Generics » Type Arguments","id":"156","title":"Type Arguments"},"157":{"body":"When calling a generic function, one can specify the type arguments for the function's type parameters in a list enclosed by a pair of angle brackets. fun foo() { let x = id(true);\n} If you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Calling Generic Functions","id":"157","title":"Calling Generic Functions"},"158":{"body":"Similarly, one can attach a list of type arguments for the struct's type parameters when constructing or destructing values of generic types. fun foo() { // type arguments on construction let foo = Foo { x: true }; let bar = Bar { x: 0, y: vector[] }; // type arguments on destruction let Foo { x } = foo; let Bar { x, y } = bar;\n} In any case if you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Using Generic Structs","id":"158","title":"Using Generic Structs"},"159":{"body":"If you specify the type arguments and they conflict with the actual values supplied, an error will be given: fun foo() { let x = id(true); // ERROR! true is not a u64\n} and similarly: fun foo() { let foo = Foo { x: 0 }; // ERROR! 0 is not a bool let Foo
{ x } = foo; // ERROR! bool is incompatible with address\n}","breadcrumbs":"Generics » Type Argument Mismatch","id":"159","title":"Type Argument Mismatch"},"16":{"body":"As with the other scalar values built-in to the language, integer values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Integers » Ownership","id":"16","title":"Ownership"},"160":{"body":"In most cases, the Move compiler will be able to infer the type arguments so you don't have to write them down explicitly. Here's what the examples above would look like if we omit the type arguments: fun foo() { let x = id(true); // ^ is inferred let foo = Foo { x: true }; // ^ is inferred let Foo { x } = foo; // ^ is inferred\n} Note: when the compiler is unable to infer the types, you'll need annotate them manually. A common scenario is to call a function with type parameters appearing only at return positions. module a::m { fun foo() { let v = vector[]; // ERROR! // ^ The compiler cannot figure out the element type, since it is never used let v = vector[]; // ^~~~~ Must annotate manually in this case. }\n} Note that these cases are a bit contrived since the vector[] is never used, ad as such, Move's type inference cannot infer the type. However, the compiler will be able to infer the type if that value is used later in that function: module a::m { fun foo() { let v = vector[]; // ^ is inferred vector::push_back(&mut v, 42); // ^ is inferred }\n}","breadcrumbs":"Generics » Type Inference","id":"160","title":"Type Inference"},"161":{"body":"In Move, the integer types u8, u16, u32, u64, u128, and u256 are all distinct types. However, each one of these types can be created with the same numerical value syntax. In other words, if a type suffix is not provided, the compiler will infer the integer type based on the usage of the value. let x8: u8 = 0;\nlet x16: u16 = 0;\nlet x32: u32 = 0;\nlet x64: u64 = 0;\nlet x128: u128 = 0;\nlet x256: u256 = 0; If the value is not used in a context that requires a specific integer type, u64 is taken as a default. let x = 0;\n// ^ u64 is used by default If the value however is too large for the inferred type, an error will be given let i: u8 = 256; // ERROR!\n// ^^^ too large for u8\nlet x = 340282366920938463463374607431768211454;\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ too large for u64 In cases where the number is too large, you might need to annotate it explicitly let x = 340282366920938463463374607431768211454u128;\n// ^^^^ valid!","breadcrumbs":"Generics » Integers","id":"161","title":"Integers"},"162":{"body":"For a struct definition, an unused type parameter is one that does not appear in any field defined in the struct, but is checked statically at compile time. Move allows unused type parameters so the following struct definition is valid: public struct Foo { foo: u64\n} This can be convenient when modeling certain concepts. Here is an example: module a::m { // Currency Specifiers public struct A {} public struct B {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. public struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_a(value: u64): Coin { mint_generic(value) } public fun mint_b(value: u64): Coin { mint_generic(value) }\n} In this example, Coin is generic on the Currency type parameter, which specifies the currency of the coin and allows code to be written either generically on any currency or concretely on a specific currency. This generality applies even when the Currency type parameter does not appear in any of the fields defined in Coin.","breadcrumbs":"Generics » Unused Type Parameters","id":"162","title":"Unused Type Parameters"},"163":{"body":"In the example above, although struct Coin asks for the store ability, neither Coin nor Coin will have the store ability. This is because of the rules for Conditional Abilities and Generic Types and the fact that A and B don't have the store ability, despite the fact that they are not even used in the body of struct Coin. This might cause some unpleasant consequences. For example, we are unable to put Coin into a wallet in storage. One possible solution would be to add spurious ability annotations to A and B (i.e., public struct Currency1 has store {}). But, this might lead to bugs or security vulnerabilities because it weakens the types with unnecessary ability declarations. For example, we would never expect a value in the storage to have a field in type A, but this would be possible with the spurious store ability. Moreover, the spurious annotations would be infectious, requiring many functions generic on the unused type parameter to also include the necessary constraints. Phantom type parameters solve this problem. Unused type parameters can be marked as phantom type parameters, which do not participate in the ability derivation for structs. In this way, arguments to phantom type parameters are not considered when deriving the abilities for generic types, thus avoiding the need for spurious ability annotations. For this relaxed rule to be sound, Move's type system guarantees that a parameter declared as phantom is either not used at all in the struct definition, or it is only used as an argument to type parameters also declared as phantom. Declaration In a struct definition a type parameter can be declared as phantom by adding the phantom keyword before its declaration. public struct Coin has store { value: u64\n} If a type parameter is declared as phantom we say it is a phantom type parameter. When defining a struct, Move's type checker ensures that every phantom type parameter is either not used inside the struct definition or it is only used as an argument to a phantom type parameter. public struct S1 { f: u64 }\n// ^^^^^^^ valid, T1 does not appear inside the struct definition public struct S2 { f: S1 }\n// ^^^^^^^ valid, T1 appears in phantom position The following code shows examples of violations of the rule: public struct S1 { f: T }\n// ^^^^^^^ ERROR! ^ Not a phantom position public struct S2 { f: T }\npublic struct S3 { f: S2 }\n// ^^^^^^^ ERROR! ^ Not a phantom position More formally, if a type is used as an argument to a phantom type parameter we say the type appears in phantom position . With this definition in place, the rule for the correct use of phantom parameters can be specified as follows: A phantom type parameter can only appear in phantom position . Note that specifying phantom is not required, but the compiler will warn if a type parameter could be phantom but was not marked as such. Instantiation When instantiating a struct, the arguments to phantom parameters are excluded when deriving the struct abilities. For example, consider the following code: public struct S has copy { f: T1 }\npublic struct NoCopy {}\npublic struct HasCopy has copy {} Consider now the type S. Since S is defined with copy and all non-phantom arguments have copy then S also has copy. Phantom Type Parameters with Ability Constraints Ability constraints and phantom type parameters are orthogonal features in the sense that phantom parameters can be declared with ability constraints. public struct S {} When instantiating a phantom type parameter with an ability constraint, the type argument has to satisfy that constraint, even though the parameter is phantom. The usual restrictions apply and T can only be instantiated with arguments having copy.","breadcrumbs":"Generics » Phantom Type Parameters","id":"163","title":"Phantom Type Parameters"},"164":{"body":"In the examples above, we have demonstrated how one can use type parameters to define \"unknown\" types that can be plugged in by callers at a later time. This however means the type system has little information about the type and has to perform checks in a very conservative way. In some sense, the type system must assume the worst case scenario for an unconstrained generic--a type with no abilities . Constraints offer a way to specify what properties these unknown types have so the type system can allow operations that would otherwise be unsafe.","breadcrumbs":"Generics » Constraints","id":"164","title":"Constraints"},"165":{"body":"Constraints can be imposed on type parameters using the following syntax. // T is the name of the type parameter\nT: (+ )* The can be any of the four abilities , and a type parameter can be constrained with multiple abilities at once. So all of the following would be valid type parameter declarations: T: copy\nT: copy + drop\nT: copy + drop + store + key","breadcrumbs":"Generics » Declaring Constraints","id":"165","title":"Declaring Constraints"},"166":{"body":"Constraints are checked at instantiation sites public struct Foo { x: T } public struct Bar { x: Foo }\n// ^^ valid, u8 has `copy` public struct Baz { x: Foo }\n// ^ ERROR! T does not have 'copy' And similarly for functions fun unsafe_consume(x: T) { // ERROR! x does not have 'drop'\n} fun consume(x: T) { // valid, x will be dropped automatically\n} public struct NoAbilities {} fun foo() { let r = NoAbilities {}; consume(NoAbilities); // ^^^^^^^^^^^ ERROR! NoAbilities does not have 'drop'\n} And some similar examples, but with copy fun unsafe_double(x: T) { (copy x, x) // ERROR! T does not have 'copy'\n} fun double(x: T) { (copy x, x) // valid, T has 'copy'\n} public struct NoAbilities {} fun foo(): (NoAbilities, NoAbilities) { let r = NoAbilities {}; double(r) // ^ ERROR! NoAbilities does not have 'copy'\n} For more information, see the abilities section on conditional abilities and generic types .","breadcrumbs":"Generics » Verifying Constraints","id":"166","title":"Verifying Constraints"},"167":{"body":"","breadcrumbs":"Generics » Limitations on Recursions","id":"167","title":"Limitations on Recursions"},"168":{"body":"Generic structs can not contain fields of the same type, either directly or indirectly, even with different type arguments. All of the following struct definitions are invalid: public struct Foo { x: Foo // ERROR! 'Foo' containing 'Foo'\n} public struct Bar { x: Bar // ERROR! 'Bar' containing 'Bar'\n} // ERROR! 'A' and 'B' forming a cycle, which is not allowed either.\npublic struct A { x: B\n} public struct B { x: A y: A\n}","breadcrumbs":"Generics » Recursive Structs","id":"168","title":"Recursive Structs"},"169":{"body":"Move allows generic functions to be called recursively. However, when used in combination with generic structs, this could create an infinite number of types in certain cases, and allowing this means adding unnecessary complexity to the compiler, vm and other language components. Therefore, such recursions are forbidden. This restriction might be relaxed in the future, but for now, the following examples should give you an idea of what is allowed and what is not. module a::m { public struct A {} // Finitely many types -- allowed. // foo -> foo -> foo -> ... is valid fun foo() { foo(); } // Finitely many types -- allowed. // foo -> foo> -> foo> -> ... is valid fun foo() { foo>(); }\n} Not allowed: module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> foo> -> foo>> -> ... fun foo() { foo>(); }\n} And similarly, not allowed: module a::n { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> bar -> foo> // -> bar, T2> -> foo, A> // -> bar, A> -> foo, A>> // -> ... fun foo() { bar(); } fun bar { foo>(); }\n} Note, the check for type level recursions is based on a conservative analysis on the call sites and does NOT take control flow or runtime values into account. module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! fun foo(n: u64) { if (n > 0) foo>(n - 1); }\n} The function in the example above will technically terminate for any given input and therefore only creating finitely many types, but it is still considered invalid by Move's type system.","breadcrumbs":"Generics » Advanced Topic: Type-level Recursions","id":"169","title":"Advanced Topic: Type-level Recursions"},"17":{"body":"bool is Move's primitive type for boolean true and false values.","breadcrumbs":"Primitive Types » Bool » Bool","id":"17","title":"Bool"},"170":{"body":"Abilities are a typing feature in Move that control what actions are permissible for values of a given type. This system grants fine grained control over the \"linear\" typing behavior of values, as well as if and how values are used in storage (as defined by the specific deployment of Move, e.g. the notion of storage for the blockchain). This is implemented by gating access to certain bytecode instructions so that for a value to be used with the bytecode instruction, it must have the ability required (if one is required at all—not every instruction is gated by an ability). For Sui, key is used to signify an object . Objects are the basic unit of storage where each object has a unique, 32-byte ID. store is then used to both indicate what data can be stored inside of an object, and is also used to indicate what types can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » Abilities","id":"170","title":"Abilities"},"171":{"body":"The four abilities are: copy Allows values of types with this ability to be copied. drop Allows values of types with this ability to be popped/dropped. store Allows values of types with this ability to exist inside a value in storage. For Sui, store controls what data can be stored inside of an object . store also controls what types can be transferred outside of their defining module. key Allows the type to serve as a \"key\" for storage. Ostensibly this means the value can be a top-level value in storage; in other words, it does not need to be contained in another value to be in storage. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » The Four Abilities","id":"171","title":"The Four Abilities"},"172":{"body":"The copy ability allows values of types with that ability to be copied. It gates the ability to copy values out of local variables with the copy operator and to copy values via references with dereference *e . If a value has copy, all values contained inside of that value have copy.","breadcrumbs":"Type Abilities » copy","id":"172","title":"copy"},"173":{"body":"The drop ability allows values of types with that ability to be dropped. By dropped, we mean that value is not transferred and is effectively destroyed as the Move program executes. As such, this ability gates the ability to ignore values in a multitude of locations, including: not using the value in a local variable or parameter not using the value in a sequence via ; overwriting values in variables in assignments overwriting values via references when writing *e1 = e2 . If a value has drop, all values contained inside of that value have drop.","breadcrumbs":"Type Abilities » drop","id":"173","title":"drop"},"174":{"body":"The store ability allows values of types with this ability to exist inside of a value in storage, but not necessarily as a top-level value in storage. This is the only ability that does not directly gate an operation. Instead it gates the existence in storage when used in tandem with key. If a value has store, all values contained inside of that value have store. For Sui, store serves double duty. It controls what values can appear inside of an object , and what objects can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » store","id":"174","title":"store"},"175":{"body":"The key ability allows the type to serve as a key for storage operations as defined by the deployment of Move. While it is specific per Move instance, it serves to gates all storage operations, so in order for a type to be used with storage primitives, the type must have the key ability. If a value has key, all values contained inside of that value have store. This is the only ability with this sort of asymmetry. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » key","id":"175","title":"key"},"176":{"body":"All primitive, builtin types have copy, drop, and store. bool, u8, u16, u32, u64, u128, u256, and address all have copy, drop, and store. vector may have copy, drop, and store depending on the abilities of T. See Conditional Abilities and Generic Types for more details. Immutable references & and mutable references &mut both have copy and drop. This refers to copying and dropping the reference itself, not what they refer to. References cannot appear in global storage, hence they do not have store. Note that none of the primitive types have key, meaning none of them can be used directly with storage operations.","breadcrumbs":"Type Abilities » Builtin Types","id":"176","title":"Builtin Types"},"177":{"body":"To declare that a struct or enum has an ability, it is declared with has after the datatype name and either before or after the fields/variants. For example: public struct Ignorable has drop { f: u64 }\npublic struct Pair has copy, drop, store { x: u64, y: u64 }\npublic struct MyVec(vector) has copy, drop, store; public enum IgnorableEnum has drop { Variant }\npublic enum PairEnum has copy, drop, store { Variant }\npublic enum MyVecEnum { Variant } has copy, drop, store; In this case: Ignorable* has the drop ability. Pair* and MyVec* both have copy, drop, and store. All of these abilities have strong guarantees over these gated operations. The operation can be performed on the value only if it has that ability; even if the value is deeply nested inside of some other collection! As such: when declaring a struct’s abilities, certain requirements are placed on the fields. All fields must satisfy these constraints. These rules are necessary so that structs satisfy the reachability rules for the abilities given above. If a struct is declared with the ability... copy, all fields must have copy. drop, all fields must have drop. store, all fields must have store. key, all fields must have store. key is the only ability currently that doesn’t require itself. An enum can have any of these abilities with the exception of key, which enums cannot have because they cannot be top-level values (objects) in storage. The same rules apply to fields of enum variants as they do for struct fields though. In particular, if an enum is declared with the ability... copy, all fields of all variants must have copy. drop, all fields of all variants must have drop. store, all fields of all variants must have store. key, is not allowed on enums as previously mentioned. For example: // A struct without any abilities\npublic struct NoAbilities {} public struct WantsCopy has copy { f: NoAbilities, // ERROR 'NoAbilities' does not have 'copy'\n} public enum WantsCopyEnum has copy { Variant1 Variant2(NoAbilities), // ERROR 'NoAbilities' does not have 'copy'\n} and similarly: // A struct without any abilities\npublic struct NoAbilities {} public struct MyData has key { f: NoAbilities, // Error 'NoAbilities' does not have 'store'\n} public struct MyDataEnum has store { Variant1, Variant2(NoAbilities), // Error 'NoAbilities' does not have 'store'\n}","breadcrumbs":"Type Abilities » Annotating Structs and Enums","id":"177","title":"Annotating Structs and Enums"},"178":{"body":"When abilities are annotated on a generic type, not all instances of that type are guaranteed to have that ability. Consider this struct declaration: // public struct Cup has copy, drop, store, key { item: T } It might be very helpful if Cup could hold any type, regardless of its abilities. The type system can see the type parameter, so it should be able to remove abilities from Cup if it sees a type parameter that would violate the guarantees for that ability. This behavior might sound a bit confusing at first, but it might be more understandable if we think about collection types. We could consider the builtin type vector to have the following type declaration: vector has copy, drop, store; We want vectors to work with any type. We don't want separate vector types for different abilities. So what are the rules we would want? Precisely the same that we would want with the field rules above. So, it would be safe to copy a vector value only if the inner elements can be copied. It would be safe to ignore a vector value only if the inner elements can be ignored/dropped. And, it would be safe to put a vector in storage only if the inner elements can be in storage. To have this extra expressiveness, a type might not have all the abilities it was declared with depending on the instantiation of that type; instead, the abilities a type will have depends on both its declaration and its type arguments. For any type, type parameters are pessimistically assumed to be used inside of the struct, so the abilities are only granted if the type parameters meet the requirements described above for fields. Taking Cup from above as an example: Cup has the ability copy only if T has copy. It has drop only if T has drop. It has store only if T has store. It has key only if T has store. Here are examples for this conditional system for each ability:","breadcrumbs":"Type Abilities » Conditional Abilities and Generic Types","id":"178","title":"Conditional Abilities and Generic Types"},"179":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun example(c_x: Cup, c_s: Cup) { // Valid, 'Cup' has 'copy' because 'u64' has 'copy' let c_x2 = copy c_x; // Valid, 'Cup' has 'copy' because 'S' has 'copy' let c_s2 = copy c_s;\n} fun invalid(c_account: Cup, c_n: Cup) { // Invalid, 'Cup' does not have 'copy'. // Even though 'Cup' was declared with copy, the instance does not have 'copy' // because 'signer' does not have 'copy' let c_account2 = copy c_account; // Invalid, 'Cup' does not have 'copy' // because 'NoAbilities' does not have 'copy' let c_n2 = copy c_n;\n}","breadcrumbs":"Type Abilities » Example: conditional copy","id":"179","title":"Example: conditional copy"},"18":{"body":"Literals for bool are either true or false.","breadcrumbs":"Primitive Types » Bool » Literals","id":"18","title":"Literals"},"180":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun unused() { Cup { item: true }; // Valid, 'Cup' has 'drop' Cup { item: S { f: false }}; // Valid, 'Cup' has 'drop'\n} fun left_in_local(c_account: Cup): u64 { let c_b = Cup { item: true }; let c_s = Cup { item: S { f: false }}; // Valid return: 'c_account', 'c_b', and 'c_s' have values // but 'Cup', 'Cup', and 'Cup' have 'drop' 0\n} fun invalid_unused() { // Invalid, Cannot ignore 'Cup' because it does not have 'drop'. // Even though 'Cup' was declared with 'drop', the instance does not have 'drop' // because 'NoAbilities' does not have 'drop' Cup { item: NoAbilities {} };\n} fun invalid_left_in_local(): u64 { let n = Cup { item: NoAbilities {} }; // Invalid return: 'c_n' has a value // and 'Cup' does not have 'drop' 0\n}","breadcrumbs":"Type Abilities » Example: conditional drop","id":"180","title":"Example: conditional drop"},"181":{"body":"public struct Cup has copy, drop, store { item: T } // 'MyInnerData is declared with 'store' so all fields need 'store'\nstruct MyInnerData has store { yes: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n} // 'MyData' is declared with 'key' so all fields need 'store'\nstruct MyData has key { yes: Cup, // Valid, 'Cup' has 'store' inner: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n}","breadcrumbs":"Type Abilities » Example: conditional store","id":"181","title":"Example: conditional store"},"182":{"body":"public struct NoAbilities {}\npublic struct MyData has key { f: T } fun valid(addr: address) acquires MyData { // Valid, 'MyData' has 'key' transfer(addr, MyData { f: 0 });\n} fun invalid(addr: address) { // Invalid, 'MyData' does not have 'key' transfer(addr, MyData { f: NoAbilities {} }) // Invalid, 'MyData' does not have 'key' borrow(addr); // Invalid, 'MyData' does not have 'key' borrow_mut(addr);\n} // Mock storage operation\nnative public fun transfer(addr: address, value: T);","breadcrumbs":"Type Abilities » Example: conditional key","id":"182","title":"Example: conditional key"},"183":{"body":"The use syntax can be used to create aliases to members in other modules. use can be used to create aliases that last either for the entire module, or for a given expression block scope.","breadcrumbs":"Uses and Aliases » Uses and Aliases","id":"183","title":"Uses and Aliases"},"184":{"body":"There are several different syntax cases for use. Starting with the most simple, we have the following for creating aliases to other modules use
::;\nuse
:: as ; For example use std::vector;\nuse std::option as o; use std::vector; introduces an alias vector for std::vector. This means that anywhere you would want to use the module name std::vector (assuming this use is in scope), you could use vector instead. use std::vector; is equivalent to use std::vector as vector; Similarly use std::option as o; would let you use o instead of std::option use std::vector;\nuse std::option as o; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, o::some(0)); vector::push_back(&mut v, o::none()); v\n} If you want to import a specific module member (such as a function or struct). You can use the following syntax. use
::::;\nuse
:::: as ; For example use std::vector::push_back;\nuse std::option::some as s; This would let you use the function std::vector::push_back without full qualification. Similarly for std::option::some with s. Instead you could use push_back and s respectively. Again, use std::vector::push_back; is equivalent to use std::vector::push_back as push_back; use std::vector::push_back;\nuse std::option::some as s; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, s(0)); vector::push_back(&mut v, std::option::none()); v\n}","breadcrumbs":"Uses and Aliases » Syntax","id":"184","title":"Syntax"},"185":{"body":"If you want to add aliases for multiple module members at once, you can do so with the following syntax use
::::{, as ... }; For example use std::vector::push_back;\nuse std::option::{some as s, none as n}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, s(0)); push_back(&mut v, n()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases","id":"185","title":"Multiple Aliases"},"186":{"body":"If you need to add an alias to the Module itself in addition to module members, you can do that in a single use using Self. Self is a member of sorts that refers to the module. use std::option::{Self, some, none}; For clarity, all of the following are equivalent: use std::option;\nuse std::option as option;\nuse std::option::Self;\nuse std::option::Self as option;\nuse std::option::{Self};\nuse std::option::{Self as option};","breadcrumbs":"Uses and Aliases » Self aliases","id":"186","title":"Self aliases"},"187":{"body":"If needed, you can have as many aliases for any item as you like use std::vector::push_back;\nuse std::option::{Option, some, none}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases for the Same Definition","id":"187","title":"Multiple Aliases for the Same Definition"},"188":{"body":"In Move, you can also import multiple names with the same use declaration. This brings all provided names into scope: use std::{ vector::{Self as vec, push_back}, string::{String, Self as str}\n}; fun example(s: &mut String) { let mut v = vec::empty(); push_back(&mut v, 0); push_back(&mut v, 10); str::append_utf8(s, v);\n}","breadcrumbs":"Uses and Aliases » Nested imports","id":"188","title":"Nested imports"},"189":{"body":"Inside of a module all use declarations are usable regardless of the order of declaration. module a::example { use std::vector; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, 0); vector::push_back(&mut v, 10); v } use std::option::{Option, some, none};\n} The aliases declared by use in the module usable within that module. Additionally, the aliases introduced cannot conflict with other module members. See Uniqueness for more details","breadcrumbs":"Uses and Aliases » Inside a module","id":"189","title":"Inside a module"},"19":{"body":"","breadcrumbs":"Primitive Types » Bool » Operations","id":"19","title":"Operations"},"190":{"body":"You can add use declarations to the beginning of any expression block module a::example { fun new_vec(): vector> { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }\n} As with let, the aliases introduced by use in an expression block are removed at the end of that block. module a::example { fun new_vec(): vector> { let result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }; result }\n} Attempting to use the alias after the block ends will result in an error fun new_vec(): vector> { let mut result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); v }; push_back(&mut result, std::option::none()); // ^^^^^^ ERROR! unbound function 'push_back' result } Any use must be the first item in the block. If the use comes after any expression or let, it will result in a parsing error { let mut v = vector[]; use std::vector; // ERROR!\n} This allows you to shorten your import blocks in many situations. Note that these imports, as the previous ones, are all subject to the naming and uniqueness rules described in the following sections.","breadcrumbs":"Uses and Aliases » Inside an expression","id":"190","title":"Inside an expression"},"191":{"body":"Aliases must follow the same rules as other module members. This means that aliases to structs (and constants) must start with A to Z module a::data { public struct S {} const FLAG: bool = false; public fun foo() {}\n}\nmodule a::example { use a::data::{ S as s, // ERROR! FLAG as fLAG, // ERROR! foo as FOO, // valid foo as bar, // valid };\n}","breadcrumbs":"Uses and Aliases » Naming rules","id":"191","title":"Naming rules"},"192":{"body":"Inside a given scope, all aliases introduced by use declarations must be unique. For a module, this means aliases introduced by use cannot overlap module a::example { use std::option::{none as foo, some as foo}; // ERROR! // ^^^ duplicate 'foo' use std::option::none as bar; use std::option::some as bar; // ERROR! // ^^^ duplicate 'bar' } And, they cannot overlap with any of the module's other members module a::data { public struct S {}\n}\nmodule example { use a::data::S; public struct S { value: u64 } // ERROR! // ^ conflicts with alias 'S' above\n}\n} Inside of an expression block, they cannot overlap with each other, but they can shadow other aliases or names from an outer scope","breadcrumbs":"Uses and Aliases » Uniqueness","id":"192","title":"Uniqueness"},"193":{"body":"use aliases inside of an expression block can shadow names (module members or aliases) from the outer scope. As with shadowing of locals, the shadowing ends at the end of the expression block; module a::example { public struct WrappedVector { vec: vector } public fun empty(): WrappedVector { WrappedVector { vec: std::vector::empty() } } public fun push_back(v: &mut WrappedVector, value: u64) { std::vector::push_back(&mut v.vec, value); } fun example1(): WrappedVector { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut vec = vector[]; push_back(&mut vec, 0); push_back(&mut vec, 1); push_back(&mut vec, 10); WrappedVector { vec } } fun example2(): WrappedVector { let vec = { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut v = vector[]; push_back(&mut v, 0); push_back(&mut v, 1); v }; // 'push_back' now refers to Self::push_back let mut res = WrappedVector { vec }; push_back(&mut res, 10); res }\n}","breadcrumbs":"Uses and Aliases » Shadowing","id":"193","title":"Shadowing"},"194":{"body":"An unused use will result in a warning module a::example { use std::option::{some, none}; // Warning! // ^^^^ unused alias 'none' public fun example(): std::option::Option { some(0) }\n}","breadcrumbs":"Uses and Aliases » Unused Use or Alias","id":"194","title":"Unused Use or Alias"},"195":{"body":"As a syntactic convenience, some functions in Move can be called as \"methods\" on a value. This is done by using the . operator to call the function, where the value on the left-hand side of the . is the first argument to the function (sometimes called the receiver). The type of that value statically determines which function is called. This is an important difference from some other languages, where this syntax might indicate a dynamic call, where the function to be called is determined at runtime. In Move, all function calls are statically determined. In short, this syntax exists to make it easier to call functions without having to create an alias with use, and without having to explicitly borrow the first argument to the function. Additionally, this can make code more readable, as it reduces the amount of boilerplate needed to call a function and makes it easier to chain function calls.","breadcrumbs":"Method Syntax » Methods","id":"195","title":"Methods"},"196":{"body":"The syntax for calling a method is as follows: . <[type_arguments],*> ( ) For example coin.value();\n*nums.borrow_mut(i) = 5;","breadcrumbs":"Method Syntax » Syntax","id":"196","title":"Syntax"},"197":{"body":"When a method is called, the compiler will statically determine which function is called based on the type of the receiver (the argument on the left-hand side of the .). The compiler maintains a mapping from type and method name to the module and function name that should be called. This mapping is created form the use fun aliases that are currently in scope, and from the appropriate functions in the receiver type's defining module. In all cases, the receiver type is the first argument to the function, whether by-value or by-reference. In this section, when we say a method \"resolves\" to a function, we mean that the compiler will statically replace the method with a normal function call. For example if we have x.foo(e) with foo resolving to a::m::foo, the compiler will replace x.foo(e) with a::m::foo(x, e), potentially automatically borrowing x.","breadcrumbs":"Method Syntax » Method Resolution","id":"197","title":"Method Resolution"},"198":{"body":"In a type’s defining module, the compiler will automatically create a method alias for any function declaration for its types when the type is the first argument in the function. For example, module a::m { public struct X() has copy, drop, store; public fun foo(x: &X) { ... } public fun bar(flag: bool, x: &X) { ... }\n} The function foo can be called as a method on a value of type X. However, not the first argument (and one is not created for bool since bool is not defined in that module). For example, fun example(x: a::m::X) { x.foo(); // valid // x.bar(true); ERROR!\n}","breadcrumbs":"Method Syntax » Functions in the Defining Module","id":"198","title":"Functions in the Defining Module"},"199":{"body":"Like a traditional use , a use fun statement creates an alias local to its current scope. This could be for the current module or the current expression block. However, the alias is associated to a type. The syntax for a use fun statement is as follows: use fun as .; This creates an alias for the , which the can receive as . For example module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 } public fun cup_value(c: Cup): T { let Cup(t) = c; t } public fun cup_swap(c: &mut Cup, t: T) { c.0 = t; }\n} We can now create use fun aliases to these functions module b::example { use fun a::cup::cup_borrow as Cup.borrow; use fun a::cup::cup_value as Cup.value; use fun a::cup::cup_swap as Cup.set; fun example(c: &mut Cup) { let _ = c.borrow(); // resolves to a::cup::cup_borrow let v = c.value(); // resolves to a::cup::cup_value c.set(v * 2); // resolves to a::cup::cup_swap }\n} Note that the in the use fun does not have to be a fully resolved path, and an alias can be used instead, so the declarations in the above example could equivalently be written as use a::cup::{Self, cup_swap}; use fun cup::cup_borrow as Cup.borrow; use fun cup::cup_value as Cup.value; use fun cup_swap as Cup.set; While these examples are cute for renaming the functions in the current module, the feature is perhaps more useful for declaring methods on types from other modules. For example, if we wanted to add a new utility to Cup, we could do so with a use fun alias and still use method syntax module b::example { fun double(c: &Cup): Cup { let v = c.value(); Cup::new(v * 2) } } Normally, we would be stuck having to call it as double(&c) because b::example did not define Cup, but instead we can use a use fun alias fun double_double(c: Cup): (Cup, Cup) { use fun b::example::double as Cup.dub; (c.dub(), c.dub()) // resolves to b::example::double in both calls } While use fun can be made in any scope, the target of the use fun must have a first argument that is the same as the . public struct X() has copy, drop, store; fun new(): X { X() }\nfun flag(flag: bool): u8 { if (flag) 1 else 0 } use fun new as X.new; // ERROR!\nuse fun flag as X.flag; // ERROR!\n// Neither `new` nor `flag` has first argument of type `X` But any first argument of the can be used, including references and mutable references public struct X() has copy, drop, store; public fun by_val(_: X) {}\npublic fun by_ref(_: &X) {}\npublic fun by_mut(_: &mut X) {} // All 3 valid, in any scope\nuse fun by_val as X.v;\nuse fun by_ref as X.r;\nuse fun by_mut as X.m; Note for generics, the methods are associated for all instances of the generic type. You cannot overload the method to resolve to different functions depending on the instantiation. public struct Cup(T) has copy, drop, store; public fun value(c: &Cup): T { c.0\n} use fun value as Cup.flag; // ERROR!\nuse fun value as Cup.num; // ERROR!\n// In both cases, `use fun` aliases cannot be generic, they must work for all instances of the type","breadcrumbs":"Method Syntax » use fun Aliases","id":"199","title":"use fun Aliases"},"2":{"body":"A module has the following syntax: module
:: { ( | | | )*\n} where
is a valid address specifying the module's package. For example: module 0x42::test { public struct Example has copy, drop { i: u64 } use std::debug; const ONE: u64 = 1; public fun print(x: u64) { let sum = x + ONE; let example = Example { i: sum }; debug::print(&sum) }\n}","breadcrumbs":"Modules » Syntax","id":"2","title":"Syntax"},"20":{"body":"bool supports three logical operations: Syntax Description Equivalent Expression && short-circuiting logical and p && q is equivalent to if (p) q else false || short-circuiting logical or p || q is equivalent to if (p) true else q ! logical negation !p is equivalent to if (p) false else true","breadcrumbs":"Primitive Types » Bool » Logical","id":"20","title":"Logical"},"200":{"body":"Unlike a traditional use , the use fun statement can be made public, which allows it to be used outside of its declared scope. A use fun can be made public if it is declared in the module that defines the receivers type, much like the method aliases that are automatically created for functions in the defining module. Or conversely, one can think that an implicit public use fun is created automatically for every function in the defining module that has a first argument of the receiver type (if it is defined in that module). Both of these views are equivalent. module a::cup { public struct Cup(T) has copy, drop, store; public use fun cup_borrow as Cup.borrow; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} In this example, a public method alias is created for a::cup::Cup.borrow and a::cup::Cup.cup_borrow. Both resolve to a::cup::cup_borrow. And both are \"public\" in the sense that they can be used outside of a::cup, without an additional use or use fun. module b::example { fun example(c: a::cup::Cup) { c.borrow(); // resolves to a::cup::cup_borrow c.cup_borrow(); // resolves to a::cup::cup_borrow }\n} The public use fun declarations thus serve as a way of renaming a function if you want to give it a cleaner name for use with method syntax. This is especially helpful if you have a module with multiple types, and similarly named functions for each type. module a::shapes { public struct Rectangle { base: u64, height: u64 } public struct Box { base: u64, height: u64, depth: u64 } // Rectangle and Box can have methods with the same name public use fun rectangle_base as Rectangle.base; public fun rectangle_base(rectangle: &Rectangle): u64 { rectangle.base } public use fun box_base as Box.base; public fun box_base(box: &Box): u64 { box.base } } Another use for public use fun is adding methods to types from other modules. This can be helpful in conjunction with functions spread out across a single package. module a::cup { public struct Cup(T) has copy, drop, store; public fun new(t: T): Cup { Cup(t) } public fun borrow(c: &Cup): &T { &c.0 } // `public use fun` to a function defined in another module public use fun a::utils::split as Cup.split;\n} module a::utils { use a::m::{Self, Cup}; public fun split(c: Cup): (Cup, Cup) { let Cup(t) = c; let half = t / 2; let rem = if (t > 0) t - half else 0; (cup::new(half), cup::new(rem)) } } And note that this public use fun does not create a circular dependency, as the use fun is not present after the module is compiled--all methods are resolved statically.","breadcrumbs":"Method Syntax » public use fun Aliases","id":"200","title":"public use fun Aliases"},"201":{"body":"A small detail to note is that method aliases respect normal use aliases. module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} module b::other { use a::cup::{Cup, cup_borrow as borrow}; fun example(c: &Cup) { c.borrow(); // resolves to a::cup::cup_borrow }\n} A helpful way to think about this is that use creates an implicit use fun alias for the function whenever it can. In this case the use a::cup::cup_borrow as borrow creates an implicit use fun a::cup::cup_borrow as Cup.borrow because it would be a valid use fun alias. Both views are equivalent. This line of reasoning can inform how specific methods will resolve with shadowing. See the cases in Scoping for more details.","breadcrumbs":"Method Syntax » Interactions with use Aliases","id":"201","title":"Interactions with use Aliases"},"202":{"body":"If not public, a use fun alias is local to its scope, much like a normal use . For example module a::m { public struct X() has copy, drop, store; public fun foo(_: &X) {} public fun bar(_: &X) {}\n} module b::other { use a::m::X; use fun a::m::foo as X.f; fun example(x: &X) { x.f(); // resolves to a::m::foo { use a::m::bar as f; x.f(); // resolves to a::m::bar }; x.f(); // still resolves to a::m::foo { use fun a::m::bar as X.f; x.f(); // resolves to a::m::bar } }","breadcrumbs":"Method Syntax » Scoping","id":"202","title":"Scoping"},"203":{"body":"When resolving a method, the compiler will automatically borrow the receiver if the function expects a reference. For example module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} fun example(mut x: X) { x.by_ref(); // resolves to a::m::by_ref(&x) x.by_mut(); // resolves to a::m::by_mut(&mut x) }\n} In these examples, x was automatically borrowed to &x and &mut x respectively. This will also work through field access module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } fun example(mut y: Y) { y.x.by_ref(); // resolves to a::m::by_ref(&y.x) y.x.by_mut(); // resolves to a::m::by_mut(&mut y.x) }\n} Note that in both examples, the local variable had to be labeled as mut to allow for the &mut borrow. Without this, there would be an error saying that x (or y in the second example) is not mutable. Keep in mind that without a reference, normal rules for variable and field access come into play. Meaning a value might be moved or copied if it is not borrowed. module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } public fun drop_y(y: Y) { y } fun example(y: Y) { y.x.by_val(); // copies `y.x` since `by_val` is by-value and `X` has `copy` y.drop_y(); // moves `y` since `drop_y` is by-value and `Y` does _not_ have `copy` }\n}","breadcrumbs":"Method Syntax » Automatic Borrowing","id":"203","title":"Automatic Borrowing"},"204":{"body":"Method calls can be chained, because any expression can be the receiver of the method. module a::shapes { public struct Point has copy, drop, store { x: u64, y: u64 } public struct Line has copy, drop, store { start: Point, end: Point } public fun x(p: &Point): u64 { p.x } public fun y(p: &Point): u64 { p.y } public fun start(l: &Line): &Point { &l.start } public fun end(l: &Line): &Point { &l.end } } module b::example { use a::shapes::Line; public fun x_values(l: Line): (u64, u64) { (l.start().x(), l.end().x()) } } In this example for l.start().x(), the compiler first resolves l.start() to a::shapes::start(&l). Then .x() is resolved to a::shapes::x(a::shapes::start(&l)). Similarly for l.end().x(). Keep in mind, this feature is not \"special\"--the left-hand side of the . can be any expression, and the compiler will resolve the method call as normal. We simply draw attention to this sort of \"chaining\" because it is a common practice to increase readability.","breadcrumbs":"Method Syntax » Chaining","id":"204","title":"Chaining"},"205":{"body":"Move provides syntax attributes to allow you to define operations that look and feel like native Move code, lowering these operations into your user-provided definitions. Our first syntax method, index, allows you to define a group of operations that can be used as custom index accessors for your datatypes, such as accessing a matrix element as m[i,j], by annotating functions that should be used for these index operations. Moreover, these definitions are bespoke per-type and available implicitly for any programmer using your type.","breadcrumbs":"Index Syntax Methods » Index Syntax","id":"205","title":"Index Syntax"},"206":{"body":"To start, consider a Matrix type that uses a vector of vectors to represent its values. You can write a small library using index syntax annotations on the borrow and borrow_mut functions as follows: module matrix { public struct Matrix { v: vector> } #[syntax(index)] public fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j) } #[syntax(index)] public fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { vector::borrow_mut(vector::borrow_mut(&mut s.v, i), j) } public fun make_matrix(v: vector>): Matrix { Matrix { v } } } Now anyone using this Matrix type has access to index syntax for it: let mut m = matrix::make_matrix(vector[ vector[1, 0, 0], vector[0, 1, 0], vector[0, 0, 1],\n]); let mut i = 0;\nwhile (i < 3) { let mut j = 0; while (j < 3) { if (i == j) { assert!(m[i, j] == 1, 1); } else { assert!(m[i, j] == 0, 0); }; *(&mut m[i,j]) = 2; j = j + 1; }; i = i + 1;\n}","breadcrumbs":"Index Syntax Methods » Overview and Summary","id":"206","title":"Overview and Summary"},"207":{"body":"As the example indicates, if you define a datatype and an associated index syntax method, anyone can invoke that method by writing index syntax on a value of that type: let mat = matrix::make_matrix(...);\nlet m_0_0 = mat[0, 0]; During compilation, the compiler translates these into the appropriate function invocations based on the position and mutable usage of the expression: let mut mat = matrix::make_matrix(...); let m_0_0 = mat[0, 0];\n// translates to `copy matrix::borrow(&mat, 0, 0)` let m_0_0 = &mat[0, 0];\n// translates to `matrix::borrow(&mat, 0, 0)` let m_0_0 = &mut mat[0, 0];\n// translates to `matrix::borrow_mut(&mut mat, 0, 0)`\n`` You can also intermix index expressions with field accesses: ```move\npublic struct V { v: vector } public struct Vs { vs: vector } fun borrow_first(input: &Vs): &u64 { &input.vs[0].v[0] // translates to `vector::borrow(&vector::borrow(&input.vs, 0).v, 0)`\n}","breadcrumbs":"Index Syntax Methods » Usage","id":"207","title":"Usage"},"208":{"body":"Note that, aside from the definition and type limitations described in the rest of this chapter, Move places no restrictions on the values your index syntax method takes as parameters. This allows you to implement intricate programmatic behavior when defining index syntax, such as a data structure that takes a default value if the index is out of bounds: #[syntax(index)]\npublic fun borrow_or_set( input: &mut MTable, key: Key, default: Value\n): &mut Value { if (contains(input, key)) { borrow(input, key) } else { insert(input, key, default); borrow(input, key) }\n} Now, when you index into MTable, you must also provide a default value: let string_key: String = ...;\nlet mut table: MTable = m_table::make_table();\nlet entry: &mut u64 = &mut table[string_key, 0]; This sort of extensible power allows you to write precise index interfaces for your types, concretely enforcing bespoke behavior.","breadcrumbs":"Index Syntax Methods » Index Functions Take Flexible Arguments","id":"208","title":"Index Functions Take Flexible Arguments"},"209":{"body":"This powerful syntax form allows all of your user-defined datatypes to behave in this way, assuming your definitions adhere to the following rules: The #[syntax(index)] attribute is added to the designated functions defined in the same module as the subject type. The designated functions have public visibility. The functions take a reference type as its subject type (its first argument) and returns a matching references type (mut if the subject was mut). Each type has only a single mutable and single immutable definition. Immutable and mutable versions have type agreement: The subject types match, differing only in mutability. The return types match the mutability of their subject types. Type parameters, if present, have identical constraints between both versions. All parameters beyond the subject type are identical. The following content and additional examples describe these rules in greater detail.","breadcrumbs":"Index Syntax Methods » Defining Index Syntax Functions","id":"209","title":"Defining Index Syntax Functions"},"21":{"body":"bool values are used in several of Move's control-flow constructs: if (bool) { ... } while (bool) { .. } assert!(bool, u64)","breadcrumbs":"Primitive Types » Bool » Control Flow","id":"21","title":"Control Flow"},"210":{"body":"To declare an index syntax method, add the #[syntax(index)] attribute above the relevant function definition in the same module as the subject type's definition. This signals to the compiler that the function is an index accessor for the specified type. Immutable Accessor The immutable index syntax method is defined for read-only access. It takes an immutable reference of the subject type and returns an immutable reference to the element type. The borrow function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow(v: &vector, i: u64): ∈ Mutable Accessor The mutable index syntax method is the dual of the immutable one, allowing for both read and write operations. It takes a mutable reference of the subject type and returns a mutable reference to the element type. The borrow_mut function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow_mut(v: &mut vector, i: u64): &mut Element; Visibility To ensure that indexing functions are available anywhere the type is used, all index syntax methods must have public visibility. This ensures ergonomic usage of indexing across modules and packages in Move. No Duplicates In addition to the above requirements, we restrict each subject base type to defining a single index syntax method for immutable references and a single index syntax method for mutable references. For example, you cannot define a specialized version for a polymorphic type: #[syntax(index)]\npublic fun borrow_matrix_u64(s: &Matrix, i: u64, j: u64): &u64 { ... } #[syntax(index)]\npublic fun borrow_matrix(s: &Matrix, i: u64, j: u64): &T { ... } // ERROR! Matrix already has a definition // for its immutable index syntax method This ensures that you can always tell which method is being invoked, without the need to inspect type instantiation.","breadcrumbs":"Index Syntax Methods » Declaration","id":"210","title":"Declaration"},"211":{"body":"By default, an index syntax method has the following type constraints: Its subject type (first argument) must be a reference to a single type defined in the same module as the marked function. This means that you cannot define index syntax methods for tuples, type parameters, or values: #[syntax(index)]\npublic fun borrow_fst(x: &(u64, u64), ...): &u64 { ... } // ERROR because the subject type is a tuple #[syntax(index)]\npublic fun borrow_tyarg(x: &T, ...): &T { ... } // ERROR because the subject type is a type parameter #[syntax(index)]\npublic fun borrow_value(x: Matrix, ...): &u64 { ... } // ERROR because x is not a reference The subject type must match mutability with the return type. This restriction allows you to clarify the expected behavior when borrowing an indexed expression as &vec[i] versus &mut vec[i]. The Move compiler uses the mutability marker to determine which borrow form to call to produce a reference of the appropriate mutability. As a result, we disallow index syntax methods whose subject and return mutability differ: #[syntax(index)]\npublic fun borrow_imm(x: &mut Matrix, ...): &u64 { ... } // ERROR! incompatible mutability // expected a mutable reference '&mut' return type","breadcrumbs":"Index Syntax Methods » Type Constraints","id":"211","title":"Type Constraints"},"212":{"body":"When defining an immutable and mutable index syntax method pair, they are subject to a number of compatibility constraints: They must take the same number of type parameters, those type parameters must have the same constraints. Type parameters must be used the same by position , not name. Their subject types must match exactly except for the mutability. Their return types must match exactly except for the mutability. All other parameter types must match exactly. These constraints are to ensure that index syntax behaves identically regardless of being in a mutable or immutable position. To illustrate some of these errors, recall the previous Matrix definition: #[syntax(index)]\npublic fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j)\n} All of the following are type-incompatible definitions of the mutable version: #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { ... } // ERROR! `T` has `drop` here, but no in the immutable version #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut u64 { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut U { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i_j: (u64, u64)): &mut U { ... } // ERROR! This takes a different number of arguments #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u32): &mut U { ... } // ERROR! `j` is a different type Again, the goal here is to make the usage across the immutable and mutable versions consistent. This allows index syntax methods to work without changing out the behavior or constraints based on mutable versus immutable usage, ultimately ensuring a consistent interface to program against.","breadcrumbs":"Index Syntax Methods » Type Compatibility","id":"212","title":"Type Compatibility"},"213":{"body":"Packages allow Move programmers to more easily re-use code and share it across projects. The Move package system allows programmers to easily: Define a package containing Move code; Parameterize a package by named addresses ; Import and use packages in other Move code and instantiate named addresses; Build packages and generate associated compilation artifacts from packages; and Work with a common interface around compiled Move artifacts.","breadcrumbs":"Packages » Packages","id":"213","title":"Packages"},"214":{"body":"A Move package source directory contains a Move.toml package manifest file, a generated Move.lock file, and a set of subdirectories: a_move_package\n├── Move.toml (required)\n├── Move.lock (generated)\n├── sources (required)\n├── doc_templates (optional)\n├── examples (optional, test & dev mode)\n└── tests (optional, test mode) The directories and files labeled \"required\" must be present for a directory to be considered a Move package and built. Optional directories may be present, and if so, they will be included in the compilation process depending on the mode used to build the package. For instance, when built in \"dev\" or \"test\" modes, the tests and examples directories will also be included. Going through each of these in turn: The Move.toml file is the package manifest and is required for a directory to be considered a Move package. This file contains metadata about the package, such as name, dependencies, and so on. The Move.lock file is generated by the Move CLI and contains the fixed build versions of the package and its dependencies. It is used to ensure consistent versions are used across different builds and that changes in dependencies are apparent as a change in this file. The sources directory is required and contains the Move modules that make up the package. Modules in this directory will always be included in the compilation process. The doc_templates directory can contain documentation templates that will be used when generating documentation for the package. The examples directory can hold additional code to be used only for development and/or tutorials, this will not be included when compiled outside of test or dev modes. The tests directory can contain Move modules that are only included when compiled in test mode or when Move unit tests are run.","breadcrumbs":"Packages » Package Layout and Manifest Syntax","id":"214","title":"Package Layout and Manifest Syntax"},"215":{"body":"The Move package manifest is defined within the Move.toml file and has the following syntax. Optional fields are marked with *, + denotes one or more elements: [package]\nname = \nedition* = # e.g., \"2024.alpha\" to use the Move 2024 edition, # currently in alpha. Will default to the latest stable edition if not specified.\nlicense* = # e.g., \"MIT\", \"GPL\", \"Apache 2.0\"\nauthors* = [,+] # e.g., [\"Joe Smith (joesmith@noemail.com)\", \"John Snow (johnsnow@noemail.com)\"] # Additional fields may be added to this section by external tools. E.g., on Sui the following sections are added:\npublished-at* = \"\" # The address that the package is published at. Should be set after the first publication. [dependencies] # (Optional section) Paths to dependencies\n# One or more lines declaring dependencies in the following format # ##### Local Dependencies #####\n# For local dependencies use `local = path`. Path is relative to the package root\n# Local = { local = \"../path/to\" }\n# To resolve a version conflict and force a specific version for dependency\n# override you can use `override = true`\n# Override = { local = \"../conflicting/version\", override = true }\n# To instantiate address values in a dependency, use `addr_subst`\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n} # ##### Git Dependencies #####\n# For remote import, use the `{ git = \"...\", subdir = \"...\", rev = \"...\" }`.\n# Revision must be supplied, it can be a branch, a tag, or a commit hash.\n# If no `subdir` is specified, the root of the repository is used.\n# MyRemotePackage = { git = \"https://some.remote/host.git\", subdir = \"remote/path\", rev = \"main\" }\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [addresses] # (Optional section) Declares named addresses in this package\n# One or more lines declaring named addresses in the following format\n# Addresses that match the name of the package must be set to `\"0x0\"` or they will be unable to be published.\n = \"_\" | \"\" # e.g., std = \"_\" or my_addr = \"0xC0FFEECAFE\" # Named addresses will be accessible in Move as `@name`. They're also exported:\n# for example, `std = \"0x1\"` is exported by the Standard Library.\n# alice = \"0xA11CE\" [dev-dependencies] # (Optional section) Same as [dependencies] section, but only included in \"dev\" and \"test\" modes\n# The dev-dependencies section allows overriding dependencies for `--test` and\n# `--dev` modes. You can e.g., introduce test-only dependencies here.\n# Local = { local = \"../path/to/dev-build\" }\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n}\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [dev-addresses] # (Optional section) Same as [addresses] section, but only included in \"dev\" and \"test\" modes\n# The dev-addresses section allows overwriting named addresses for the `--test`\n# and `--dev` modes.\n = \"\" # e.g., alice = \"0xB0B\" An example of a minimal package manifest: [package]\nname = \"AName\" An example of a more standard package manifest that also includes the Move standard library and instantiates the named address std from the LocalDep package with the address value 0x1: [package]\nname = \"AName\"\nlicense = \"Apache 2.0\" [addresses]\naddress_to_be_filled_in = \"_\"\nspecified_address = \"0xB0B\" [dependencies]\n# Local dependency\nLocalDep = { local = \"projects/move-awesomeness\", addr_subst = { \"std\" = \"0x1\" } }\n# Git dependency\nMoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" } [dev-addresses] # For use when developing this module\naddress_to_be_filled_in = \"0x101010101\" Most of the sections in the package manifest are self explanatory, but named addresses can be a bit difficult to understand so we examine them in more detail in Named Addresses During Compilation .","breadcrumbs":"Packages » Move.toml","id":"215","title":"Move.toml"},"216":{"body":"Recall that Move has named addresses and that named addresses cannot be declared in Move. Instead they are declared at the package level: in the manifest file (Move.toml) for a Move package you declare named addresses in the package, instantiate other named addresses, and rename named addresses from other packages within the Move package system. Let's go through each of these actions, and how they are performed in the package's manifest one-by-one:","breadcrumbs":"Packages » Named Addresses During Compilation","id":"216","title":"Named Addresses During Compilation"},"217":{"body":"Let's say we have a Move module in example_pkg/sources/A.move as follows: module named_addr::a { public fun x(): address { @named_addr }\n} We could in example_pkg/Move.toml declare the named address named_addr in two different ways. The first: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" Declares named_addr as a named address in the package example_pkg and that this address can be any valid address value . In particular, an importing package can pick the value of the named address named_addr to be any address it wishes. Intuitively you can think of this as parameterizing the package example_pkg by the named address named_addr, and the package can then be instantiated later on by an importing package. named_addr can also be declared as: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"0xCAFE\" which states that the named address named_addr is exactly 0xCAFE and cannot be changed. This is useful so other importing packages can use this named address without needing to worry about the exact value assigned to it. With these two different declaration methods, there are two ways that information about named addresses can flow in the package graph: The former (\"unassigned named addresses\") allows named address values to flow from the importation site to the declaration site. The latter (\"assigned named addresses\") allows named address values to flow from the declaration site upwards in the package graph to usage sites. With these two methods for flowing named address information throughout the package graph the rules around scoping and renaming become important to understand.","breadcrumbs":"Packages » Declaring Named Addresses","id":"217","title":"Declaring Named Addresses"},"218":{"body":"A named address N in a package P is in scope if: P declares a named address N; or A package in one of P's transitive dependencies declares the named address N and there is a dependency path in the package graph between between P and the declaring package of N with no renaming of N. Additionally, every named address in a package is exported. Because of this and the above scoping rules each package can be viewed as coming with a set of named addresses that will be brought into scope when the package is imported, e.g., if you import example_pkg, that import will also bring the named_addr named address into scope. Because of this, if P imports two packages P1 and P2 both of which declare a named address N an issue arises in P: which \"N\" is meant when N is referred to in P? The one from P1 or P2? To prevent this ambiguity around which package a named address is coming from, we enforce that the sets of scopes introduced by all dependencies in a package are disjoint, and provide a way to rename named addresses when the package that brings them into scope is imported. Renaming a named address when importing can be done as follows in our P, P1, and P2 example above: [package]\nname = \"P\"\n...\n[dependencies]\nP1 = { local = \"some_path_to_P1\", addr_subst = { \"P1N\" = \"N\" } }\nP2 = { local = \"some_path_to_P2\" } With this renaming N refers to the N from P2 and P1N will refer to N coming from P1: module N::A { public fun x(): address { @P1N }\n} It is important to note that renaming is not local : once a named address N has been renamed to N2 in a package P all packages that import P will not see N but only N2 unless N is reintroduced from outside of P. This is why rule (2) in the scoping rules at the start of this section specifies a \"dependency path in the package graph between between P and the declaring package of N with no renaming of N.\"","breadcrumbs":"Packages » Scope and Renaming of Named Addresses","id":"218","title":"Scope and Renaming of Named Addresses"},"219":{"body":"Named addresses can be instantiated multiple times across the package graph as long as it is always with the same value. It is an error if the same named address (regardless of renaming) is instantiated with differing values across the package graph. A Move package can only be compiled if all named addresses resolve to a value. This presents issues if the package wishes to expose an uninstantiated named address. This is what the [dev-addresses] section solves in part. This section can set values for named addresses, but cannot introduce any named addresses. Additionally, only the [dev-addresses] in the root package are included in dev mode. For example a root package with the following manifest would not compile outside of dev mode since named_addr would be uninstantiated: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" [dev-addresses]\nnamed_addr = \"0xC0FFEE\"","breadcrumbs":"Packages » Instantiating Named Addresses","id":"219","title":"Instantiating Named Addresses"},"22":{"body":"As with the other scalar values built-in to the language, boolean values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Bool » Ownership","id":"22","title":"Ownership"},"220":{"body":"The Move package system comes with a command line option as part of the CLI: sui move . Unless a particular path is provided, all package commands will run in the current enclosing Move package. The full list of commands and flags for the Move CLI can be found by running sui move --help.","breadcrumbs":"Packages » Usage and Artifacts","id":"220","title":"Usage and Artifacts"},"221":{"body":"A package can be compiled using CLI commands. This will create a build directory containing build-related artifacts (including bytecode binaries, source maps, and documentation). The general layout of the build directory is as follows: a_move_package\n├── BuildInfo.yaml\n├── bytecode_modules\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mv\n│ │ ...\n│ │ └── \n│ │ └── *.mv\n│ ...\n│ └── *.mv\n├── docs\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.md\n│ │ ...\n│ │ └── \n│ │ └── *.md\n│ ...\n│ └── *.md\n├── source_maps\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mvsm\n│ │ ...\n│ │ └── \n│ │ └── *.mvsm\n│ ...\n│ └── *.mvsm\n└── sources ... └── *.move ├── dependencies │ ├── │ │ └── *.move │ ... │ └── │ └── *.move ... └── *.move","breadcrumbs":"Packages » Artifacts","id":"221","title":"Artifacts"},"222":{"body":"The Move.lock file is generated at the root of the Move package when the package is built. The Move.lock file contains information about your package and its build configuration, and acts as a communication layer between the Move compiler and other tools, like chain-specific command line interfaces and third-party package managers. Like the Move.toml file, the Move.lock file is a text-based TOML file. Unlike the package manifest however, the Move.lock file is not intended for you to edit directly. Processes on the toolchain, like the Move compiler, access and edit the file to read and append relevant information to it. You also must not move the file from the root, as it needs to be at the same level as the Move.toml manifest in the package. If you are using source control for your package, it's recommended practice to check in the Move.lock file that corresponds with your desired built or published package. This ensures that every build of your package is an exact replica of the original, and that changes to the build will be apparent as changes to the Move.lock file. The Move.lock file is a TOML file that currently contains the following fields. Note : other fields may be added to the lock file either in the future, or by third-party package package managers as well.","breadcrumbs":"Packages » Move.lock","id":"222","title":"Move.lock"},"223":{"body":"This section contains the core information needed in the lockfile: The version of the lockfile (needed for backwards compatibility checking, and versioning lockfile changes in the future). The hash of the Move.toml file that was used to generate this lock file. The hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string. The list of dependencies. [move]\nversion = # Lock file version, used for backwards compatibility checking.\nmanifest_digest = # Sha3-256 hash of the Move.toml file that was used to generate this lock file.\ndeps_digest = # Sha3-256 hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string.\ndependencies = { (name = )* } # List of dependencies. Not present if there are no dependencies.","breadcrumbs":"Packages » The [move] Section","id":"223","title":"The [move] Section"},"224":{"body":"After the Move compiler resolves each of the dependencies for the package it writes the location of the dependency to the Move.lock file. If a dependency failed to resolve, the compiler will not write the Move.lock file and the build fails. If all dependencies resolve, the Move.lock file contains the locations (local and remote) of all of the package's transitive dependencies. These will be stored in the Move.lock file in the following format: # ... [[move.package]]\nname = \"A\"\nsource = { git = \"https://github.com/b/c.git\", subdir = \"e/f\", rev = \"a1b2c3\" } [[move.package]]\nname = \"B\"\nsource = { local = \"../local-dep\" }","breadcrumbs":"Packages » The [move.package] Sections","id":"224","title":"The [move.package] Sections"},"225":{"body":"As mentioned above, additional fields may be added to the lock file by external tools. For example, the Sui package manager adds toolchain version information to the lock file that can then be used for on-chain source verification: # ... [move.toolchain-version]\ncompiler-version = # The version of the Move compiler used to build the package, e.g. \"1.21.0\"\nedition = # The edition of the Move language used to build the package, e.g. \"2024.alpha\"\nflavor = # The flavor of the Move compiler used to build the package, e.g. \"sui\"","breadcrumbs":"Packages » The [move.toolchain-version] Section","id":"225","title":"The [move.toolchain-version] Section"},"226":{"body":"Unit testing for Move uses three annotations in the Move source language: #[test] marks a function as a test; #[expected_failure] marks that a test is expected to fail; #[test_only] marks a module or module member ( use , function , struct , or constant ) as code to be included for testing only. These annotations can be placed on any appropriate form with any visibility. Whenever a module or module member is annotated as #[test_only] or #[test], it will not be included in the compiled bytecode unless it is compiled for testing.","breadcrumbs":"Unit Tests » Unit Tests","id":"226","title":"Unit Tests"},"227":{"body":"The #[test] annotation can only be placed on a function with no parameters. This annotation marks the function as a test to be run by the unit testing harness. #[test] // OK\nfun this_is_a_test() { ... } #[test] // Will fail to compile since the test takes an argument\nfun this_is_not_correct(arg: u64) { ... } A test can also be annotated as an #[expected_failure]. This annotation marks that the test is expected to raise an error. There are a number of options that can be used with the #[expected_failure] annotation to ensure only a failure with the specified condition is marked as passing, these options are detailed in Expected Failures . Only functions that have the #[test] annotation can also be annotated as an #[expected_failure]. Some simple examples of using the #[expected_failure] annotation are shown below: #[test]\n#[expected_failure]\npublic fun this_test_will_abort_and_pass() { abort 1 } #[test]\n#[expected_failure]\npublic fun test_will_error_and_pass() { 1/0; } #[test] // Will pass since test fails with the expected abort code constant.\n#[expected_failure(abort_code = ENotFound)] // ENotFound is a constant defined in the module\npublic fun test_will_error_and_pass_abort_code() { abort ENotFound } #[test] // Will fail since test fails with a different error than expected.\n#[expected_failure(abort_code = my_module::ENotFound)]\npublic fun test_will_error_and_fail() { 1/0; } #[test, expected_failure] // Can have multiple in one attribute. This test will pass.\npublic fun this_other_test_will_abort_and_pass() { abort 1 } Note : #[test] and #[test_only] functions can also call entry functions, regardless of their visibility.","breadcrumbs":"Unit Tests » Test Annotations","id":"227","title":"Test Annotations"},"228":{"body":"There are a number of different ways that you can use the #[expected_failure] annotation to specify different types of error conditions. These are:","breadcrumbs":"Unit Tests » Expected Failures","id":"228","title":"Expected Failures"},"229":{"body":"This will pass if the test aborts with the specified constant value in the module that defines the constant and fail otherwise. This is the recommended way of testing for expected test failures. Note : You can reference constants outside of the current module or package in expected_failure annotations. module pkg_addr::other_module { const ENotFound: u64 = 1; public fun will_abort() { abort ENotFound }\n} module pkg_addr::my_module { use pkg_addr::other_module; const ENotFound: u64 = 1; #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { abort ENotFound } #[test] #[expected_failure(abort_code = other_module::ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() } // FAIL: Will not pass since we are expecting the constant from the wrong module. #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() }\n}","breadcrumbs":"Unit Tests » 1. #[expected_failure(abort_code = )]","id":"229","title":"1. #[expected_failure(abort_code = )]"},"23":{"body":"address is a built-in type in Move that is used to represent locations (sometimes called accounts) in storage. An address value is a 256-bit (32 byte) identifier. Move uses addresses to differentiate packages of modules , where each package has its own address and modules. Specific deployments of Move might also use the address value for storage operations. For Sui, address is used to represent \"accounts\", and also objects via strong type wrappers (with sui::object::UID and sui::object::ID). Although an address is a 256 bit integer under the hood, Move addresses are intentionally opaque---they cannot be created from integers, they do not support arithmetic operations, and they cannot be modified. Specific deployments of Move might have native functions to enable some of these operations (e.g., creating an address from bytes vector), but these are not part of the Move language itself. While there are runtime address values (values of type address), they cannot be used to access modules at runtime.","breadcrumbs":"Primitive Types » Address » Address","id":"23","title":"Address"},"230":{"body":"This specifies that the test is expected to fail with an arithmetic error (e.g., integer overflow, division by zero, etc) at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_arith_error() { 1/0; }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_pass1() { 1/0; } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_arith_error_and_pass2() { other_module::will_arith_error() } // FAIL: Will fail since the location we expect it the fail at is different from where the test actually failed. #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_fail() { other_module::will_arith_error() }\n}","breadcrumbs":"Unit Tests » 2. #[expected_failure(arithmetic_error, location = )]","id":"230","title":"2. #[expected_failure(arithmetic_error, location = )]"},"231":{"body":"This specifies that the test is expected to fail with an out of gas error at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_oog() { loop {} }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_pass1() { loop {} } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_oog_and_pass2() { other_module::will_oog() } // FAIL: Will fail since the location we expect it the fail at is different from where // the test actually failed. #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_fail() { other_module::will_oog() }\n}","breadcrumbs":"Unit Tests » 3. #[expected_failure(out_of_gas, location = )]","id":"231","title":"3. #[expected_failure(out_of_gas, location = )]"},"232":{"body":"This specifies that the test is expected to fail with a vector error at the specified location with the given minor_status (if provided). The must be a valid path to a module module location, e.g., Self, or my_package::my_module. The is an optional parameter that specifies the minor status of the vector error. If it is not specified, the test will pass if the test fails with any minor status. If it is specified, the test will only pass if the test fails with a vector error with the specified minor status. module pkg_addr::other_module { public fun vector_borrow_empty() { &vector[][1]; }\n} module pkg_addr::my_module { #[test] #[expected_failure(vector_error, location = Self)] fun vector_abort_same_module() { vector::borrow(&vector[], 1); } #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // Can specify minor statues (i.e., vector-specific error codes) to expect. #[test] #[expected_failure(vector_error, minor_status = 1, location = Self)] fun native_abort_good_right_code() { vector::borrow(&vector[], 1); } // FAIL: correct error, but wrong location. #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // FAIL: correct error and location but the minor status differs so this test will fail. #[test] #[expected_failure(vector_error, minor_status = 0, location = Self)] fun vector_abort_wrong_minor_code() { vector::borrow(&vector[], 1); }\n}","breadcrumbs":"Unit Tests » 4. #[expected_failure(vector_error, minor_status = , location = )]","id":"232","title":"4. #[expected_failure(vector_error, minor_status = , location = )]"},"233":{"body":"This will pass if the test aborts with any error code. You should be incredibly careful using this to annotate expected tests failures, and always prefer one of the ways described above instead. Examples of these types of annotations are: #[test]\n#[expected_failure]\nfun test_will_abort_and_pass1() { abort 1 } #[test]\n#[expected_failure]\nfun test_will_arith_error_and_pass2() { 1/0; }","breadcrumbs":"Unit Tests » 5. #[expected_failure]","id":"233","title":"5. #[expected_failure]"},"234":{"body":"A module and any of its members can be declared as test only. If an item is annotated as #[test_only] the item will only be included in the compiled Move bytecode when compiled in test mode. Additionally, when compiled outside of test mode, any non-test uses of a #[test_only] module will raise an error during compilation. Note : functions that are annotated with #[test_only] will only be available to be called from test code, but they themselves are not tests and will not be run as tests by the unit testing framework. #[test_only] // test only attributes can be attached to modules\nmodule abc { ... } #[test_only] // test only attributes can be attached to constants\nconst MY_ADDR: address = @0x1; #[test_only] // .. to uses\nuse pkg_addr::some_other_module; #[test_only] // .. to structs\npublic struct SomeStruct { ... } #[test_only] // .. and functions. Can only be called from test code, but this is _not_ a test!\nfun test_only_function(...) { ... }","breadcrumbs":"Unit Tests » Test Only Annotations","id":"234","title":"Test Only Annotations"},"235":{"body":"Unit tests for a Move package can be run with the sui move test command . When running tests, every test will either PASS, FAIL, or TIMEOUT. If a test case fails, the location of the failure along with the function name that caused the failure will be reported if possible. You can see an example of this below. A test will be marked as timing out if it exceeds the maximum number of instructions that can be executed for any single test. This bound can be changed using the options below. Additionally, while the result of a test is always deterministic, tests are run in parallel by default, so the ordering of test results in a test run is non-deterministic unless running with only one thread, which can be configured via an option. These aforementioned options are two among many that can fine-tune testing and help debug failing tests. To see all available options, and a description of what each one does, pass the --help flag to the sui move test command: $ sui move test --help","breadcrumbs":"Unit Tests » Running Unit Tests","id":"235","title":"Running Unit Tests"},"236":{"body":"A simple module using some of the unit testing features is shown in the following example: First create an empty package and change directory into it: $ sui move new test_example; cd test_example Next add the following module under the sources directory: // filename: sources/my_module.move\nmodule test_example::my_module { public struct Wrapper(u64) const ECoinIsZero: u64 = 0; public fun make_sure_non_zero_coin(coin: Wrapper): Wrapper { assert!(coin.0 > 0, ECoinIsZero); coin } #[test] fun make_sure_non_zero_coin_passes() { let coin = Wrapper(1); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test] // Or #[expected_failure] if we don't care about the abort code #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails() { let coin = Wrapper(0); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test_only] // test only helper function fun make_coin_zero(coin: &mut Wrapper) { coin.0 = 0; } #[test] #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails2() { let mut coin = Wrapper(10); coin.make_coin_zero(); let Wrapper(_) = make_sure_non_zero_coin(coin); }\n}","breadcrumbs":"Unit Tests » Example","id":"236","title":"Example"},"237":{"body":"You can then run these tests with the move test command: $ sui move test\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2\nTest result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Running Tests","id":"237","title":"Running Tests"},"238":{"body":"Passing specific tests to run You can run a specific test, or a set of tests with sui move test . This will only run tests whose fully qualified name contains . For example if we wanted to only run tests with \"non_zero\" in their name: $ sui move test non_zero\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\nTest result: OK. Total tests: 1; passed: 1; failed: 0 -i or --gas_used This bounds the amount of gas that can be consumed for any one test to : $ sui move test -i 0\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ TIMEOUT ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails2 Test failures: Failures in 0x0::my_module: ┌── make_sure_non_zero_coin_passes ──────\n│ Test timed out\n└────────────────── ┌── make_sure_zero_coin_fails ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:22:27\n│ │\n│ 21 │ fun make_sure_zero_coin_fails() {\n│ │ ------------------------- In this function in 0x0::my_module\n│ 22 │ let coin = MyCoin(0);\n│ │ ^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── ┌── make_sure_zero_coin_fails2 ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:34:31\n│ │\n│ 33 │ fun make_sure_zero_coin_fails2() {\n│ │ -------------------------- In this function in 0x0::my_module\n│ 34 │ let mut coin = MyCoin(10);\n│ │ ^^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── Test result: FAILED. Total tests: 3; passed: 0; failed: 3 -s or --statistics With these flags you can gather statistics about the tests run and report the runtime and gas used for each test. You can additionally add csv (sui move test -s csv) to get the gas usage in a csv output format. For example, if we wanted to see the statistics for the tests in the example above: $ sui move test -s\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2 Test Statistics: ┌────────────────────────────────────────────────┬────────────┬───────────────────────────┐\n│ Test Name │ Time │ Gas Used │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_non_zero_coin_passes │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails2 │ 0.001 │ 1 │\n└────────────────────────────────────────────────┴────────────┴───────────────────────────┘ Test result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Using Test Flags","id":"238","title":"Using Test Flags"},"239":{"body":"See Sui's Coding Conventions for Move","breadcrumbs":"Coding Conventions","id":"239","title":"Coding Conventions"},"24":{"body":"Addresses come in two flavors, named or numerical. The syntax for a named address follows the same rules for any named identifier in Move. The syntax of a numerical address is not restricted to hex-encoded values, and any valid u256 numerical value can be used as an address value, e.g., 42, 0xCAFE, and 10_000 are all valid numerical address literals. To distinguish when an address is being used in an expression context or not, the syntax when using an address differs depending on the context where it's used: When an address is used as an expression, the address must be prefixed by the @ character, i.e., @ or @. Outside of expression contexts, the address may be written without the leading @ character, i.e., or . In general, you can think of @ as an operator that takes an address from being a namespace item to being an expression item.","breadcrumbs":"Primitive Types » Address » Addresses and Their Syntax","id":"24","title":"Addresses and Their Syntax"},"240":{"body":"NOTE: this feature has been superseded by public(package) . The friend syntax was used to declare modules that are trusted by the current module. A trusted module is allowed to call any function defined in the current module that have the public(friend) visibility. For details on function visibilities, refer to the Visibility section in Functions .","breadcrumbs":"Friends » DEPRECATED: Friends","id":"240","title":"DEPRECATED: Friends"},"241":{"body":"A module can declare other modules as friends via friend declaration statements, in the format of friend — friend declaration using fully qualified module name like the example below, or module 0x42::a { friend 0x42::b;\n} friend — friend declaration using a module name alias, where the module alias is introduced via the use statement. module 0x42::a { use 0x42::b; friend b;\n} A module may have multiple friend declarations, and the union of all the friend modules forms the friend list. In the example below, both 0x42::B and 0x42::C are considered as friends of 0x42::A. module 0x42::a { friend 0x42::b; friend 0x42::c;\n} Unlike use statements, friend can only be declared in the module scope and not in the expression block scope. friend declarations may be located anywhere a top-level construct (e.g., use, function, struct, etc.) is allowed. However, for readability, it is advised to place friend declarations near the beginning of the module definition.","breadcrumbs":"Friends » Friend declaration","id":"241","title":"Friend declaration"},"242":{"body":"Friend declarations are subject to the following rules: A module cannot declare itself as a friend. module 0x42::m { friend Self; // ERROR! }\n// ^^^^ Cannot declare the module itself as a friend module 0x43::m { friend 0x43::M; // ERROR! }\n// ^^^^^^^ Cannot declare the module itself as a friend Friend modules must be known by the compiler module 0x42::m { friend 0x42::nonexistent; // ERROR! }\n// ^^^^^^^^^^^^^^^^^ Unbound module '0x42::nonexistent' Friend modules must be within the same account address. module 0x42::m {} module 0x42::n { friend 0x42::m; // ERROR! }\n// ^^^^^^^ Cannot declare modules out of the current address as a friend Friends relationships cannot create cyclic module dependencies. Cycles are not allowed in the friend relationships, e.g., the relation 0x2::a friends 0x2::b friends 0x2::c friends 0x2::a is not allowed. More generally, declaring a friend module adds a dependency upon the current module to the friend module (because the purpose is for the friend to call functions in the current module). If that friend module is already used, either directly or transitively, a cycle of dependencies would be created. module 0x2::a { use 0x2::c; friend 0x2::b; public fun a() { c::c() }\n} module 0x2::b { friend 0x2::c; // ERROR!\n// ^^^^^^ This friend relationship creates a dependency cycle: '0x2::b' is a friend of '0x2::a' uses '0x2::c' is a friend of '0x2::b'\n} module 0x2::c { public fun c() {}\n} The friend list for a module cannot contain duplicates. module 0x42::a {} module 0x42::m { use 0x42::a as aliased_a; friend 0x42::A; friend aliased_a; // ERROR!\n// ^^^^^^^^^ Duplicate friend declaration '0x42::a'. Friend declarations in a module must be unique\n}","breadcrumbs":"Friends » Friend declaration rules","id":"242","title":"Friend declaration rules"},"25":{"body":"Named addresses are a feature that allow identifiers to be used in place of numerical values in any spot where addresses are used, and not just at the value level. Named addresses are declared and bound as top level elements (outside of modules and scripts) in Move packages, or passed as arguments to the Move compiler. Named addresses only exist at the source language level and will be fully substituted for their value at the bytecode level. Because of this, modules and module members should be accessed through the module's named address and not through the numerical value assigned to the named address during compilation. So while use my_addr::foo is equivalent to use 0x2::foo (if my_addr is assigned 0x2), it is a best practice to always use the my_addr name.","breadcrumbs":"Primitive Types » Address » Named Addresses","id":"25","title":"Named Addresses"},"26":{"body":"// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000001\nlet a1: address = @0x1;\n// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000042\nlet a2: address = @0x42;\n// shorthand for\n// 0x00000000000000000000000000000000000000000000000000000000DEADBEEF\nlet a3: address = @0xDEADBEEF;\n// shorthand for\n// 0x000000000000000000000000000000000000000000000000000000000000000A\nlet a4: address = @0x0000000000000000000000000000000A;\n// Assigns `a5` the value of the named address `std`\nlet a5: address = @std;\n// Any valid numerical value can be used as an address\nlet a6: address = @66;\nlet a7: address = @42_000; module 66::some_module { // Not in expression context, so no @ needed use 0x1::other_module; // Not in expression context so no @ needed use std::vector; // Can use a named address as a namespace item ...\n} module std::other_module { // Can use a named address when declaring a module ...\n}","breadcrumbs":"Primitive Types » Address » Examples","id":"26","title":"Examples"},"27":{"body":"vector is the only primitive collection type provided by Move. A vector is a homogeneous collection of T's that can grow or shrink by pushing/popping values off the \"end\". A vector can be instantiated with any type T. For example, vector, vector
, vector<0x42::my_module::MyData>, and vector> are all valid vector types.","breadcrumbs":"Primitive Types » Vector » Vector","id":"27","title":"Vector"},"28":{"body":"","breadcrumbs":"Primitive Types » Vector » Literals","id":"28","title":"Literals"},"29":{"body":"Vectors of any type can be created with vector literals. Syntax Type Description vector[] vector[]: vector where T is any single, non-reference type An empty vector vector[e1, ..., en] vector[e1, ..., en]: vector where e_i: T s.t. 0 < i <= n and n > 0 A vector with n elements (of length n) In these cases, the type of the vector is inferred, either from the element type or from the vector's usage. If the type cannot be inferred, or simply for added clarity, the type can be specified explicitly: vector[]: vector\nvector[e1, ..., en]: vector Example Vector Literals (vector[]: vector);\n(vector[0u8, 1u8, 2u8]: vector);\n(vector[]: vector);\n(vector
[@0x42, @0x100]: vector
);","breadcrumbs":"Primitive Types » Vector » General vector Literals","id":"29","title":"General vector Literals"},"3":{"body":"The module test_addr::test part specifies that the module test will be published under the numerical address value assigned for the name test_addr in the package settings . Modules should normally be declared using named addresses (as opposed to using the numerical value directly). For example: module test_addr::test { public struct Example has copy, drop { a: address } friend test_addr::another_test; public fun print() { let example = Example { a: @test_addr }; debug::print(&example) }\n} These named addresses commonly match the name of the package . Because named addresses only exist at the source language level and during compilation, named addresses will be fully substituted for their value at the bytecode level. For example if we had the following code: fun example() { my_addr::m::foo(@my_addr);\n} and we compiled it with my_addr set to 0xC0FFEE, then it would be operationally equivalent to the following: fun example() { 0xC0FFEE::m::foo(@0xC0FFEE);\n} While at the source level these two different accesses are equivalent, it is a best practice to always use the named address and not the numerical value assigned to that address. Module names can start with a lowercase letter from a to z or an uppercase letter from A to Z. After the first character, module names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. module a::my_module {}\nmodule a::foo_bar_42 {} Typically, module names start with a lowercase letter. A module named my_module should be stored in a source file named my_module.move.","breadcrumbs":"Modules » Names","id":"3","title":"Names"},"30":{"body":"A common use-case for vectors in Move is to represent \"byte arrays\", which are represented with vector. These values are often used for cryptographic purposes, such as a public key or a hash result. These values are so common that specific syntax is provided to make the values more readable, as opposed to having to use vector[] where each individual u8 value is specified in numeric form. There are currently two supported types of vector literals, byte strings and hex strings . Byte Strings Byte strings are quoted string literals prefixed by a b, e.g. b\"Hello!\\n\". These are ASCII encoded strings that allow for escape sequences. Currently, the supported escape sequences are: Escape Sequence Description \\n New line (or Line feed) \\r Carriage return \\t Tab \\\\ Backslash \\0 Null \\\" Quote \\xHH Hex escape, inserts the hex byte sequence HH Hex Strings Hex strings are quoted string literals prefixed by a x, e.g. x\"48656C6C6F210A\". Each byte pair, ranging from 00 to FF, is interpreted as hex encoded u8 value. So each byte pair corresponds to a single entry in the resulting vector. Example String Literals fun byte_and_hex_strings() { assert!(b\"\" == x\"\", 0); assert!(b\"Hello!\\n\" == x\"48656C6C6F210A\", 1); assert!(b\"\\x48\\x65\\x6C\\x6C\\x6F\\x21\\x0A\" == x\"48656C6C6F210A\", 2); assert!( b\"\\\"Hello\\tworld!\\\"\\n \\r \\\\Null=\\0\" == x\"2248656C6C6F09776F726C6421220A200D205C4E756C6C3D00\", 3 );\n}","breadcrumbs":"Primitive Types » Vector » vector literals","id":"30","title":"vector literals"},"31":{"body":"vector supports the following operations via the std::vector module in the Move standard library: Function Description Aborts? vector::empty(): vector Create an empty vector that can store values of type T Never vector::singleton(t: T): vector Create a vector of size 1 containing t Never vector::push_back(v: &mut vector, t: T) Add t to the end of v Never vector::pop_back(v: &mut vector): T Remove and return the last element in v If v is empty vector::borrow(v: &vector, i: u64): &T Return an immutable reference to the T at index i If i is not in bounds vector::borrow_mut(v: &mut vector, i: u64): &mut T Return a mutable reference to the T at index i If i is not in bounds vector::destroy_empty(v: vector) Delete v If v is not empty vector::append(v1: &mut vector, v2: vector) Add the elements in v2 to the end of v1 Never vector::contains(v: &vector, e: &T): bool Return true if e is in the vector v. Otherwise, returns false Never vector::swap(v: &mut vector, i: u64, j: u64) Swaps the elements at the ith and jth indices in the vector v If i or j is out of bounds vector::reverse(v: &mut vector) Reverses the order of the elements in the vector v in place Never vector::index_of(v: &vector, e: &T): (bool, u64) Return (true, i) if e is in the vector v at index i. Otherwise, returns (false, 0) Never vector::remove(v: &mut vector, i: u64): T Remove the ith element of the vector v, shifting all subsequent elements. This is O(n) and preserves ordering of elements in the vector If i is out of bounds vector::swap_remove(v: &mut vector, i: u64): T Swap the ith element of the vector v with the last element and then pop the element, This is O(1), but does not preserve ordering of elements in the vector If i is out of bounds More operations may be added over time.","breadcrumbs":"Primitive Types » Vector » Operations","id":"31","title":"Operations"},"32":{"body":"use std::vector; let mut v = vector::empty();\nvector::push_back(&mut v, 5);\nvector::push_back(&mut v, 6); assert!(*vector::borrow(&v, 0) == 5, 42);\nassert!(*vector::borrow(&v, 1) == 6, 42);\nassert!(vector::pop_back(&mut v) == 6, 42);\nassert!(vector::pop_back(&mut v) == 5, 42);","breadcrumbs":"Primitive Types » Vector » Example","id":"32","title":"Example"},"33":{"body":"Some behaviors of vector depend on the abilities of the element type, T. For example, vectors containing elements that do not have drop cannot be implicitly discarded like v in the example above--they must be explicitly destroyed with vector::destroy_empty. Note that vector::destroy_empty will abort at runtime unless vec contains zero elements: fun destroy_any_vector(vec: vector) { vector::destroy_empty(vec) // deleting this line will cause a compiler error\n} But no error would occur for dropping a vector that contains elements with drop: fun destroy_droppable_vector(vec: vector) { // valid! // nothing needs to be done explicitly to destroy the vector\n} Similarly, vectors cannot be copied unless the element type has copy. In other words, a vector has copy if and only if T has copy. Note that it will be implicitly copied if needed: let x = vector[10];\nlet y = x; // implicit copy\nlet z = x;\n(y, z) Keep in mind, copies of large vectors can be expensive. If this is a concern, annotating the intended usage can prevent accidental copies. For example, let x = vector[10];\nlet y = move x;\nlet z = x; // ERROR! x has been moved\n(y, z) For more details see the sections on type abilities and generics .","breadcrumbs":"Primitive Types » Vector » Destroying and copying vectors","id":"33","title":"Destroying and copying vectors"},"34":{"body":"As mentioned above , vector values can be copied only if the elements can be copied. In that case, the copy can be done via a copy or a dereference * .","breadcrumbs":"Primitive Types » Vector » Ownership","id":"34","title":"Ownership"},"35":{"body":"Move has two types of references: immutable & and mutable &mut. Immutable references are read only, and cannot modify the underlying value (or any of its fields). Mutable references allow for modifications via a write through that reference. Move's type system enforces an ownership discipline that prevents reference errors.","breadcrumbs":"Primitive Types » References » References","id":"35","title":"References"},"36":{"body":"Move provides operators for creating and extending references as well as converting a mutable reference to an immutable one. Here and elsewhere, we use the notation e: T for \"expression e has type T\". Syntax Type Description &e &T where e: T and T is a non-reference type Create an immutable reference to e &mut e &mut T where e: T and T is a non-reference type Create a mutable reference to e. &e.f &T where e.f: T Create an immutable reference to field f of struct e. &mut e.f &mut T where e.f: T Create a mutable reference to field f of structe. freeze(e) &T where e: &mut T Convert the mutable reference e into an immutable reference. The &e.f and &mut e.f operators can be used both to create a new reference into a struct or to extend an existing reference: let s = S { f: 10 };\nlet f_ref1: &u64 = &s.f; // works\nlet s_ref: &S = &s;\nlet f_ref2: &u64 = &s_ref.f // also works A reference expression with multiple fields works as long as both structs are in the same module: public struct A { b: B }\npublic struct B { c : u64 }\nfun f(a: &A): &u64 { &a.b.c\n} Finally, note that references to references are not allowed: let x = 7;\nlet y: &u64 = &x;\nlet z: &&u64 = &y; // ERROR! will not compile","breadcrumbs":"Primitive Types » References » Reference Operators","id":"36","title":"Reference Operators"},"37":{"body":"Both mutable and immutable references can be read to produce a copy of the referenced value. Only mutable references can be written. A write *x = v discards the value previously stored in x and updates it with v. Both operations use the C-like * syntax. However, note that a read is an expression, whereas a write is a mutation that must occur on the left hand side of an equals. Syntax Type Description *e T where e is &T or &mut T Read the value pointed to by e *e1 = e2 () where e1: &mut T and e2: T Update the value in e1 with e2. In order for a reference to be read, the underlying type must have the copy ability as reading the reference creates a new copy of the value. This rule prevents the copying of assets: fun copy_coin_via_ref_bad(c: Coin) { let c_ref = &c; let counterfeit: Coin = *c_ref; // not allowed! pay(c); pay(counterfeit);\n} Dually: in order for a reference to be written to, the underlying type must have the drop ability as writing to the reference will discard (or \"drop\") the old value. This rule prevents the destruction of resource values: fun destroy_coin_via_ref_bad(mut ten_coins: Coin, c: Coin) { let ref = &mut ten_coins; *ref = c; // ERROR! not allowed--would destroy 10 coins!\n}","breadcrumbs":"Primitive Types » References » Reading and Writing Through References","id":"37","title":"Reading and Writing Through References"},"38":{"body":"A mutable reference can be used in a context where an immutable reference is expected: let mut x = 7;\nlet y: &u64 = &mut x; This works because the under the hood, the compiler inserts freeze instructions where they are needed. Here are a few more examples of freeze inference in action: fun takes_immut_returns_immut(x: &u64): &u64 { x } // freeze inference on return value\nfun takes_mut_returns_immut(x: &mut u64): &u64 { x } fun expression_examples() { let mut x = 0; let mut y = 0; takes_immut_returns_immut(&x); // no inference takes_immut_returns_immut(&mut x); // inferred freeze(&mut x) takes_mut_returns_immut(&mut x); // no inference assert!(&x == &mut y, 42); // inferred freeze(&mut y)\n} fun assignment_examples() { let x = 0; let y = 0; let imm_ref: &u64 = &x; imm_ref = &x; // no inference imm_ref = &mut y; // inferred freeze(&mut y)\n}","breadcrumbs":"Primitive Types » References » freeze inference","id":"38","title":"freeze inference"},"39":{"body":"With this freeze inference, the Move type checker can view &mut T as a subtype of &T. As shown above, this means that anywhere for any expression where a &T value is used, a &mut T value can also be used. This terminology is used in error messages to concisely indicate that a &mut T was needed where a &T was supplied. For example module a::example { fun read_and_assign(store: &mut u64, new_value: &u64) { *store = *new_value } fun subtype_examples() { let mut x: &u64 = &0; let mut y: &mut u64 = &mut 1; x = &mut 1; // valid y = &2; // ERROR! invalid! read_and_assign(y, x); // valid read_and_assign(x, y); // ERROR! invalid! }\n} will yield the following error messages error: ┌── example.move:11:9 ─── │ 12 │ y = &2; // invalid! │ ^ Invalid assignment to local 'y' · 12 │ y = &2; // invalid! │ -- The type: '&{integer}' · 9 │ let mut y: &mut u64 = &mut 1; │ -------- Is not a subtype of: '&mut u64' │ error: ┌── example.move:14:9 ─── │ 15 │ read_and_assign(x, y); // invalid! │ ^^^^^^^^^^^^^^^^^^^^^ Invalid call of 'a::example::read_and_assign'. Invalid argument for parameter 'store' · 8 │ let mut x: &u64 = &0; │ ---- The type: '&u64' · 3 │ fun read_and_assign(store: &mut u64, new_value: &u64) { │ -------- Is not a subtype of: '&mut u64' │ The only other types that currently have subtyping are tuples","breadcrumbs":"Primitive Types » References » Subtyping","id":"39","title":"Subtyping"},"4":{"body":"All members inside a module block can appear in any order. Fundamentally, a module is a collection of types and functions . The use keyword refers to members from other modules. The const keyword defines constants that can be used in the functions of a module. The friend syntax is a deprecated concept for specifying a list of trusted modules. The concept has been superseded by public(package)","breadcrumbs":"Modules » Members","id":"4","title":"Members"},"40":{"body":"Both mutable and immutable references can always be copied and extended even if there are existing copies or extensions of the same reference : fun reference_copies(s: &mut S) { let s_copy1 = s; // ok let s_extension = &mut s.f; // also ok let s_copy2 = s; // still ok ...\n} This might be surprising for programmers familiar with Rust's ownership system, which would reject the code above. Move's type system is more permissive in its treatment of copies , but equally strict in ensuring unique ownership of mutable references before writes.","breadcrumbs":"Primitive Types » References » Ownership","id":"40","title":"Ownership"},"41":{"body":"References and tuples are the only types that cannot be stored as a field value of structs, which also means that they cannot exist in storage or objects . All references created during program execution will be destroyed when a Move program terminates; they are entirely ephemeral. This also applies to all types without the store ability: any value of a non-store type must be destroyed before the program terminates. ability , but note that references and tuples go a step further by never being allowed in structs in the first place. This is another difference between Move and Rust, which allows references to be stored inside of structs. One could imagine a fancier, more expressive, type system that would allow references to be stored in structs. We could allow references inside of structs that do not have the store ability , but the core difficulty is that Move has a fairly complex system for tracking static reference safety. This aspect of the type system would also have to be extended to support storing references inside of structs. In short, Move's reference safety system would have to expand to support stored references, and it is something we are keeping an eye on as the language evolves.","breadcrumbs":"Primitive Types » References » References Cannot Be Stored","id":"41","title":"References Cannot Be Stored"},"42":{"body":"Move does not fully support tuples as one might expect coming from another language with them as a first-class value . However, in order to support multiple return values, Move has tuple-like expressions. These expressions do not result in a concrete value at runtime (there are no tuples in the bytecode), and as a result they are very limited: They can only appear in expressions (usually in the return position for a function). They cannot be bound to local variables. They cannot be bound to local variables. They cannot be stored in structs. Tuple types cannot be used to instantiate generics. Similarly, unit () is a type created by the Move source language in order to be expression based. The unit value () does not result in any runtime value. We can consider unit() to be an empty tuple, and any restrictions that apply to tuples also apply to unit. It might feel weird to have tuples in the language at all given these restrictions. But one of the most common use cases for tuples in other languages is for functions to allow functions to return multiple values. Some languages work around this by forcing the users to write structs that contain the multiple return values. However in Move, you cannot put references inside of structs . This required Move to support multiple return values. These multiple return values are all pushed on the stack at the bytecode level. At the source level, these multiple return values are represented using tuples.","breadcrumbs":"Primitive Types » Tuples and Unit » Tuples and Unit","id":"42","title":"Tuples and Unit"},"43":{"body":"Tuples are created by a comma separated list of expressions inside of parentheses. Syntax Type Description () (): () Unit, the empty tuple, or the tuple of arity 0 (e1, ..., en) (e1, ..., en): (T1, ..., Tn) where e_i: Ti s.t. 0 < i <= n and n > 0 A n-tuple, a tuple of arity n, a tuple with n elements Note that (e) does not have type (e): (t), in other words there is no tuple with one element. If there is only a single element inside of the parentheses, the parentheses are only used for disambiguation and do not carry any other special meaning. Sometimes, tuples with two elements are called \"pairs\" and tuples with three elements are called \"triples.\"","breadcrumbs":"Primitive Types » Tuples and Unit » Literals","id":"43","title":"Literals"},"44":{"body":"module 0x42::example { // all 3 of these functions are equivalent // when no return type is provided, it is assumed to be `()` fun returns_unit_1() { } // there is an implicit () value in empty expression blocks fun returns_unit_2(): () { } // explicit version of `returns_unit_1` and `returns_unit_2` fun returns_unit_3(): () { () } fun returns_3_values(): (u64, bool, address) { (0, false, @0x42) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") }\n}","breadcrumbs":"Primitive Types » Tuples and Unit » Examples","id":"44","title":"Examples"},"45":{"body":"The only operation that can be done on tuples currently is destructuring.","breadcrumbs":"Primitive Types » Tuples and Unit » Operations","id":"45","title":"Operations"},"46":{"body":"For tuples of any size, they can be destructured in either a let binding or in an assignment. For example: module 0x42::example { // all 3 of these functions are equivalent fun returns_unit() {} fun returns_2_values(): (bool, bool) { (true, false) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") } fun examples(cond: bool) { let () = (); let (mut x, mut y): (u8, u64) = (0, 1); let (mut a, mut b, mut c, mut d) = (@0x0, 0, false, b\"\"); () = (); (x, y) = if (cond) (1, 2) else (3, 4); (a, b, c, d) = (@0x1, 1, true, b\"1\"); } fun examples_with_function_calls() { let () = returns_unit(); let (mut x, mut y): (bool, bool) = returns_2_values(); let (mut a, mut b, mut c, mut d) = returns_4_values(&0); () = returns_unit(); (x, y) = returns_2_values(); (a, b, c, d) = returns_4_values(&1); }\n} For more details, see Move Variables .","breadcrumbs":"Primitive Types » Tuples and Unit » Destructuring","id":"46","title":"Destructuring"},"47":{"body":"Along with references, tuples are the only types that have subtyping in Move. Tuples have subtyping only in the sense that subtype with references (in a covariant way). For example: let x: &u64 = &0;\nlet y: &mut u64 = &mut 1; // (&u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (a, b): (&u64, &u64) = (x, y); // (&mut u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (c, d): (&u64, &u64) = (y, y); // ERROR! (&u64, &mut u64) is NOT a subtype of (&mut u64, &mut u64)\n// since &u64 is NOT a subtype of &mut u64\nlet (e, f): (&mut u64, &mut u64) = (x, y);","breadcrumbs":"Primitive Types » Tuples and Unit » Subtyping","id":"47","title":"Subtyping"},"48":{"body":"As mentioned above, tuple values don't really exist at runtime. And currently they cannot be stored into local variables because of this (but it is likely that this feature will come at some point in the future). As such, tuples can only be moved currently, as copying them would require putting them into a local variable first.","breadcrumbs":"Primitive Types » Tuples and Unit » Ownership","id":"48","title":"Ownership"},"49":{"body":"Local variables in Move are lexically (statically) scoped. New variables are introduced with the keyword let, which will shadow any previous local with the same name. Locals marked as mut are mutable and can be updated both directly and via a mutable reference.","breadcrumbs":"Local Variables and Scopes » Local Variables and Scope","id":"49","title":"Local Variables and Scope"},"5":{"body":"The primitive types are the basic building blocks of the language. These primitive types can be used on their own or can be used be used to build more complex, user-defined types, e.g. in a struct . Integers Bool Address Vector These primitive types are used in conjunction with other types References Tuples and Unit","breadcrumbs":"Primitive Types » Primitive Types","id":"5","title":"Primitive Types"},"50":{"body":"","breadcrumbs":"Local Variables and Scopes » Declaring Local Variables","id":"50","title":"Declaring Local Variables"},"51":{"body":"Move programs use let to bind variable names to values: let x = 1;\nlet y = x + x: let can also be used without binding a value to the local. let x; The local can then be assigned a value later. let x;\nif (cond) { x = 1\n} else { x = 0\n} This can be very helpful when trying to extract a value from a loop when a default value cannot be provided. let x;\nlet cond = true;\nlet i = 0;\nloop { let (res, cond) = foo(i); if (!cond) { x = res; break; }; i = i + 1;\n} To modify a local variable after it is assigned, or to borrow it mutably &mut, it must be declared as mut. let mut x = 0;\nif (cond) x = x + 1;\nfoo(&mut x); For more details see the section on assignments below.","breadcrumbs":"Local Variables and Scopes » let bindings","id":"51","title":"let bindings"},"52":{"body":"Move's type system prevents a local variable from being used before it has been assigned. let x;\nx + x // ERROR! x is used before being assigned let x;\nif (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases let x;\nwhile (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases","breadcrumbs":"Local Variables and Scopes » Variables must be assigned before use","id":"52","title":"Variables must be assigned before use"},"53":{"body":"Variable names can contain underscores _, letters a to z, letters A to Z, and digits 0 to 9. Variable names must start with either an underscore _ or a letter a through z. They cannot start with uppercase letters. // all valid\nlet x = e;\nlet _x = e;\nlet _A = e;\nlet x0 = e;\nlet xA = e;\nlet foobar_123 = e; // all invalid\nlet X = e; // ERROR!\nlet Foo = e; // ERROR!","breadcrumbs":"Local Variables and Scopes » Valid variable names","id":"53","title":"Valid variable names"},"54":{"body":"The type of a local variable can almost always be inferred by Move's type system. However, Move allows explicit type annotations that can be useful for readability, clarity, or debuggability. The syntax for adding a type annotation is: let x: T = e; // \"Variable x of type T is initialized to expression e\" Some examples of explicit type annotations: module 0x42::example { public struct S { f: u64, g: u64 } fun annotated() { let u: u8 = 0; let b: vector = b\"hello\"; let a: address = @0x0; let (x, y): (&u64, &mut u64) = (&0, &mut 1); let S { f, g: f2 }: S = S { f: 0, g: 1 }; }\n} Note that the type annotations must always be to the right of the pattern: // ERROR! should be let (x, y): (&u64, &mut u64) = ...\nlet (x: &u64, y: &mut u64) = (&0, &mut 1);","breadcrumbs":"Local Variables and Scopes » Type annotations","id":"54","title":"Type annotations"},"55":{"body":"In some cases, a local type annotation is required if the type system cannot infer the type. This commonly occurs when the type argument for a generic type cannot be inferred. For example: let _v1 = vector[]; // ERROR!\n// ^^^^^^^^ Could not infer this type. Try adding an annotation\nlet v2: vector = vector[]; // no error In a rarer case, the type system might not be able to infer a type for divergent code (where all the following code is unreachable). Both return and abort are expressions and can have any type. A loop has type () if it has a break (or T if has a break e where e: T), but if there is no break out of the loop, it could have any type. If these types cannot be inferred, a type annotation is required. For example, this code: let a: u8 = return ();\nlet b: bool = abort 0;\nlet c: signer = loop (); let x = return (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet y = abort 0; // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet z = loop (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation Adding type annotations to this code will expose other errors about dead code or unused local variables, but the example is still helpful for understanding this problem.","breadcrumbs":"Local Variables and Scopes » When annotations are necessary","id":"55","title":"When annotations are necessary"},"56":{"body":"let can introduce more than one local at a time using tuples. The locals declared inside the parenthesis are initialized to the corresponding values from the tuple. let () = ();\nlet (x0, x1) = (0, 1);\nlet (y0, y1, y2) = (0, 1, 2);\nlet (z0, z1, z2, z3) = (0, 1, 2, 3); The type of the expression must match the arity of the tuple pattern exactly. let (x, y) = (0, 1, 2); // ERROR!\nlet (x, y, z, q) = (0, 1, 2); // ERROR! You cannot declare more than one local with the same name in a single let. let (x, x) = 0; // ERROR! The mutability of the local variables declared can be mixed. let (mut x, y) = (0, 1);\nx = 1;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with tuples","id":"56","title":"Multiple declarations with tuples"},"57":{"body":"let can also introduce more than one local at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this: public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Similarly for positional structs public struct P(u64, u64) and let P(local1, local2) = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Here is a more complicated example: module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let Y { x1: X(f), x2 } = Y { x1: new_x(), x2: new_x() }; assert!(f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = Y { x1: new_x(), x2: new_x() }; assert!(f1 + f2 == 2, 42); }\n} Fields of structs can serve double duty, identifying the field to bind and the name of the variable. This is sometimes referred to as punning. let Y { x1, x2 } = e; is equivalent to: let Y { x1: x1, x2: x2 } = e; As shown with tuples, you cannot declare more than one local with the same name in a single let. let Y { x1: x, x2: x } = e; // ERROR! And as with tuples, the mutability of the local variables declared can be mixed. let Y { x1: mut x1, x2 } = e; Furthermore, the mutability of annotation can be applied to the punned fields. Giving the equivalent example let Y { mut x1, x2 } = e;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with structs","id":"57","title":"Multiple declarations with structs"},"58":{"body":"In the examples above for structs, the bound value in the let was moved, destroying the struct value and binding its fields. public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 In this scenario the struct value T { f1: 1, f2: 2 } no longer exists after the let. If you wish instead to not move and destroy the struct value, you can borrow each of its fields. For example: let t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &t;\n// local1: &u64\n// local2: &u64 And similarly with mutable references: let mut t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &mut t;\n// local1: &mut u64\n// local2: &mut u64 This behavior can also work with nested structs. module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let mut y = Y { x1: new_x(), x2: new_x() }; let Y { x1: X(f), x2 } = &y; assert!(*f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = &mut y; *f1 = *f1 + 1; *f2 = *f2 + 1; assert!(*f1 + *f2 == 4, 42); }\n}","breadcrumbs":"Local Variables and Scopes » Destructuring against references","id":"58","title":"Destructuring against references"},"59":{"body":"In let bindings, it is often helpful to ignore some values. Local variables that start with _ will be ignored and not introduce a new variable fun three(): (u64, u64, u64) { (0, 1, 2)\n} let (x1, _, z1) = three();\nlet (x2, _y, z2) = three();\nassert!(x1 + z1 == x2 + z2, 42); This can be necessary at times as the compiler will warn on unused local variables let (x1, y, z1) = three(); // WARNING!\n// ^ unused local 'y'","breadcrumbs":"Local Variables and Scopes » Ignoring Values","id":"59","title":"Ignoring Values"},"6":{"body":"Move supports six unsigned integer types: u8, u16, u32, u64, u128, and u256. Values of these types range from 0 to a maximum that depends on the size of the type. Type Value Range Unsigned 8-bit integer, u8 0 to 28 - 1 Unsigned 16-bit integer, u16 0 to 216 - 1 Unsigned 32-bit integer, u32 0 to 232 - 1 Unsigned 64-bit integer, u64 0 to 264 - 1 Unsigned 128-bit integer, u128 0 to 2128 - 1 Unsigned 256-bit integer, u256 0 to 2256 - 1","breadcrumbs":"Primitive Types » Integers » Integers","id":"6","title":"Integers"},"60":{"body":"All of the different structures in let can be combined! With that we arrive at this general grammar for let statements: let-binding → let pattern-or-list type-annotation opt > initializer opt > pattern-or-list → pattern | ( pattern-list ) > pattern-list → pattern , opt | pattern , pattern-list > type-annotation → : type initializer → = expression The general term for the item that introduces the bindings is a pattern . The pattern serves to both destructure data (possibly recursively) and introduce the bindings. The pattern grammar is as follows: pattern → local-variable | struct-type { field-binding-list } > field-binding-list → field-binding , opt | field-binding , > field-binding-list > field-binding → field | field : pattern A few concrete examples with this grammar applied: let (x, y): (u64, u64) = (0, 1);\n// ^ local-variable\n// ^ pattern\n// ^ local-variable\n// ^ pattern\n// ^ pattern-list\n// ^^^^ pattern-list\n// ^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^ type-annotation\n// ^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding let Foo { f, g: x } = Foo { f: 0, g: 1 };\n// ^^^ struct-type\n// ^ field\n// ^ field-binding\n// ^ field\n// ^ local-variable\n// ^ pattern\n// ^^^^ field-binding\n// ^^^^^^^ field-binding-list\n// ^^^^^^^^^^^^^^^ pattern\n// ^^^^^^^^^^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding","breadcrumbs":"Local Variables and Scopes » General let grammar","id":"60","title":"General let grammar"},"61":{"body":"","breadcrumbs":"Local Variables and Scopes » Mutations","id":"61","title":"Mutations"},"62":{"body":"After the local is introduced (either by let or as a function parameter), a mut local can be modified via an assignment: x = e Unlike let bindings, assignments are expressions. In some languages, assignments return the value that was assigned, but in Move, the type of any assignment is always (). (x = e: ()) Practically, assignments being expressions means that they can be used without adding a new expression block with braces ({...}). let x;\nif (cond) x = 1 else x = 2; The assignment uses the similar pattern syntax scheme as let bindings, but with absence of mut: module 0x42::example { public struct X { f: u64 } fun new_x(): X { X { f: 1 } } // Note: this example will complain about unused variables and assignments. fun example() { let (mut x, mut y, mut f, mut g) = (0, 0, 0, 0); (X { f }, X { f: x }) = (new_x(), new_x()); assert!(f + x == 2, 42); (x, y, f, _, g) = (0, 0, 0, 0, 0); }\n} Note that a local variable can only have one type, so the type of the local cannot change between assignments. let mut x;\nx = 0;\nx = false; // ERROR!","breadcrumbs":"Local Variables and Scopes » Assignments","id":"62","title":"Assignments"},"63":{"body":"In addition to directly modifying a local with assignment, a mut local can be modified via a mutable reference &mut. let mut x = 0;\nlet r = &mut x;\n*r = 1;\nassert!(x == 1, 42); This is particularly useful if either: (1) You want to modify different variables depending on some condition. let mut x = 0;\nlet mut y = 1;\nlet r = if (cond) &mut x else &mut y;\n*r = *r + 1; (2) You want another function to modify your local value. let mut x = 0;\nmodify_ref(&mut x); This sort of modification is how you modify structs and vectors! let mut v = vector[];\nvector::push_back(&mut v, 100);\nassert!(*vector::borrow(&v, 0) == 100, 42); For more details, see Move references .","breadcrumbs":"Local Variables and Scopes » Mutating through a reference","id":"63","title":"Mutating through a reference"},"64":{"body":"Any local declared with let is available for any subsequent expression, within that scope . Scopes are declared with expression blocks, {...}. Locals cannot be used outside of the declared scope. let x = 0;\n{ let y = 1;\n};\nx + y // ERROR!\n// ^ unbound local 'y' But, locals from an outer scope can be used in a nested scope. { let x = 0; { let y = x + 1; // valid }\n} Locals can be mutated in any scope where they are accessible. That mutation survives with the local, regardless of the scope that performed the mutation. let mut x = 0;\nx = x + 1;\nassert!(x == 1, 42);\n{ x = x + 1; assert!(x == 2, 42);\n};\nassert!(x == 2, 42);","breadcrumbs":"Local Variables and Scopes » Scopes","id":"64","title":"Scopes"},"65":{"body":"An expression block is a series of statements separated by semicolons (;). The resulting value of an expression block is the value of the last expression in the block. { let x = 1; let y = 1; x + y } In this example, the result of the block is x + y. A statement can be either a let declaration or an expression. Remember that assignments (x = e) are expressions of type (). { let x; let y = 1; x = 1; x + y } Function calls are another common expression of type (). Function calls that modify data are commonly used as statements. { let v = vector[]; vector::push_back(&mut v, 1); v } This is not just limited to () types---any expression can be used as a statement in a sequence! { let x = 0; x + 1; // value is discarded x + 2; // value is discarded b\"hello\"; // value is discarded\n} But! If the expression contains a resource (a value without the drop ability ), you will get an error. This is because Move's type system guarantees that any value that is dropped has the drop ability . (Ownership must be transferred or the value must be explicitly destroyed within its declaring module.) { let x = 0; Coin { value: x }; // ERROR!\n// ^^^^^^^^^^^^^^^^^ unused value without the `drop` ability x\n} If a final expression is not present in a block---that is, if there is a trailing semicolon ;, there is an implicit unit () value . Similarly, if the expression block is empty, there is an implicit unit () value. Both are equivalent { x = x + 1; 1 / x; } { x = x + 1; 1 / x; () } Similarly both are equivalent { } { () } An expression block is itself an expression and can be used anyplace an expression is used. (Note: The body of a function is also an expression block, but the function body cannot be replaced by another expression.) let my_vector: vector> = { let mut v = vector[]; vector::push_back(&mut v, b\"hello\"); vector::push_back(&mut v, b\"goodbye\"); v\n}; (The type annotation is not needed in this example and only added for clarity.)","breadcrumbs":"Local Variables and Scopes » Expression Blocks","id":"65","title":"Expression Blocks"},"66":{"body":"If a let introduces a local variable with a name already in scope, that previous variable can no longer be accessed for the rest of this scope. This is called shadowing . let x = 0;\nassert!(x == 0, 42); let x = 1; // x is shadowed\nassert!(x == 1, 42); When a local is shadowed, it does not need to retain the same type as before. let x = 0;\nassert!(x == 0, 42); let x = b\"hello\"; // x is shadowed\nassert!(x == b\"hello\", 42); After a local is shadowed, the value stored in the local still exists, but will no longer be accessible. This is important to keep in mind with values of types without the drop ability , as ownership of the value must be transferred by the end of the function. module 0x42::example { public struct Coin has store { value: u64 } fun unused_coin(): Coin { let x = Coin { value: 0 }; // ERROR!\n// ^ This local still contains a value without the `drop` ability x.value = 1; let x = Coin { value: 10 }; x\n// ^ Invalid return }\n} When a local is shadowed inside a scope, the shadowing only remains for that scope. The shadowing is gone once that scope ends. let x = 0;\n{ let x = 1; assert!(x == 1, 42);\n};\nassert!(x == 0, 42); Remember, locals can change type when they are shadowed. let x = 0;\n{ let x = b\"hello\"; assert!(x = b\"hello\", 42);\n};\nassert!(x == 0, 42);","breadcrumbs":"Local Variables and Scopes » Shadowing","id":"66","title":"Shadowing"},"67":{"body":"All local variables in Move can be used in two ways, either by move or copy. If one or the other is not specified, the Move compiler is able to infer whether a copy or a move should be used. This means that in all of the examples above, a move or a copy would be inserted by the compiler. A local variable cannot be used without the use of move or copy. copy will likely feel the most familiar coming from other programming languages, as it creates a new copy of the value inside of the variable to use in that expression. With copy, the local variable can be used more than once. let x = 0;\nlet y = copy x + 1;\nlet z = copy x + 2; Any value with the copy ability can be copied in this way, and will be copied implicitly unless a move is specified. move takes the value out of the local variable without copying the data. After a move occurs, the local variable is unavailable, even if the value's type has the copy ability . let x = 1;\nlet y = move x + 1;\n// ------ Local was moved here\nlet z = move x + 2; // Error!\n// ^^^^^^ Invalid usage of local 'x'\ny + z","breadcrumbs":"Local Variables and Scopes » Move and Copy","id":"67","title":"Move and Copy"},"68":{"body":"Move's type system will prevent a value from being used after it is moved. This is the same safety check described in let declaration that prevents local variables from being used before it is assigned a value.","breadcrumbs":"Local Variables and Scopes » Safety","id":"68","title":"Safety"},"69":{"body":"As mentioned above, the Move compiler will infer a copy or move if one is not indicated. The algorithm for doing so is quite simple: Any value with the copy ability is given a copy. Any reference (both mutable &mut and immutable &) is given a copy. Except under special circumstances where it is made a move for predictable borrow checker errors. This will happen once the reference is no longer used. Any other value is given a move. Given the structs public struct Foo has copy, drop, store { f: u64 }\npublic struct Coin has store { value: u64 } we have the following example let s = b\"hello\";\nlet foo = Foo { f: 0 };\nlet coin = Coin { value: 0 };\nlet coins = vector[Coin { value: 0 }, Coin { value: 0 }]; let s2 = s; // copy\nlet foo2 = foo; // copy\nlet coin2 = coin; // move\nlet coins2 = coin; // move let x = 0;\nlet b = false;\nlet addr = @0x42;\nlet x_ref = &x;\nlet coin_ref = &mut coin2; let x2 = x; // copy\nlet b2 = b; // copy\nlet addr2 = @0x42; // copy\nlet x_ref2 = x_ref; // copy\nlet coin_ref2 = coin_ref; // copy","breadcrumbs":"Local Variables and Scopes » Inference","id":"69","title":"Inference"},"7":{"body":"Literal values for these types are specified either as a sequence of digits (e.g.,112) or as hex literals, e.g., 0xFF. The type of the literal can optionally be added as a suffix, e.g., 112u8. If the type is not specified, the compiler will try to infer the type from the context where the literal is used. If the type cannot be inferred, it is assumed to be u64. Number literals can be separated by underscores for grouping and readability. (e.g.,1_234_5678, 1_000u128, 0xAB_CD_12_35). If a literal is too large for its specified (or inferred) size range, an error is reported.","breadcrumbs":"Primitive Types » Integers » Literals","id":"7","title":"Literals"},"70":{"body":"Move supports two equality operations == and !=","breadcrumbs":"Equality » Equality","id":"70","title":"Equality"},"71":{"body":"Syntax Operation Description == equal Returns true if the two operands have the same value, false otherwise != not equal Returns true if the two operands have different values, false otherwise","breadcrumbs":"Equality » Operations","id":"71","title":"Operations"},"72":{"body":"Both the equal (==) and not-equal (!=) operations only work if both operands are the same type 0 == 0; // `true`\n1u128 == 2u128; // `false`\nb\"hello\" != x\"00\"; // `true` Equality and non-equality also work over all user defined types! module 0x42::example { public struct S has copy, drop { f: u64, s: vector } fun always_true(): bool { let s = S { f: 0, s: b\"\" }; s == s } fun always_false(): bool { let s = S { f: 0, s: b\"\" }; s != s }\n} If the operands have different types, there is a type checking error 1u8 == 1u128; // ERROR!\n// ^^^^^ expected an argument of type 'u8'\nb\"\" != 0; // ERROR!\n// ^ expected an argument of type 'vector'","breadcrumbs":"Equality » Typing","id":"72","title":"Typing"},"73":{"body":"When comparing references , the type of the reference (immutable or mutable) does not matter. This means that you can compare an immutable & reference with a mutable one &mut of the same underlying type. let i = &0;\nlet m = &mut 1; i == m; // `false`\nm == i; // `false`\nm == m; // `true`\ni == i; // `true` The above is equivalent to applying an explicit freeze to each mutable reference where needed let i = &0;\nlet m = &mut 1; i == freeze(m); // `false`\nfreeze(m) == i; // `false`\nm == m; // `true`\ni == i; // `true` But again, the underlying type must be the same type let i = &0;\nlet s = &b\"\"; i == s; // ERROR!\n// ^ expected an argument of type '&u64'","breadcrumbs":"Equality » Typing with references","id":"73","title":"Typing with references"},"74":{"body":"Starting in Move 2024 edition, the == and != operators automatically borrow their operands if one of the operands is a reference and the other is not. This means that the following code works without any errors: let r = &0; // In all cases, `0` is automatically borrowed as `&0`\nr == 0; // `true`\n0 == r; // `true`\nr != 0; // `false`\n0 != r; // `false` This automatic borrow is always an immutable borrow.","breadcrumbs":"Equality » Automatic Borrowing","id":"74","title":"Automatic Borrowing"},"75":{"body":"Both == and != consume the value when comparing them. As a result, the type system enforces that the type must have drop . Recall that without the drop ability , ownership must be transferred by the end of the function, and such values can only be explicitly destroyed within their declaring module. If these were used directly with either equality == or non-equality !=, the value would be destroyed which would break drop ability safety guarantees! module 0x42::example { public struct Coin has store { value: u64 } fun invalid(c1: Coin, c2: Coin) { c1 == c2 // ERROR!\n// ^^ ^^ These assets would be destroyed! }\n} But, a programmer can always borrow the value first instead of directly comparing the value, and reference types have the drop ability . For example module 0x42::example { public struct Coin has store { value: u64 } fun swap_if_equal(c1: Coin, c2: Coin): (Coin, Coin) { let are_equal = &c1 == c2; // valid, note `c2` is automatically borrowed if (are_equal) (c2, c1) else (c1, c2) }\n}","breadcrumbs":"Equality » Restrictions","id":"75","title":"Restrictions"},"76":{"body":"While a programmer can compare any value whose type has drop , a programmer should often compare by reference to avoid expensive copies. let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(copy v1 == copy v2, 42);\n// ^^^^ ^^^^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(copy s1 == copy s2, 42);\n// ^^^^ ^^^^\nuse_two_foos(s1, s2); This code is perfectly acceptable (assuming Foo has drop ), just not efficient. The highlighted copies can be removed and replaced with borrows let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(&v1 == &v2, 42);\n// ^ ^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(&s1 == &s2, 42);\n// ^ ^\nuse_two_foos(s1, s2); The efficiency of the == itself remains the same, but the copys are removed and thus the program is more efficient.","breadcrumbs":"Equality » Avoid Extra Copies","id":"76","title":"Avoid Extra Copies"},"77":{"body":"return and abort are two control flow constructs that end execution, one for the current function and one for the entire transaction. More information on return can be found in the linked section","breadcrumbs":"Abort and Assert » Abort and Assert","id":"77","title":"Abort and Assert"},"78":{"body":"abort is an expression that takes one argument: an abort code of type u64. For example: abort 42 The abort expression halts execution the current function and reverts all changes made to state by the current transaction (note though that this guarantee must be upheld by the adapter of the specific deployment of Move). There is no mechanism for \"catching\" or otherwise handling an abort. Luckily, in Move transactions are all or nothing, meaning any changes to storage are made all at once only if the transaction succeeds. For Sui, this means no objects are modified. Because of this transactional commitment of changes, after an abort there is no need to worry about backing out changes. While this approach is lacking in flexibility, it is incredibly simple and predictable. Similar to return , abort is useful for exiting control flow when some condition cannot be met. In this example, the function will pop two items off of the vector, but will abort early if the vector does not have two items use std::vector; fun pop_twice(v: &mut vector): (T, T) { if (vector::length(v) < 2) abort 42; (vector::pop_back(v), vector::pop_back(v))\n} This is even more useful deep inside a control-flow construct. For example, this function checks that all numbers in the vector are less than the specified bound. And aborts otherwise use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); if (cur > bound) abort 42; i = i + 1; }\n}","breadcrumbs":"Abort and Assert » abort","id":"78","title":"abort"},"79":{"body":"assert is a builtin, macro operation provided by the Move compiler. It takes two arguments, a condition of type bool and a code of type u64 assert!(condition: bool, code: u64) Since the operation is a macro, it must be invoked with the !. This is to convey that the arguments to assert are call-by-expression. In other words, assert is not a normal function and does not exist at the bytecode level. It is replaced inside the compiler with if (condition) () else abort code assert is more commonly used than just abort by itself. The abort examples above can be rewritten using assert use std::vector;\nfun pop_twice(v: &mut vector): (T, T) { assert!(vector::length(v) >= 2, 42); // Now uses 'assert' (vector::pop_back(v), vector::pop_back(v))\n} and use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); assert!(cur <= bound, 42); // Now uses 'assert' i = i + 1; }\n} Note that because the operation is replaced with this if-else, the argument for the code is not always evaluated. For example: assert!(true, 1 / 0) Will not result in an arithmetic error, it is equivalent to if (true) () else (1 / 0) So the arithmetic expression is never evaluated!","breadcrumbs":"Abort and Assert » assert","id":"79","title":"assert"},"8":{"body":"// literals with explicit annotations;\nlet explicit_u8 = 1u8;\nlet explicit_u16 = 1u16;\nlet explicit_u32 = 1u32;\nlet explicit_u64 = 2u64;\nlet explicit_u128 = 3u128;\nlet explicit_u256 = 1u256;\nlet explicit_u64_underscored = 154_322_973u64; // literals with simple inference\nlet simple_u8: u8 = 1;\nlet simple_u16: u16 = 1;\nlet simple_u32: u32 = 1;\nlet simple_u64: u64 = 2;\nlet simple_u128: u128 = 3;\nlet simple_u256: u256 = 1; // literals with more complex inference\nlet complex_u8 = 1; // inferred: u8\n// right hand argument to shift must be u8\nlet _unused = 10 << complex_u8; let x: u8 = 38;\nlet complex_u8 = 2; // inferred: u8\n// arguments to `+` must have the same type\nlet _unused = x + complex_u8; let complex_u128 = 133_876; // inferred: u128\n// inferred from function argument type\nfunction_that_takes_u128(complex_u128); // literals can be written in hex\nlet hex_u8: u8 = 0x1;\nlet hex_u16: u16 = 0x1BAE;\nlet hex_u32: u32 = 0xDEAD80;\nlet hex_u64: u64 = 0xCAFE;\nlet hex_u128: u128 = 0xDEADBEEF;\nlet hex_u256: u256 = 0x1123_456A_BCDE_F;","breadcrumbs":"Primitive Types » Integers » Examples","id":"8","title":"Examples"},"80":{"body":"When using abort, it is important to understand how the u64 code will be used by the VM. Normally, after successful execution, the Move VM, and the adapter for the specific deployment, determine the changes made to storage. If an abort is reached, the VM will instead indicate an error. Included in that error will be two pieces of information: The module that produced the abort (package/address value and module name) The abort code. For example module 0x2::example { public fun aborts() { abort 42 }\n} module 0x3::invoker { public fun always_aborts() { 0x2::example::aborts() }\n} If a transaction, such as the function always_aborts above, calls 0x2::example::aborts, the VM would produce an error that indicated the module 0x2::example and the code 42. This can be useful for having multiple aborts being grouped together inside a module. In this example, the module has two separate error codes used in multiple functions module 0x42::example { use std::vector; const EEmptyVector: u64 = 0; const EIndexOutOfBounds: u64 = 1; // move i to j, move j to k, move k to i public fun rotate_three(v: &mut vector, i: u64, j: u64, k: u64) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(k < n, EIndexOutOfBounds); vector::swap(v, i, k); vector::swap(v, j, k); } public fun remove_twice(v: &mut vector, i: u64, j: u64): (T, T) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(i > j, EIndexOutOfBounds); (vector::remove(v, i), vector::remove(v, j)) }\n}","breadcrumbs":"Abort and Assert » Abort codes in the Move VM","id":"80","title":"Abort codes in the Move VM"},"81":{"body":"The abort i expression can have any type! This is because both constructs break from the normal control flow, so they never need to evaluate to the value of that type. The following are not useful, but they will type check let y: address = abort 0; This behavior can be helpful in situations where you have a branching instruction that produces a value on some branches, but not all. For example: let b = if (x == 0) false else if (x == 1) true else abort 42;\n// ^^^^^^^^ `abort 42` has type `bool`","breadcrumbs":"Abort and Assert » The type of abort","id":"81","title":"The type of abort"},"82":{"body":"Move offers multiple constructs for control flow based on boolean expressions , including common programming constructs such as if expressions and while and for loops, along with advanced control flow structures including labels for loops and escapable named blocks. It also supports more more complex constructs based on structural pattern matching. Conditional Expressions Pattern Matching Loops Labeled Control FLow","breadcrumbs":"Control Flow » Control Flow","id":"82","title":"Control Flow"},"83":{"body":"An if expression specifies that some code should only be evaluated if a certain condition is true. For example: if (x > 5) x = x - 5 The condition must be an expression of type bool. An if expression can optionally include an else clause to specify another expression to evaluate when the condition is false. if (y <= 10) y = y + 1 else y = 10 Either the \"true\" branch or the \"false\" branch will be evaluated, but not both. Either branch can be a single expression or an expression block. The conditional expressions may produce values so that the if expression has a result. let z = if (x < 100) x else 100; The expressions in the true and false branches must have compatible types. For example: // x and y must be u64 integers\nlet maximum: u64 = if (x > y) x else y; // ERROR! branches different types\nlet z = if (maximum < 10) 10u8 else 100u64; // ERROR! branches different types, as default false-branch is () not u64\nif (maximum >= 10) maximum; If the else clause is not specified, the false branch defaults to the unit value. The following are equivalent: if (condition) true_branch // implied default: else ()\nif (condition) true_branch else () Commonly, if expressions are used in conjunction with expression blocks . let maximum = if (x > y) x else y;\nif (maximum < 10) { x = x + 10; y = y + 10;\n} else if (x >= 10 && y >= 10) { x = x - 10; y = y - 10;\n}","breadcrumbs":"Control Flow » Conditional Expressions » Conditional if Expressions","id":"83","title":"Conditional if Expressions"},"84":{"body":"if-expression → if ( expression ) expression else-clause opt > else-clause → else expression","breadcrumbs":"Control Flow » Conditional Expressions » Grammar for Conditionals","id":"84","title":"Grammar for Conditionals"},"85":{"body":"Many programs require iteration over values, and Move provides while and loop forms to allow you to write code in these situations. In addition, you can also modify control flow of these loops during execution by using break (to exit the loop) and continue (to skip the remainder of this iteration and return to the top of the control flow structure).","breadcrumbs":"Control Flow » Loops » Loop Constructs in Move","id":"85","title":"Loop Constructs in Move"},"86":{"body":"The while construct repeats the body (an expression of type unit) until the condition (an expression of type bool) evaluates to false. Here is an example of simple while loop that computes the sum of the numbers from 1 to n: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; while (i <= n) { sum = sum + i; i = i + 1 }; sum\n} Infinite while loops are also allowed: fun foo() { while (true) { }\n}","breadcrumbs":"Control Flow » Loops » while Loops","id":"86","title":"while Loops"},"87":{"body":"In Move, while loops can use break to exit early. For example, suppose we were looking for the position of a value in a vector, and would like to break if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; let mut found = false; while (i < size) { if (vector::borrow(values, i) == &target_value) { found = true; break }; i = i + 1 }; if (found) { Option::Some(i) } else { Option::None }\n} Here, if the borrowed vector value is equal to our target value, we set the found flag to true and then call break, which will cause the program to exit the loop. Finally, note that break for while loops cannot take a value: while loops always return the unit type () and thus break does, too.","breadcrumbs":"Control Flow » Loops » Using break Inside of while Loops","id":"87","title":"Using break Inside of while Loops"},"88":{"body":"Similar to break, Move's while loops can invoke continue to skip over part of the loop body. This allows us to skip part of a computation if a condition is not met, such as in the following example: fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; while (i < size) { let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n} This code will iterate over the provided vector. For each entry, if that entry is an even number, it will add it to the even_sum. If it is not, however, it will call continue, skipping the sum operation and returning to the while loop conditional check.","breadcrumbs":"Control Flow » Loops » Using continue Inside of while Loops","id":"88","title":"Using continue Inside of while Loops"},"89":{"body":"The loop expression repeats the loop body (an expression with type ()) until it hits a break: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; loop { i = i + 1; if (i >= n) break; sum = sum + i; }; sum\n} Without a break, the loop will continue forever. In the example below, the program will run forever because the loop does not have a break: fun foo() { let mut i = 0; loop { i = i + 1 }\n} Here is an example that uses loop to write the sum function: fun sum(n: u64): u64 { let sum = 0; let i = 0; loop { i = i + 1; if (i > n) break; sum = sum + i }; sum\n}","breadcrumbs":"Control Flow » Loops » loop Expressions","id":"89","title":"loop Expressions"},"9":{"body":"","breadcrumbs":"Primitive Types » Integers » Operations","id":"9","title":"Operations"},"90":{"body":"Unlike while loops, which always return (), a loop may return a value using break. In doing so, the overall loop expression evaluates to a value of that type. For example, we can rewrite find_position from above using loop and break, immediately returning the index if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; loop { if (vector::borrow(values, i) == &target_value) { break Option::Some(i) } else if (i >= size) { break Option::None }; i = i + 1; }\n} This loop will break with an option result, and, as the last expression in the function body, will produce that value as the final function result.","breadcrumbs":"Control Flow » Loops » Using break with Values in loop","id":"90","title":"Using break with Values in loop"},"91":{"body":"As you might expect, continue can also be used inside a loop. Here is the previous sum_even function rewritten using loop with break and continue instead of while. fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; loop { if (i >= size) break; let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n}","breadcrumbs":"Control Flow » Loops » Using continue Inside of loop Expressions","id":"91","title":"Using continue Inside of loop Expressions"},"92":{"body":"In Move, loops are typed expressions. A while expression always has type (). let () = while (i < 10) { i = i + 1 }; If a loop contains a break, the expression has the type of the break. A break with no value has the unit type (). (loop { if (i < 10) i = i + 1 else break }: ());\nlet () = loop { if (i < 10) i = i + 1 else break }; let x: u64 = loop { if (i < 10) i = i + 1 else break 5 };\nlet x: u64 = loop { if (i < 10) { i = i + 1; continue} else break 5 }; In addition, if a loop contains multiple breaks, they must all return the same type: // invalid -- first break returns (), second returns 5\nlet x: u64 = loop { if (i < 10) break else break 5 }; If loop does not have a break, loop can have any type much like return, abort, break, and continue. (loop (): u64);\n(loop (): address);\n(loop (): &vector>); If you need even more-precise control flow, such as breaking out of nested loops, the next chapter presents the use of labeled control flow in Move.","breadcrumbs":"Control Flow » Loops » The Type of while and loop","id":"92","title":"The Type of while and loop"},"93":{"body":"Move supports labeled control flow, allowing you to define and transfer control to specific labels in a function. For example, we can nest two loops and use break and continue with those labels to precisely specify control flow. You can prefix any loop or while form with a 'label: form to allow breaking or continuing directly there. To demonstrate this behavior, consider a function that takes nested vectors of numbers (i.e., vector>) to sum against some threshold, which behaves as follows: If the sum of all the numbers are under the threshold, return that sum. If adding a number to the current sum would surpass the threshold, return the current sum. We can write this by iterating over the vector of vectors as nested loops and labelling the outer one. If any addition in the inner loop would push us over the threshold, we can use break with the outer label to escape both loops at once: fun sum_until_threshold(input: &vector>, threshold: u64): u64 { let mut sum = 0; let mut i = 0; let input_size = vector::length(vec); 'outer: loop { // breaks to outer since it is the closest enclosing loop if (i >= input_size) break sum; let vec = vector::borrow(input, i); let size = vector::length(vec); let mut j = 0; while (j < size) { let v_entry = *vector::borrow(vec, j); if (sum + v_entry < threshold) { sum = sum + v_entry; } else { // the next element we saw would break the threshold, // so we return the current sum break 'outer sum }; j = j + 1; }; i = i + 1; }\n} These sorts of labels can also be used with a nested loop form, providing precise control in larger bodies of code. For example, if we were processing a large table where each entry required iteration that might see us continuing the inner or outer loop, we could express that code using labels: 'outer: loop { ... 'inner: while (cond) { ... if (cond0) { break 'outer value }; ... if (cond1) { continue 'inner } else if (cond2) { continue 'outer }; ... } ...\n}","breadcrumbs":"Control Flow » Labeled Control FLow » Labeled Control Flow","id":"93","title":"Labeled Control Flow"},"94":{"body":"A match expression is a powerful control structure that allows you to compare a value against a series of patterns and then execute code based on which pattern matches first. Patterns can be anything from simple literals to complex, nested struct and enum definitions. As opposed to if expressions, which change control flow based on a bool-typed test expression, a match expression operates over a value of any type and selects one of many arms. A match expression can match Move values as well as mutable or immutable references, binding sub-patterns accordingly. For example: fun run(x: u64): u64 { match (x) { 1 => 2, 2 => 3, x => x, }\n} run(1); // returns 2\nrun(2); // returns 3\nrun(3); // returns 3\nrun(0); // returns 0","breadcrumbs":"Control Flow » Patterm Matching » Pattern Matching","id":"94","title":"Pattern Matching"},"95":{"body":"A match takes an expression and a non-empty series of match arms delimited by commas. Each match arm consists of a pattern (p), an optional guard (if (g) where g is an expression of type bool), an arrow (=>), and an arm expression (e) to execute when the pattern matches. For example, match (expression) { pattern1 if (guard_expression) => expression1, pattern2 => expression2, pattern3 => { expression3, expression4, ... },\n} Match arms are checked in order from top to bottom, and the first pattern that matches (with a guard expression, if present, that evaluates to true) will be executed. Note that the series of match arms within a match must be exhaustive, meaning that every possible value of the type being matched must be covered by one of the patterns in the match. If the series of match arms is not exhaustive, the compiler will raise an error.","breadcrumbs":"Control Flow » Patterm Matching » match Syntax","id":"95","title":"match Syntax"},"96":{"body":"A pattern is matched by a value if the value is equal to the pattern, and where variables and wildcards (e.g., x, y, _, or ..) are \"equal\" to anything. Patterns are used to match values. Patterns can be Pattern Description Literal A literal value, such as 1, true, @0x1 Constant A constant value, e.g., MyConstant Variable A variable, e.g., x, y, z Wildcard A wildcard, e.g., _ Constructor A constructor pattern, e.g., MyStruct { x, y }, MyEnum::Variant(x) At-pattern An at-pattern, e.g., x @ MyEnum::Variant(..) Or-pattern An or-pattern, e.g., MyEnum::Variant(..) \\| MyEnum::OtherVariant(..) Multi-arity wildcard A multi-arity wildcard, e.g., MyEnum::Variant(..) Mutable-binding A mutable-binding pattern, e.g., mut x Patterns in Move have the following grammar: pattern = | | | _ | C { : inner-pattern [\",\" : inner-pattern]* } // where C is a struct or enum variant | C ( inner-pattern [\",\" inner-pattern]* ... ) // where C is a struct or enum variant | C // where C is an enum variant | @ top-level-pattern | pattern | pattern | mut \ninner-pattern = pattern | .. // multi-arity wildcard Some examples of patterns are: // literal pattern\n1 // constant pattern\nMyConstant // variable pattern\nx // wildcard pattern\n_ // constructor pattern that matches `MyEnum::Variant` with the fields `1` and `true`\nMyEnum::Variant(1, true) // constructor pattern that matches `MyEnum::Variant` with the fields `1` and binds the second field's value to `x`\nMyEnum::Variant(1, x) // multi-arity wildcard pattern that matches multiple fields within the `MyEnum::Variant` variant\nMyEnum::Variant(..) // constructor pattern that matches the `x` field of `MyStruct` and binds the `y` field to `other_variable`\nMyStruct { x, y: other_variable } // at-pattern that matches `MyEnum::Variant` and binds the entire value to `x`\nx @ MyEnum::Variant(..) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant`\nMyEnum::Variant(..) | MyEnum::OtherVariant(..) // same as the above or-pattern, but with explicit wildcards\nMyEnum::Variant(_, _) | MyEnum::OtherVariant(_, _) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant` and binds the u64 field to `x`\nMyEnum::Variant(x, _) | MyEnum::OtherVariant(_, x) // constructor pattern that matches `OtherEnum::V` and if the inner `MyEnum` is `MyEnum::Variant`\nOtherEnum::V(MyEnum::Variant(..))","breadcrumbs":"Control Flow » Patterm Matching » Pattern Syntax","id":"96","title":"Pattern Syntax"},"97":{"body":"Patterns that contain variables bind them to the match subject or subject subcomponent being matched. These variables can then be used either in any match guard expressions, or on the right-hand side of the match arm. For example: public struct Wrapper(u64) fun add_under_wrapper_unless_equal(wrapper: Wrapper, x: u64): u64 { match (wrapper) { Wrapper(y) if (y == x) => Wrapper(y), Wrapper(y) => y + x, }\n}\nadd_under_wrapper_unless_equal(Wrapper(1), 2); // returns Wrapper(3)\nadd_under_wrapper_unless_equal(Wrapper(2), 3); // returns Wrapper(5)\nadd_under_wrapper_unless_equal(Wrapper(3), 3); // returns Wrapper(3)","breadcrumbs":"Control Flow » Patterm Matching » Patterns and Variables","id":"97","title":"Patterns and Variables"},"98":{"body":"Patterns can be nested, but patterns can also be combined using the or operator (|). For example, p1 | p2 succeeds if either pattern p1 or p2 matches the subject. This pattern can occur anywhere -- either as a top-level pattern or a sub-pattern within another pattern. public enum MyEnum has drop { Variant(u64, bool), OtherVariant(bool, u64),\n} fun test_or_pattern(x: u64): u64 { match (x) { MyEnum::Variant(1 | 2 | 3, true) | MyEnum::OtherVariant(true, 1 | 2 | 3) => 1, MyEnum::Variant(8, true) | MyEnum::OtherVariant(_, 6 | 7) => 2, _ => 3, }\n} test_or_pattern(MyEnum::Variant(3, true)); // returns 1\ntest_or_pattern(MyEnum::OtherVariant(true, 2)); // returns 1\ntest_or_pattern(MyEnum::Variant(8, true)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 7)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 80)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Combining Patterns","id":"98","title":"Combining Patterns"},"99":{"body":"The mut and .. patterns also have specific conditions placed on when, where, and how they can be used, as detailed in Limitations on Specific Patterns . At a high level, the mut modifier can only be used on variable patterns, and the .. pattern can only be used once within a constructor pattern -- and not as a top-level pattern. The following is an invalid usage of the .. pattern because it is used as a top-level pattern: match (x) { .. => 1, // ERROR: `..` pattern can only be used within a constructor pattern\n} match (x) { MyStruct(.., ..) => 1, // ERROR: ^^ `..` pattern can only be used once within a constructor pattern\n}","breadcrumbs":"Control Flow » Patterm Matching » Restrictions on Some Patterns","id":"99","title":"Restrictions on Some Patterns"}},"length":243,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"103":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.8284271247461903},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.6457513110645907},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":3.605551275463989},"178":{"tf":3.4641016151377544},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.4641016151377544},"79":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.449489742783178},"217":{"tf":4.358898943540674},"218":{"tf":3.605551275463989},"219":{"tf":3.3166247903554},"23":{"tf":3.4641016151377544},"234":{"tf":1.0},"24":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.3166247903554},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":14,"docs":{"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"33":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.7320508075688772},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":3,"docs":{"30":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.6457513110645907},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":40,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.4142135623730951},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":18,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.8284271247461903},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.123105625617661},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.0},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":3.872983346207417},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.449489742783178}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.8284271247461903},"165":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.0},"242":{"tf":3.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.449489742783178},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.1622776601683795},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":2.8284271247461903},"137":{"tf":4.47213595499958},"138":{"tf":2.23606797749979},"139":{"tf":2.6457513110645907},"140":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":3.0},"144":{"tf":2.0},"177":{"tf":3.3166247903554},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.605551275463989},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.0},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.4641016151377544},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":3.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.0},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":4.242640687119285},"242":{"tf":5.5677643628300215},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":3.7416573867739413},"112":{"tf":3.3166247903554},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":2.6457513110645907},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.6457513110645907},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.082762530298219},"2":{"tf":1.0},"200":{"tf":4.58257569495584},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.0},"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"210":{"tf":3.1622776601683795},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":15,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"161":{"tf":2.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":2.8284271247461903},"83":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.449489742783178},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"43":{"tf":1.0},"7":{"tf":2.6457513110645907},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":30,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"68":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":3.0},"232":{"tf":3.4641016151377544},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":2.0},"89":{"tf":3.0},"90":{"tf":2.6457513110645907},"91":{"tf":2.0},"92":{"tf":3.872983346207417},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":4.358898943540674},"102":{"tf":3.0},"103":{"tf":2.8284271247461903},"104":{"tf":5.291502622129181},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":5.744562646538029},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"200":{"tf":2.449489742783178},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":2.8284271247461903},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"199":{"tf":2.449489742783178},"2":{"tf":1.7320508075688772},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.1622776601683795},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.605551275463989},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.449489742783178},"217":{"tf":3.872983346207417},"218":{"tf":3.605551275463989},"219":{"tf":2.8284271247461903},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"26":{"tf":1.7320508075688772},"3":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.449489742783178},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.8284271247461903},"214":{"tf":3.3166247903554},"215":{"tf":3.4641016151377544},"216":{"tf":2.23606797749979},"217":{"tf":3.3166247903554},"218":{"tf":4.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":3.3166247903554},"224":{"tf":1.0},"225":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":4.795831523312719},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":1.7320508075688772},"143":{"tf":4.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.0},"96":{"tf":6.082762530298219},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":3.605551275463989}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.477225575051661}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":4.898979485566356},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":2.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":4.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.3166247903554},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"121":{"tf":3.4641016151377544},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":16,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"241":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.1622776601683795},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.3166247903554},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.0},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":3.605551275463989},"124":{"tf":2.449489742783178},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":3.3166247903554},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":2.0},"133":{"tf":3.3166247903554},"134":{"tf":2.8284271247461903},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"177":{"tf":3.872983346207417},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.0},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.23606797749979},"47":{"tf":3.1622776601683795}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":44,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":2.8284271247461903},"227":{"tf":4.358898943540674},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":3.3166247903554},"233":{"tf":2.0},"234":{"tf":3.605551275463989},"235":{"tf":4.0},"236":{"tf":2.23606797749979},"237":{"tf":2.6457513110645907},"238":{"tf":5.830951894845301},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":119,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.449489742783178},"100":{"tf":4.242640687119285},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.6457513110645907},"163":{"tf":5.291502622129181},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.1622776601683795},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"178":{"tf":4.358898943540674},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"210":{"tf":3.0},"211":{"tf":3.3166247903554},"212":{"tf":3.3166247903554},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"52":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":20,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":5.0990195135927845},"185":{"tf":1.7320508075688772},"186":{"tf":3.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.656854249492381},"2":{"tf":1.4142135623730951},"200":{"tf":4.58257569495584},"201":{"tf":2.8284271247461903},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.7320508075688772},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.605551275463989},"143":{"tf":4.0},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":1.4142135623730951},"29":{"tf":3.1622776601683795},"30":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.23606797749979},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.449489742783178},"124":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.23606797749979}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.0},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":3.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"171":{"tf":2.6457513110645907},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":3.7416573867739413},"178":{"tf":3.7416573867739413},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.6457513110645907},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.6457513110645907},"217":{"tf":4.47213595499958},"218":{"tf":3.7416573867739413},"219":{"tf":3.4641016151377544},"23":{"tf":3.7416573867739413},"234":{"tf":1.0},"24":{"tf":3.7416573867739413},"242":{"tf":1.4142135623730951},"25":{"tf":3.0},"26":{"tf":3.4641016151377544},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":16,"docs":{"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.1622776601683795},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.0},"33":{"tf":1.0},"54":{"tf":2.6457513110645907},"55":{"tf":3.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":2.0},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":6,"docs":{"30":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":3.3166247903554},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"74":{"tf":2.23606797749979},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.8284271247461903},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.1622776601683795},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":42,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"215":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.23606797749979},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.449489742783178},"128":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.6457513110645907}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":2.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":2.0}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":17,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":40,"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},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.7320508075688772},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.242640687119285},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.1622776601683795},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.6457513110645907}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.23606797749979},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"165":{"tf":1.7320508075688772},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.8284271247461903},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.1622776601683795},"242":{"tf":3.1622776601683795},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.6457513110645907},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.3166247903554},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":3.0},"137":{"tf":4.69041575982343},"138":{"tf":2.449489742783178},"139":{"tf":2.8284271247461903},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":2.6457513110645907},"143":{"tf":3.3166247903554},"144":{"tf":2.449489742783178},"177":{"tf":3.4641016151377544},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.7416573867739413},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.23606797749979},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.123105625617661},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.23606797749979},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":3.0},"131":{"tf":2.8284271247461903},"132":{"tf":3.1622776601683795},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":34,"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},"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.23606797749979},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":4.47213595499958},"242":{"tf":5.744562646538029},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":3.4641016151377544},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":2.0},"118":{"tf":3.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":2.8284271247461903},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.449489742783178},"157":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.23606797749979},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.164414002968976},"2":{"tf":1.0},"200":{"tf":4.69041575982343},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":3.0},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":2.0}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.8284271247461903},"209":{"tf":1.7320508075688772},"210":{"tf":3.3166247903554},"211":{"tf":2.23606797749979},"212":{"tf":2.0},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.4641016151377544},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":18,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":2.449489742783178},"16":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":3.1622776601683795},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.3166247903554}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":1.7320508075688772},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":35,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.3166247903554},"231":{"tf":3.3166247903554},"232":{"tf":3.7416573867739413},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":3.0},"91":{"tf":2.449489742783178},"92":{"tf":4.123105625617661},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":28,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":4.58257569495584},"102":{"tf":3.3166247903554},"103":{"tf":3.0},"104":{"tf":5.385164807134504},"105":{"tf":3.4641016151377544},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":2.0},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":5.830951894845301},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":3.872983346207417},"96":{"tf":3.3166247903554},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.449489742783178},"2":{"tf":2.0},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":3.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":3.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.7416573867739413},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":2.0},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.6457513110645907},"217":{"tf":4.0},"218":{"tf":3.7416573867739413},"219":{"tf":3.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"3":{"tf":3.7416573867739413},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.6457513110645907},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"45":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":2.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":3.1622776601683795},"214":{"tf":3.605551275463989},"215":{"tf":3.605551275463989},"216":{"tf":2.449489742783178},"217":{"tf":3.4641016151377544},"218":{"tf":4.123105625617661},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":3.4641016151377544},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":4.898979485566356},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"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},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":3.0},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":2.0},"143":{"tf":4.123105625617661},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.0},"96":{"tf":6.164414002968976},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":3.7416573867739413}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.5677643628300215}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.449489742783178},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":5.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":51,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":4.242640687119285},"37":{"tf":3.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"63":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.4142135623730951},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":3.0},"117":{"tf":1.7320508075688772},"120":{"tf":2.23606797749979},"121":{"tf":3.605551275463989},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":3.0},"241":{"tf":1.4142135623730951},"49":{"tf":2.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":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":2.0},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.23606797749979},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.3166247903554}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.3166247903554},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.4641016151377544},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.1622776601683795},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":3.0},"123":{"tf":3.872983346207417},"124":{"tf":2.6457513110645907},"125":{"tf":3.4641016151377544},"126":{"tf":2.6457513110645907},"127":{"tf":1.7320508075688772},"128":{"tf":3.605551275463989},"129":{"tf":2.8284271247461903},"130":{"tf":3.3166247903554},"131":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":3.605551275463989},"134":{"tf":3.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.8284271247461903},"169":{"tf":2.23606797749979},"177":{"tf":4.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.1622776601683795},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.449489742783178},"47":{"tf":3.3166247903554}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":2.8284271247461903},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":3.1622776601683795},"227":{"tf":4.58257569495584},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":2.449489742783178},"231":{"tf":2.449489742783178},"232":{"tf":3.4641016151377544},"233":{"tf":2.23606797749979},"234":{"tf":3.872983346207417},"235":{"tf":4.242640687119285},"236":{"tf":2.449489742783178},"237":{"tf":3.0},"238":{"tf":6.0},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":141,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.6457513110645907},"100":{"tf":4.358898943540674},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"119":{"tf":1.0},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":2.6457513110645907},"162":{"tf":2.8284271247461903},"163":{"tf":5.385164807134504},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.3166247903554},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":2.449489742783178},"177":{"tf":1.0},"178":{"tf":4.58257569495584},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"21":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":3.4641016151377544},"212":{"tf":3.4641016151377544},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":2.8284271247461903},"52":{"tf":1.0},"54":{"tf":3.0},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":2.8284271247461903},"73":{"tf":2.6457513110645907},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":31,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":2.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"161":{"tf":1.0},"207":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":5.196152422706632},"185":{"tf":2.0},"186":{"tf":3.1622776601683795},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":1.4142135623730951},"192":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"200":{"tf":4.69041575982343},"201":{"tf":3.0},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.7416573867739413},"143":{"tf":4.123105625617661},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":3.4641016151377544},"30":{"tf":1.7320508075688772},"31":{"tf":3.4641016151377544},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.449489742783178},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.449489742783178}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"4":{"df":1,"docs":{"232":{"tf":1.0}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"s":{"df":7,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"177":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"156":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"12":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"239":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"209":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"173":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"190":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"38":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}}},"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"161":{"tf":1.0},"6":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"175":{"tf":1.0},"182":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"167":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"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}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"0":{"tf":1.0},"223":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"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":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"133":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"191":{"tf":1.0},"242":{"tf":1.0}}}},"n":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"193":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"181":{"tf":1.0},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"184":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}},"t":{"df":3,"docs":{"226":{"tf":1.0},"235":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"162":{"tf":1.0},"194":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0}}}},"df":14,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"149":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["introduction.html#the-move-reference","modules.html#modules","modules.html#syntax","modules.html#names","modules.html#members","primitive-types.html#primitive-types","primitive-types/integers.html#integers","primitive-types/integers.html#literals","primitive-types/integers.html#examples","primitive-types/integers.html#operations","primitive-types/integers.html#arithmetic","primitive-types/integers.html#bitwise","primitive-types/integers.html#bit-shifts","primitive-types/integers.html#comparisons","primitive-types/integers.html#equality","primitive-types/integers.html#casting","primitive-types/integers.html#ownership","primitive-types/bool.html#bool","primitive-types/bool.html#literals","primitive-types/bool.html#operations","primitive-types/bool.html#logical","primitive-types/bool.html#control-flow","primitive-types/bool.html#ownership","primitive-types/address.html#address","primitive-types/address.html#addresses-and-their-syntax","primitive-types/address.html#named-addresses","primitive-types/address.html#examples","primitive-types/vector.html#vector","primitive-types/vector.html#literals","primitive-types/vector.html#general-vector-literals","primitive-types/vector.html#vector-literals","primitive-types/vector.html#operations","primitive-types/vector.html#example","primitive-types/vector.html#destroying-and-copying-vectors","primitive-types/vector.html#ownership","primitive-types/references.html#references","primitive-types/references.html#reference-operators","primitive-types/references.html#reading-and-writing-through-references","primitive-types/references.html#freeze-inference","primitive-types/references.html#subtyping","primitive-types/references.html#ownership","primitive-types/references.html#references-cannot-be-stored","primitive-types/tuples.html#tuples-and-unit","primitive-types/tuples.html#literals","primitive-types/tuples.html#examples","primitive-types/tuples.html#operations","primitive-types/tuples.html#destructuring","primitive-types/tuples.html#subtyping","primitive-types/tuples.html#ownership","variables.html#local-variables-and-scope","variables.html#declaring-local-variables","variables.html#let-bindings","variables.html#variables-must-be-assigned-before-use","variables.html#valid-variable-names","variables.html#type-annotations","variables.html#when-annotations-are-necessary","variables.html#multiple-declarations-with-tuples","variables.html#multiple-declarations-with-structs","variables.html#destructuring-against-references","variables.html#ignoring-values","variables.html#general-let-grammar","variables.html#mutations","variables.html#assignments","variables.html#mutating-through-a-reference","variables.html#scopes","variables.html#expression-blocks","variables.html#shadowing","variables.html#move-and-copy","variables.html#safety","variables.html#inference","equality.html#equality","equality.html#operations","equality.html#typing","equality.html#typing-with-references","equality.html#automatic-borrowing","equality.html#restrictions","equality.html#avoid-extra-copies","abort-and-assert.html#abort-and-assert","abort-and-assert.html#abort","abort-and-assert.html#assert","abort-and-assert.html#abort-codes-in-the-move-vm","abort-and-assert.html#the-type-of-abort","control-flow.html#control-flow","control-flow/conditionals.html#conditional-if-expressions","control-flow/conditionals.html#grammar-for-conditionals","control-flow/loops.html#loop-constructs-in-move","control-flow/loops.html#while-loops","control-flow/loops.html#using-break-inside-of-while-loops","control-flow/loops.html#using-continue-inside-of-while-loops","control-flow/loops.html#loop-expressions","control-flow/loops.html#using-break-with-values-in-loop","control-flow/loops.html#using-continue-inside-of-loop-expressions","control-flow/loops.html#the-type-of-while-and-loop","control-flow/labeled-control-flow.html#labeled-control-flow","control-flow/pattern-matching.html#pattern-matching","control-flow/pattern-matching.html#match-syntax","control-flow/pattern-matching.html#pattern-syntax","control-flow/pattern-matching.html#patterns-and-variables","control-flow/pattern-matching.html#combining-patterns","control-flow/pattern-matching.html#restrictions-on-some-patterns","control-flow/pattern-matching.html#pattern-typing","control-flow/pattern-matching.html#matching","control-flow/pattern-matching.html#matching-constructors","control-flow/pattern-matching.html#ability-constraints","control-flow/pattern-matching.html#exhaustiveness","control-flow/pattern-matching.html#guards","control-flow/pattern-matching.html#limitations-on-specific-patterns","control-flow/pattern-matching.html#mutability-usage","control-flow/pattern-matching.html#-usage","functions.html#functions","functions.html#declaration","functions.html#visibility","functions.html#entry-modifier","functions.html#name","functions.html#type-parameters","functions.html#parameters","functions.html#return-type","functions.html#function-body","functions.html#native-functions","functions.html#calling","functions.html#returning-values","functions.html#return-expression","structs.html#structs-and-resources","structs.html#defining-structs","structs.html#visibility","structs.html#abilities","structs.html#naming","structs.html#using-structs","structs.html#creating-structs","structs.html#destroying-structs-via-pattern-matching","structs.html#accessing-struct-fields","structs.html#borrowing-structs-and-fields","structs.html#reading-and-writing-fields","structs.html#privileged-struct-operations","structs.html#ownership","structs.html#storage","enums.html#enumerations","enums.html#defining-enums","enums.html#visibility","enums.html#abilities","enums.html#naming","enums.html#using-enums","enums.html#creating-enum-variants","enums.html#pattern-matching-enum-variants-and-destructuring","enums.html#overwriting-to-enum-values","constants.html#constants","constants.html#declaration","constants.html#naming","constants.html#visibility","constants.html#valid-expressions","constants.html#values","constants.html#complex-expressions","generics.html#generics","generics.html#declaring-type-parameters","generics.html#generic-functions","generics.html#generic-structs","generics.html#type-arguments","generics.html#calling-generic-functions","generics.html#using-generic-structs","generics.html#type-argument-mismatch","generics.html#type-inference","generics.html#integers","generics.html#unused-type-parameters","generics.html#phantom-type-parameters","generics.html#constraints","generics.html#declaring-constraints","generics.html#verifying-constraints","generics.html#limitations-on-recursions","generics.html#recursive-structs","generics.html#advanced-topic-type-level-recursions","abilities.html#abilities","abilities.html#the-four-abilities","abilities.html#copy","abilities.html#drop","abilities.html#store","abilities.html#key","abilities.html#builtin-types","abilities.html#annotating-structs-and-enums","abilities.html#conditional-abilities-and-generic-types","abilities.html#example-conditional-copy","abilities.html#example-conditional-drop","abilities.html#example-conditional-store","abilities.html#example-conditional-key","uses.html#uses-and-aliases","uses.html#syntax","uses.html#multiple-aliases","uses.html#self-aliases","uses.html#multiple-aliases-for-the-same-definition","uses.html#nested-imports","uses.html#inside-a-module","uses.html#inside-an-expression","uses.html#naming-rules","uses.html#uniqueness","uses.html#shadowing","uses.html#unused-use-or-alias","method-syntax.html#methods","method-syntax.html#syntax","method-syntax.html#method-resolution","method-syntax.html#functions-in-the-defining-module","method-syntax.html#use-fun-aliases","method-syntax.html#public-use-fun-aliases","method-syntax.html#interactions-with-use-aliases","method-syntax.html#scoping","method-syntax.html#automatic-borrowing","method-syntax.html#chaining","index-syntax.html#index-syntax","index-syntax.html#overview-and-summary","index-syntax.html#usage","index-syntax.html#index-functions-take-flexible-arguments","index-syntax.html#defining-index-syntax-functions","index-syntax.html#declaration","index-syntax.html#type-constraints","index-syntax.html#type-compatibility","packages.html#packages","packages.html#package-layout-and-manifest-syntax","packages.html#movetoml","packages.html#named-addresses-during-compilation","packages.html#declaring-named-addresses","packages.html#scope-and-renaming-of-named-addresses","packages.html#instantiating-named-addresses","packages.html#usage-and-artifacts","packages.html#artifacts","packages.html#movelock","packages.html#the-move-section","packages.html#the-movepackage-sections","packages.html#the-movetoolchain-version-section","unit-testing.html#unit-tests","unit-testing.html#test-annotations","unit-testing.html#expected-failures","unit-testing.html#1-expected_failureabort_code--","unit-testing.html#2-expected_failurearithmetic_error-location--","unit-testing.html#3-expected_failureout_of_gas-location--","unit-testing.html#4-expected_failurevector_error-minor_status---location--","unit-testing.html#5-expected_failure","unit-testing.html#test-only-annotations","unit-testing.html#running-unit-tests","unit-testing.html#example","unit-testing.html#running-tests","unit-testing.html#using-test-flags","coding-conventions.html","friends.html#deprecated-friends","friends.html#friend-declaration","friends.html#friend-declaration-rules"],"index":{"documentStore":{"docInfo":{"0":{"body":61,"breadcrumbs":4,"title":2},"1":{"body":52,"breadcrumbs":2,"title":1},"10":{"body":79,"breadcrumbs":4,"title":1},"100":{"body":89,"breadcrumbs":6,"title":2},"101":{"body":209,"breadcrumbs":5,"title":1},"102":{"body":148,"breadcrumbs":6,"title":2},"103":{"body":95,"breadcrumbs":6,"title":2},"104":{"body":231,"breadcrumbs":5,"title":1},"105":{"body":148,"breadcrumbs":5,"title":1},"106":{"body":6,"breadcrumbs":7,"title":3},"107":{"body":109,"breadcrumbs":6,"title":2},"108":{"body":123,"breadcrumbs":5,"title":1},"109":{"body":16,"breadcrumbs":2,"title":1},"11":{"body":44,"breadcrumbs":4,"title":1},"110":{"body":38,"breadcrumbs":2,"title":1},"111":{"body":188,"breadcrumbs":2,"title":1},"112":{"body":125,"breadcrumbs":3,"title":2},"113":{"body":25,"breadcrumbs":2,"title":1},"114":{"body":28,"breadcrumbs":3,"title":2},"115":{"body":46,"breadcrumbs":2,"title":1},"116":{"body":62,"breadcrumbs":3,"title":2},"117":{"body":34,"breadcrumbs":3,"title":2},"118":{"body":49,"breadcrumbs":3,"title":2},"119":{"body":105,"breadcrumbs":2,"title":1},"12":{"body":68,"breadcrumbs":5,"title":2},"120":{"body":59,"breadcrumbs":3,"title":2},"121":{"body":114,"breadcrumbs":3,"title":2},"122":{"body":65,"breadcrumbs":3,"title":2},"123":{"body":68,"breadcrumbs":3,"title":2},"124":{"body":29,"breadcrumbs":2,"title":1},"125":{"body":139,"breadcrumbs":2,"title":1},"126":{"body":43,"breadcrumbs":2,"title":1},"127":{"body":0,"breadcrumbs":3,"title":2},"128":{"body":118,"breadcrumbs":3,"title":2},"129":{"body":174,"breadcrumbs":6,"title":5},"13":{"body":31,"breadcrumbs":4,"title":1},"130":{"body":77,"breadcrumbs":4,"title":3},"131":{"body":89,"breadcrumbs":4,"title":3},"132":{"body":249,"breadcrumbs":4,"title":3},"133":{"body":100,"breadcrumbs":4,"title":3},"134":{"body":190,"breadcrumbs":2,"title":1},"135":{"body":18,"breadcrumbs":2,"title":1},"136":{"body":86,"breadcrumbs":2,"title":1},"137":{"body":118,"breadcrumbs":3,"title":2},"138":{"body":23,"breadcrumbs":2,"title":1},"139":{"body":87,"breadcrumbs":2,"title":1},"14":{"body":33,"breadcrumbs":4,"title":1},"140":{"body":46,"breadcrumbs":2,"title":1},"141":{"body":0,"breadcrumbs":3,"title":2},"142":{"body":127,"breadcrumbs":4,"title":3},"143":{"body":392,"breadcrumbs":6,"title":5},"144":{"body":35,"breadcrumbs":4,"title":3},"145":{"body":26,"breadcrumbs":2,"title":1},"146":{"body":26,"breadcrumbs":2,"title":1},"147":{"body":75,"breadcrumbs":2,"title":1},"148":{"body":16,"breadcrumbs":2,"title":1},"149":{"body":18,"breadcrumbs":3,"title":2},"15":{"body":69,"breadcrumbs":4,"title":1},"150":{"body":25,"breadcrumbs":2,"title":1},"151":{"body":122,"breadcrumbs":3,"title":2},"152":{"body":50,"breadcrumbs":2,"title":1},"153":{"body":12,"breadcrumbs":4,"title":3},"154":{"body":45,"breadcrumbs":3,"title":2},"155":{"body":31,"breadcrumbs":3,"title":2},"156":{"body":0,"breadcrumbs":3,"title":2},"157":{"body":26,"breadcrumbs":4,"title":3},"158":{"body":49,"breadcrumbs":4,"title":3},"159":{"body":33,"breadcrumbs":4,"title":3},"16":{"body":15,"breadcrumbs":4,"title":1},"160":{"body":105,"breadcrumbs":3,"title":2},"161":{"body":87,"breadcrumbs":2,"title":1},"162":{"body":116,"breadcrumbs":4,"title":3},"163":{"body":362,"breadcrumbs":4,"title":3},"164":{"body":49,"breadcrumbs":2,"title":1},"165":{"body":38,"breadcrumbs":3,"title":2},"166":{"body":97,"breadcrumbs":3,"title":2},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":53,"breadcrumbs":3,"title":2},"169":{"body":169,"breadcrumbs":6,"title":5},"17":{"body":8,"breadcrumbs":4,"title":1},"170":{"body":80,"breadcrumbs":3,"title":1},"171":{"body":61,"breadcrumbs":4,"title":2},"172":{"body":29,"breadcrumbs":3,"title":1},"173":{"body":52,"breadcrumbs":3,"title":1},"174":{"body":48,"breadcrumbs":3,"title":1},"175":{"body":42,"breadcrumbs":3,"title":1},"176":{"body":62,"breadcrumbs":4,"title":2},"177":{"body":209,"breadcrumbs":5,"title":3},"178":{"body":159,"breadcrumbs":6,"title":4},"179":{"body":67,"breadcrumbs":5,"title":3},"18":{"body":4,"breadcrumbs":4,"title":1},"180":{"body":91,"breadcrumbs":5,"title":3},"181":{"body":49,"breadcrumbs":5,"title":3},"182":{"body":50,"breadcrumbs":5,"title":3},"183":{"body":18,"breadcrumbs":4,"title":2},"184":{"body":143,"breadcrumbs":3,"title":1},"185":{"body":38,"breadcrumbs":4,"title":2},"186":{"body":38,"breadcrumbs":4,"title":2},"187":{"body":22,"breadcrumbs":6,"title":4},"188":{"body":34,"breadcrumbs":4,"title":2},"189":{"body":45,"breadcrumbs":4,"title":2},"19":{"body":0,"breadcrumbs":4,"title":1},"190":{"body":121,"breadcrumbs":4,"title":2},"191":{"body":40,"breadcrumbs":4,"title":2},"192":{"body":64,"breadcrumbs":3,"title":1},"193":{"body":98,"breadcrumbs":3,"title":1},"194":{"body":18,"breadcrumbs":5,"title":3},"195":{"body":79,"breadcrumbs":3,"title":1},"196":{"body":12,"breadcrumbs":3,"title":1},"197":{"body":73,"breadcrumbs":4,"title":2},"198":{"body":57,"breadcrumbs":5,"title":3},"199":{"body":332,"breadcrumbs":5,"title":3},"2":{"body":41,"breadcrumbs":2,"title":1},"20":{"body":34,"breadcrumbs":4,"title":1},"200":{"body":261,"breadcrumbs":6,"title":4},"201":{"body":75,"breadcrumbs":5,"title":3},"202":{"body":57,"breadcrumbs":3,"title":1},"203":{"body":173,"breadcrumbs":4,"title":2},"204":{"body":98,"breadcrumbs":3,"title":1},"205":{"body":50,"breadcrumbs":5,"title":2},"206":{"body":103,"breadcrumbs":5,"title":2},"207":{"body":85,"breadcrumbs":4,"title":1},"208":{"body":92,"breadcrumbs":8,"title":5},"209":{"body":87,"breadcrumbs":7,"title":4},"21":{"body":12,"breadcrumbs":5,"title":2},"210":{"body":179,"breadcrumbs":4,"title":1},"211":{"body":116,"breadcrumbs":5,"title":2},"212":{"body":191,"breadcrumbs":5,"title":2},"213":{"body":48,"breadcrumbs":2,"title":1},"214":{"body":157,"breadcrumbs":5,"title":4},"215":{"body":386,"breadcrumbs":2,"title":1},"216":{"body":42,"breadcrumbs":5,"title":4},"217":{"body":144,"breadcrumbs":4,"title":3},"218":{"body":188,"breadcrumbs":5,"title":4},"219":{"body":79,"breadcrumbs":4,"title":3},"22":{"body":15,"breadcrumbs":4,"title":1},"220":{"body":35,"breadcrumbs":3,"title":2},"221":{"body":54,"breadcrumbs":2,"title":1},"222":{"body":114,"breadcrumbs":2,"title":1},"223":{"body":73,"breadcrumbs":3,"title":2},"224":{"body":52,"breadcrumbs":3,"title":2},"225":{"body":56,"breadcrumbs":4,"title":3},"226":{"body":48,"breadcrumbs":4,"title":2},"227":{"body":128,"breadcrumbs":4,"title":2},"228":{"body":11,"breadcrumbs":4,"title":2},"229":{"body":70,"breadcrumbs":5,"title":3},"23":{"body":91,"breadcrumbs":4,"title":1},"230":{"body":62,"breadcrumbs":6,"title":4},"231":{"body":57,"breadcrumbs":6,"title":4},"232":{"body":118,"breadcrumbs":8,"title":6},"233":{"body":33,"breadcrumbs":4,"title":2},"234":{"body":78,"breadcrumbs":4,"title":2},"235":{"body":97,"breadcrumbs":5,"title":3},"236":{"body":90,"breadcrumbs":3,"title":1},"237":{"body":36,"breadcrumbs":4,"title":2},"238":{"body":231,"breadcrumbs":5,"title":3},"239":{"body":5,"breadcrumbs":2,"title":2},"24":{"body":82,"breadcrumbs":5,"title":2},"240":{"body":29,"breadcrumbs":3,"title":2},"241":{"body":102,"breadcrumbs":3,"title":2},"242":{"body":161,"breadcrumbs":4,"title":3},"25":{"body":71,"breadcrumbs":5,"title":2},"26":{"body":64,"breadcrumbs":4,"title":1},"27":{"body":27,"breadcrumbs":4,"title":1},"28":{"body":0,"breadcrumbs":4,"title":1},"29":{"body":70,"breadcrumbs":6,"title":3},"3":{"body":139,"breadcrumbs":2,"title":1},"30":{"body":145,"breadcrumbs":5,"title":2},"31":{"body":196,"breadcrumbs":4,"title":1},"32":{"body":27,"breadcrumbs":4,"title":1},"33":{"body":115,"breadcrumbs":6,"title":3},"34":{"body":13,"breadcrumbs":4,"title":1},"35":{"body":31,"breadcrumbs":4,"title":1},"36":{"body":151,"breadcrumbs":5,"title":2},"37":{"body":125,"breadcrumbs":7,"title":4},"38":{"body":87,"breadcrumbs":5,"title":2},"39":{"body":135,"breadcrumbs":4,"title":1},"4":{"body":34,"breadcrumbs":2,"title":1},"40":{"body":53,"breadcrumbs":4,"title":1},"41":{"body":108,"breadcrumbs":5,"title":2},"42":{"body":128,"breadcrumbs":6,"title":2},"43":{"body":68,"breadcrumbs":5,"title":1},"44":{"body":43,"breadcrumbs":5,"title":1},"45":{"body":5,"breadcrumbs":5,"title":1},"46":{"body":97,"breadcrumbs":5,"title":1},"47":{"body":75,"breadcrumbs":5,"title":1},"48":{"body":26,"breadcrumbs":5,"title":1},"49":{"body":25,"breadcrumbs":6,"title":3},"5":{"body":31,"breadcrumbs":4,"title":2},"50":{"body":0,"breadcrumbs":6,"title":3},"51":{"body":74,"breadcrumbs":4,"title":1},"52":{"body":39,"breadcrumbs":7,"title":4},"53":{"body":43,"breadcrumbs":6,"title":3},"54":{"body":92,"breadcrumbs":5,"title":2},"55":{"body":114,"breadcrumbs":5,"title":2},"56":{"body":77,"breadcrumbs":6,"title":3},"57":{"body":174,"breadcrumbs":6,"title":3},"58":{"body":146,"breadcrumbs":6,"title":3},"59":{"body":48,"breadcrumbs":5,"title":2},"6":{"body":71,"breadcrumbs":4,"title":1},"60":{"body":129,"breadcrumbs":5,"title":2},"61":{"body":0,"breadcrumbs":4,"title":1},"62":{"body":124,"breadcrumbs":4,"title":1},"63":{"body":79,"breadcrumbs":6,"title":3},"64":{"body":67,"breadcrumbs":4,"title":1},"65":{"body":182,"breadcrumbs":5,"title":2},"66":{"body":136,"breadcrumbs":4,"title":1},"67":{"body":110,"breadcrumbs":5,"title":2},"68":{"body":21,"breadcrumbs":4,"title":1},"69":{"body":116,"breadcrumbs":4,"title":1},"7":{"body":48,"breadcrumbs":4,"title":1},"70":{"body":5,"breadcrumbs":2,"title":1},"71":{"body":21,"breadcrumbs":2,"title":1},"72":{"body":79,"breadcrumbs":2,"title":1},"73":{"body":64,"breadcrumbs":3,"title":2},"74":{"body":41,"breadcrumbs":3,"title":2},"75":{"body":97,"breadcrumbs":2,"title":1},"76":{"body":82,"breadcrumbs":4,"title":3},"77":{"body":20,"breadcrumbs":4,"title":2},"78":{"body":137,"breadcrumbs":3,"title":1},"79":{"body":111,"breadcrumbs":3,"title":1},"8":{"body":97,"breadcrumbs":4,"title":1},"80":{"body":162,"breadcrumbs":6,"title":4},"81":{"body":44,"breadcrumbs":4,"title":2},"82":{"body":44,"breadcrumbs":4,"title":2},"83":{"body":137,"breadcrumbs":6,"title":2},"84":{"body":7,"breadcrumbs":6,"title":2},"85":{"body":34,"breadcrumbs":6,"title":3},"86":{"body":42,"breadcrumbs":4,"title":1},"87":{"body":67,"breadcrumbs":7,"title":4},"88":{"body":64,"breadcrumbs":7,"title":4},"89":{"body":65,"breadcrumbs":5,"title":2},"9":{"body":0,"breadcrumbs":4,"title":1},"90":{"body":59,"breadcrumbs":7,"title":4},"91":{"body":40,"breadcrumbs":8,"title":5},"92":{"body":98,"breadcrumbs":5,"title":2},"93":{"body":187,"breadcrumbs":8,"title":3},"94":{"body":84,"breadcrumbs":6,"title":2},"95":{"body":80,"breadcrumbs":6,"title":2},"96":{"body":229,"breadcrumbs":6,"title":2},"97":{"body":51,"breadcrumbs":6,"title":2},"98":{"body":77,"breadcrumbs":6,"title":2},"99":{"body":54,"breadcrumbs":6,"title":2}},"docs":{"0":{"body":"Welcome to Move, a next generation language for secure asset programming. Its primary use case is in blockchain environments, where Move programs are used to construct state changes. Move allows developers to write programs that flexibly manage and transfer assets, while providing the security and protections against attacks on those assets. However, Move has been developed with use cases in mind outside a blockchain context as well. Move takes its cue from Rust by using resource types with move (hence the name) semantics as an explicit representation of digital assets, such as currency.","breadcrumbs":"The Move Reference » The Move Reference","id":"0","title":"The Move Reference"},"1":{"body":"Modules are the core program unit that define types along with functions that operate on these types. Struct types define the schema of Move's storage , and module functions define the rules interacting with values of those types. While modules themselves are also stored in storage, they are not accessible from within a Move program. In a blockchain environment, the modules are stored on chain in a process typically referred to as \"publishing\". After being published, entry and public functions can be invoked according to the rules of that particular Move instance.","breadcrumbs":"Modules » Modules","id":"1","title":"Modules"},"10":{"body":"Each of these types supports the same set of checked arithmetic operations. For all of these operations, both arguments (the left and right side operands) must be of the same type. If you need to operate over values of different types, you will need to first perform a cast . Similarly, if you expect the result of the operation to be too large for the integer type, perform a cast to a larger size before performing the operation. All arithmetic operations abort instead of behaving in a way that mathematical integers would not (e.g., overflow, underflow, divide-by-zero). Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0","breadcrumbs":"Primitive Types » Integers » Arithmetic","id":"10","title":"Arithmetic"},"100":{"body":"Patterns are not expressions, but they are nevertheless typed. This means that the type of a pattern must match the type of the value it matches. For example, the pattern 1 has an integer type, the pattern MyEnum::Variant(1, true) has type MyEnum, the pattern MyStruct { x, y } has type MyStruct, and OtherStruct { x: true, y: 1} has type OtherStruct. If you try to match on an expression that differs from the type of the pattern in the match, this will result in a type error. For example: match (1) { // The `true` literal pattern is of type `bool` so this is a type error. true => 1, // TYPE ERROR: expected type u64, found bool _ => 2,\n} Similarly, the following would also result in a type error because MyEnum and MyStruct are different types: match (MyStruct { x: 0, y: 0 }) { MyEnum::Variant(..) => 1, // TYPE ERROR: expected type MyEnum, found MyStruct\n}","breadcrumbs":"Control Flow » Patterm Matching » Pattern Typing","id":"100","title":"Pattern Typing"},"101":{"body":"Prior to delving into the specifics of pattern matching and what it means for a value to \"match\" a pattern, let's examine a few examples to provide an intuition for the concept. fun test_lit(x: u64): u8 { match (x) { 1 => 2, 2 => 3, _ => 4, }\n}\ntest_lit(1); // returns 2\ntest_lit(2); // returns 3\ntest_lit(3); // returns 4\ntest_lit(10); // returns 4 fun test_var(x: u64): u64 { match (x) { y => y, }\n}\ntest_var(1); // returns 1\ntest_var(2); // returns 2\ntest_var(3); // returns 3\n... const MyConstant: u64 = 10;\nfun test_constant(x: u64): u64 { match (x) { MyConstant => 1, _ => 2, }\n}\ntest_constant(MyConstant); // returns 1\ntest_constant(10); // returns 1\ntest_constant(20); // returns 2 fun test_or_pattern(x: u64): u64 { match (x) { 1 | 2 | 3 => 1, 4 | 5 | 6 => 2, _ => 3, }\n}\ntest_or_pattern(3); // returns 1\ntest_or_pattern(5); // returns 2\ntest_or_pattern(70); // returns 3 fun test_or_at_pattern(x: u64): u64 { match (x) { x @ (1 | 2 | 3) => x + 1, y @ (4 | 5 | 6) => y + 2, z => z + 3, }\n}\ntest_or_pattern(2); // returns 3\ntest_or_pattern(5); // returns 7\ntest_or_pattern(70); // returns 73 The most important thing to note from these examples is that a pattern matches a value if the value is equal to the pattern, and wildcard/variable patterns match anything. This is true for literals, variables, and constants. For example, in the test_lit function, the value 1 matches the pattern 1, the value 2 matches the pattern 2, and the value 3 matches the wildcard _. Similarly, in the test_var function, both the value 1 and the value 2 matches the pattern y. A variable x matches (or \"equals\") any value, and a wildcard _ matches any value (but only one value). Or-patterns are like a logical OR, where a value matches the pattern if it matches any of patterns in the or-pattern so p1 | p2 | p3 should be read \"matches p1, or p2, or p3\".","breadcrumbs":"Control Flow » Patterm Matching » Matching","id":"101","title":"Matching"},"102":{"body":"Pattern matching includes the concept of constructor patterns. These patterns allow you to inspect and access deep within both structs and enums, and are one of the most powerful parts of pattern matching. Constructor patterns, coupled with variable bindings, allow you to match on values by their structure, and pull out the parts of the value you care about for usage on the right-hand side of the match arm. Take the following: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 3\nf(MyEnum::OtherVariant(false, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 3)); // returns 2\nf(MyEnum::OtherVariant(true, 2)); // returns 4 This is saying that \"if x is MyEnum::Variant with the fields 1 and true, then return 1. If it is MyEnum::OtherVariant with any value for the first field, and 3 for the second, then return 2. If it is MyEnum::Variant with any fields, then return 3. Finally, if it is MyEnum::OtherVariant with any fields, then return 4\". You can also nest patterns. So, if you wanted to match either 1, 2, or 10, instead of just matching 1 in the previous MyEnum::Variant, you could do so with an or-pattern: fun f(x: MyEnum) { match (x) { MyEnum::Variant(1 | 2 | 10, true) => 1, MyEnum::OtherVariant(_, 3) => 2, MyEnum::Variant(..) => 3, MyEnum::OtherVariant(..) => 4,\n}\nf(MyEnum::Variant(1, true)); // returns 1\nf(MyEnum::Variant(2, true)); // returns 1\nf(MyEnum::Variant(10, true)); // returns 1\nf(MyEnum::Variant(10, false)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Matching Constructors","id":"102","title":"Matching Constructors"},"103":{"body":"Additionally, match bindings are subject to the same ability restrictions as other aspects of Move. In particular, the compiler will signal an error if you try to match a value (not-reference) without drop using a wildcard, as the wildcard expects to drop the value. Similarly, if you bind a non-drop value using a binder, it must be used in the right-hand side of the match arm. In addition, if you fully destruct that value, you have unpacked it, matching the semantics of non-drop struct unpacking . See the abilities section on drop for more details about the drop capability. public struct NonDrop(u64) fun drop_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, _ => 2 // ERROR: cannot wildcard match on a non-droppable value }\n} fun destructure_nondrop(x: NonDrop) { match (x) { NonDrop(1) => 1, NonDrop(_) => 2 // OK! }\n} fun use_nondrop(x: NonDrop): NonDrop { match (x) { NonDrop(1) => NonDrop(8), x => x }\n}","breadcrumbs":"Control Flow » Patterm Matching » Ability Constraints","id":"103","title":"Ability Constraints"},"104":{"body":"The match expression in Move must be exhaustive : every possible value of the type being matched must be covered by one of the patterns in one of the match's arms. If the series of match arms is not exhaustive, the compiler will raise an error. Note that any arm with a guard expression does not contribute to match exhaustion, as it might fail to match at runtime. As an example, a match on a u8 is exhaustive only if it matches on every number from 0 to 255 inclusive, unless there is a wildcard or variable pattern present. Similarly, a match on a bool would need to match on both true and false, unless there is a wildcard or variable pattern present. For structs, because there is only one type of constructor for the type, only one constructor needs to be matched, but the fields within the struct need to be matched exhaustively as well. Conversely, enums may define multiple variants, and each variant must be matched (including any sub-fields) for the match to be considered exhaustive. Because underscores and variables are wildcards that match anything, they count as matching all values of the type they are matching on in that position. Additionally, the multi-arity wildcard pattern .. can be used to match on multiple values within a struct or enum variant. To see some examples of non-exhaustive matches, consider the following: public enum MyEnum { Variant(u64, bool), OtherVariant(bool, u64),\n} public struct Pair(T, T) fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // ERROR: not exhaustive as the value `MyEnum::OtherVariant(_, 4)` is not matched. }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // ERROR: not exhaustive as the value `Pair(false, true)` is not matched. }\n} These examples can then be made exhaustive by adding a wildcard pattern to the end of the match arm, or by fully matching on the remaining values: fun f(x: MyEnum): u8 { match (x) { MyEnum::Variant(1, true) => 1, MyEnum::Variant(_, _) => 1, MyEnum::OtherVariant(_, 3) => 2, // Now exhaustive since this will match all values of MyEnum::OtherVariant MyEnum::OtherVariant(..) => 2, }\n} fun match_pair_bool(x: Pair): u8 { match (x) { Pair(true, true) => 1, Pair(true, false) => 1, Pair(false, false) => 1, // Now exhaustive since this will match all values of Pair Pair(false, true) => 1, }\n}","breadcrumbs":"Control Flow » Patterm Matching » Exhaustiveness","id":"104","title":"Exhaustiveness"},"105":{"body":"As previously mentioned, you can add a guard to a match arm by adding an if clause after the pattern. This guard will run after the pattern has been matched but before the expression on the right hand side of the arrow is evaluated. If the guard expression evaluates to true then the expression on the right hand side of the arrow will be evaluated, if it evaluates to false then it will be considered a failed match and the next match arm in the match expression will be checked. fun match_with_guard(x: u64): u64 { match (x) { 1 if (false) => 1, 1 => 2, _ => 3, }\n} match_with_guard(1); // returns 2\nmatch_with_guard(0); // returns 3 Guard expressions can reference variables bound in the pattern during evaluation. However, note that variables are only available as immutable reference in guards regardless of the pattern being matched -- even if there are mutability specifiers on the variable or if the pattern is being matched by value. fun incr(x: &mut u64) { *x = *x + 1;\n} fun match_with_guard_incr(x: u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} fun match_with_guard_incr2(x: &mut u64): u64 { match (x) { x if ({ incr(&mut x); x == 1 }) => 1, // ERROR: ^^^ invalid borrow of immutable value _ => 2, }\n} Additionally, it is important to note any match arms that have guard expressions will not be considered either for exhaustivity purposes because the compiler has no way of evaluating the guard expression statically.","breadcrumbs":"Control Flow » Patterm Matching » Guards","id":"105","title":"Guards"},"106":{"body":"There are some restrictions on when the .. and mut pattern modifiers can be used in a pattern.","breadcrumbs":"Control Flow » Patterm Matching » Limitations on Specific Patterns","id":"106","title":"Limitations on Specific Patterns"},"107":{"body":"A mut modifier can be placed on a variable pattern to specify that the variable is to be mutated in the right-hand expression of the match arm. Note that since the mut modifier only signifies that the variable is to be mutated, not the underlying data, this can be used on all types of match (by value, immutable reference, and mutable reference). Note that the mut modifier can only be applied to variables, and not other types of patterns. public struct MyStruct(u64) fun top_level_mut(x: MyStruct) { match (x) { mut MyStruct(y) => 1, // ERROR: cannot use mut on a non-variable pattern }\n} fun mut_on_immut(x: &MyStruct): u64 { match (x) { MyStruct(mut y) => { y = &(*y + 1); *y } }\n} fun mut_on_value(x: MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} fun mut_on_mut(x: &mut MyStruct): u64 { match (x) { MyStruct(mut y) => { *y = *y + 1; *y }, }\n} let mut x = MyStruct(1); mut_on_mut(&mut x); // returns 2\nx.0; // returns 2 mut_on_immut(&x); // returns 3\nx.0; // returns 2 mut_on_value(x); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Mutability Usage","id":"107","title":"Mutability Usage"},"108":{"body":"The .. pattern can only be used within a constructor pattern as a wildcard that matches any number of fields -- the the compiler expands the .. to inserting _ in any missing fields in the constructor pattern (if any). So MyStruct(_, _, _) is the same as MyStruct(..), MyStruct(1, _, _) is the same as MyStruct(1, ..). Because of this, there are some restrictions on how, and where the .. pattern can be used: It can only be used once within the constructor pattern; In positional arguments it can be used at the beginning, middle, or end of the patterns within the constructor; In named arguments it can only be used at the end of the patterns within the constructor; public struct MyStruct(u64, u64, u64, u64) has drop; public struct MyStruct2 { x: u64, y: u64, z: u64, w: u64,\n} fun wild_match(x: MyStruct) { match (x) { MyStruct(.., 1) => 1, // OK! The `..` pattern can be used at the begining of the constructor pattern MyStruct(1, ..) => 2, // OK! The `..` pattern can be used at the end of the constructor pattern MyStruct(1, .., 1) => 3, // OK! The `..` pattern can be used at the middle of the constructor pattern MyStruct(1, .., 1, 1) => 4, MyStruct(..) => 5, }\n} fun wild_match2(x: MyStruct2) { match (x) { MyStruct2 { x: 1, .. } => 1, MyStruct2 { x: 1, w: 2 .. } => 2, MyStruct2 { .. } => 3, }\n}","breadcrumbs":"Control Flow » Patterm Matching » .. Usage","id":"108","title":".. Usage"},"109":{"body":"Functions are declared inside of modules and define the logic and behavior of the module. Functions can be reused, either being called from other functions or as entry points for execution.","breadcrumbs":"Functions » Functions","id":"109","title":"Functions"},"11":{"body":"The integer types support the following bitwise operations that treat each number as a series of individual bits, either 0 or 1, instead of as numerical integer values. Bitwise operations do not abort. Syntax Operation Description & bitwise and Performs a boolean and for each bit pairwise | bitwise or Performs a boolean or for each bit pairwise ^ bitwise xor Performs a boolean exclusive or for each bit pairwise","breadcrumbs":"Primitive Types » Integers » Bitwise","id":"11","title":"Bitwise"},"110":{"body":"Functions are declared with the fun keyword followed by the function name, type parameters, parameters, a return type, and finally the function body. ? ? fun <[type_parameters: constraint],*>([identifier: type],*): For example fun foo(x: u64, y: T1, z: T2): (T2, T1, u64) { (z, y, x) }","breadcrumbs":"Functions » Declaration","id":"110","title":"Declaration"},"111":{"body":"Module functions, by default, can only be called within the same module. These internal (sometimes called private) functions cannot be called from other modules or as entry points. module a::m { fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} To allow access from other modules, the function must be declared public or public(package). Tangential to visibility, an entry function can be called as an entry point for execution. public visibility A public function can be called by any function defined in any module. As shown in the following example, a public function can be called by: other functions defined in the same module, functions defined in another module, or as an entry point for execution. module a::m { public fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module b::other { fun calls_m_foo(): u64 { a::m::foo() // valid }\n} Fore more details on the entry point to execution see the section below . public(package) visibility The public(package) visibility modifier is a more restricted form of the public modifier to give more control about where a function can be used. A public(package) function can be called by: other functions defined in the same module, or other functions defined in the same package (the same address) module a::m { public(package) fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // valid, also in `a` }\n} module b::other { fun calls_m_foo(): u64 { b::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' can only be called from a module in `a` }\n} DEPRECATED public(friend) visibility Before the addition of public(package), public(friend) was used to allow limited public access to functions in the same package, but where the list of allowed modules had to be explicitly enumerated by the callee's module. see Friends for more details.","breadcrumbs":"Functions » Visibility","id":"111","title":"Visibility"},"112":{"body":"In addition to public functions, you might have some functions in your modules that you want to use as the entry point to execution. The entry modifier is designed to allow module functions to initiate execution, without having to expose the functionality to other modules. Essentially, the combination of pbulic and entry functions define the \"main\" functions of a module, and they specify where Move programs can start executing. Keep in mind though, an entry function can still be called by other Move functions. So while they can serve as the start of a Move program, they aren't restricted to that case. For example: module a::m { entry fun foo(): u64 { 0 } fun calls_foo(): u64 { foo() } // valid!\n} module a::n { fun calls_m_foo(): u64 { a::m::foo() // ERROR!\n// ^^^^^^^^^^^ 'foo' is internal to 'a::m' }\n} entry functions may have restrictions on their parameters and return types. Although, these restrictions are specific to each individual deployment of Move. The documentation for entry functions on Sui can be found here. . To enable easier testing, entry functions can be called from #[test] and #[test_only] contexts. module a::m { entry fun foo(): u64 { 0 }\n}\nmodule a::m_test { #[test] fun my_test(): u64 { a::m::foo() } // valid! #[test_only] fun my_test_helper(): u64 { a::m::foo() } // valid!\n}","breadcrumbs":"Functions » entry modifier","id":"112","title":"entry modifier"},"113":{"body":"Function names can start with letters a to z. After the first character, function names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. fun fOO() {}\nfun bar_42() {}\nfun bAZ_19() {}","breadcrumbs":"Functions » Name","id":"113","title":"Name"},"114":{"body":"After the name, functions can have type parameters fun id(x: T): T { x }\nfun example(x: T1, y: T2): (T1, T1, T2) { (copy x, x, y) } For more details, see Move generics .","breadcrumbs":"Functions » Type Parameters","id":"114","title":"Type Parameters"},"115":{"body":"Functions parameters are declared with a local variable name followed by a type annotation fun add(x: u64, y: u64): u64 { x + y } We read this as x has type u64 A function does not have to have any parameters at all. fun useless() { } This is very common for functions that create new or empty data structures module a::example { public struct Counter { count: u64 } fun new_counter(): Counter { Counter { count: 0 } }\n}","breadcrumbs":"Functions » Parameters","id":"115","title":"Parameters"},"116":{"body":"After the parameters, a function specifies its return type. fun zero(): u64 { 0 } Here : u64 indicates that the function's return type is u64. Using tuples , a function can return multiple values: fun one_two_three(): (u64, u64, u64) { (0, 1, 2) } If no return type is specified, the function has an implicit return type of unit (). These functions are equivalent: fun just_unit(): () { () }\nfun just_unit() { () }\nfun just_unit() { } As mentioned in the tuples section , these tuple \"values\" do not exist as runtime values. This means that a function that returns unit () does not return any value during execution.","breadcrumbs":"Functions » Return type","id":"116","title":"Return type"},"117":{"body":"A function's body is an expression block. The return value of the function is the last value in the sequence fun example(): u64 { let x = 0; x = x + 1; x // returns 'x'\n} See the section below for more information on returns For more information on expression blocks, see Move variables .","breadcrumbs":"Functions » Function body","id":"117","title":"Function body"},"118":{"body":"Some functions do not have a body specified, and instead have the body provided by the VM. These functions are marked native. Without modifying the VM source code, a programmer cannot add new native functions. Furthermore, it is the intent that native functions are used for either standard library code or for functionality needed for the given Move environment. Most native functions you will likely see are in standard library code, such as vector module std::vector { native public fun length(v: &vector): u64; ...\n}","breadcrumbs":"Functions » Native Functions","id":"118","title":"Native Functions"},"119":{"body":"When calling a function, the name can be specified either through an alias or fully qualified module a::example { public fun zero(): u64 { 0 }\n} module b::other { use a::example::{Self, zero}; fun call_zero() { // With the `use` above all of these calls are equivalent a::example::zero(); example::zero(); zero(); }\n} When calling a function, an argument must be given for every parameter. module a::example { public fun takes_none(): u64 { 0 } public fun takes_one(x: u64): u64 { x } public fun takes_two(x: u64, y: u64): u64 { x + y } public fun takes_three(x: u64, y: u64, z: u64): u64 { x + y + z }\n} module b::other { fun call_all() { a::example::takes_none(); a::example::takes_one(0); a::example::takes_two(0, 1); a::example::takes_three(0, 1, 2); }\n} Type arguments can be either specified or inferred. Both calls are equivalent. module aexample { public fun id(x: T): T { x }\n} module b::other { fun call_all() { a::example::id(0); a::example::id(0); }\n} For more details, see Move generics .","breadcrumbs":"Functions » Calling","id":"119","title":"Calling"},"12":{"body":"Similar to the bitwise operations, each integer type supports bit shifts. But unlike the other operations, the righthand side operand (how many bits to shift by) must always be a u8 and need not match the left side operand (the number you are shifting). Bit shifts can abort if the number of bits to shift by is greater than or equal to 8, 16, 32, 64, 128 or 256 for u8, u16, u32, u64, u128 and u256 respectively. Syntax Operation Aborts if << shift left Number of bits to shift by is greater than the size of the integer type >> shift right Number of bits to shift by is greater than the size of the integer type","breadcrumbs":"Primitive Types » Integers » Bit Shifts","id":"12","title":"Bit Shifts"},"120":{"body":"The result of a function, its \"return value\", is the final value of its function body. For example fun add(x: u64, y: u64): u64 { x + y\n} The return value here is the result of x + y. As mentioned above , the function's body is an expression block . The expression block can sequence various statements, and the final expression in the block will be be the value of that block fun double_and_add(x: u64, y: u64): u64 { let double_x = x * 2; let double_y = y * 2; double_x + double_y\n} The return value here is the result of double_x + double_y","breadcrumbs":"Functions » Returning values","id":"120","title":"Returning values"},"121":{"body":"A function implicitly returns the value that its body evaluates to. However, functions can also use the explicit return expression: fun f1(): u64 { return 0 }\nfun f2(): u64 { 0 } These two functions are equivalent. In this slightly more involved example, the function subtracts two u64 values, but returns early with 0 if the second value is too large: fun safe_sub(x: u64, y: u64): u64 { if (y > x) return 0; x - y\n} Note that the body of this function could also have been written as if (y > x) 0 else x - y. However return really shines is in exiting deep within other control flow constructs. In this example, the function iterates through a vector to find the index of a given value: use std::vector;\nuse std::option::{Self, Option};\nfun index_of(v: &vector, target: &T): Option { let i = 0; let n = vector::length(v); while (i < n) { if (vector::borrow(v, i) == target) return option::some(i); i = i + 1 }; option::none()\n} Using return without an argument is shorthand for return (). That is, the following two functions are equivalent: fun foo() { return }\nfun foo() { return () }","breadcrumbs":"Functions » return expression","id":"121","title":"return expression"},"122":{"body":"A struct is a user-defined data structure containing typed fields. Structs can store any non-reference, non-tuple type, including other structs. Structs can be used to define all \"asset\" values or unrestricted values, where the operations performed on those values can be controlled by the struct's abilities . By default, structs are linear and ephemeral. By this we mean that they: cannot be copied, cannot be dropped, and cannot be stored in storage. This means that all values have to have ownership transferred (linear) and the values must be dealt with by the end of the program's execution (ephemeral). We can relax this behavior by giving the struct abilities which allow values to be copied or dropped and also to be stored in storage or to define storage schemas.","breadcrumbs":"Structs » Structs and Resources","id":"122","title":"Structs and Resources"},"123":{"body":"Structs must be defined inside a module, and the struct's fields can either be named or positional: module a::m { public struct Foo { x: u64, y: bool } public struct Bar {} public struct Baz { foo: Foo, } // ^ note: it is fine to have a trailing comma public struct PosFoo(u64, bool) public struct PosBar() public struct PosBaz(Foo)\n} Structs cannot be recursive, so the following definitions are invalid: public struct Foo { x: Foo }\n// ^ ERROR! recursive definition public struct A { b: B }\npublic struct B { a: A }\n// ^ ERROR! recursive definition public struct D(D)\n// ^ ERROR! recursive definition","breadcrumbs":"Structs » Defining Structs","id":"123","title":"Defining Structs"},"124":{"body":"As you may have noticed, all structs are declared as public. This means that the type of the struct can be referred to from any other module. However, the fields of the struct, and the ability to create or destroy the struct, are still internal to the module that defines the struct. In the future, we plan on adding to declare structs as public(package) or as internal, much like functions .","breadcrumbs":"Structs » Visibility","id":"124","title":"Visibility"},"125":{"body":"As mentioned above: by default, a struct declaration is linear and ephemeral. So to allow the value to be used in these ways (e.g., copied, dropped, stored in an object , or used to define a storable object ), structs can be granted abilities by annotating them with has : module a::m { public struct Foo has copy, drop { x: u64, y: bool }\n} The ability declaration can occur either before or after the struct's fields. However, only one or the other can be used, and not both. If declared after the struct's fields, the ability declaration must be terminated with a semicolon: module a::m { public struct PreNamedAbilities has copy, drop { x: u64, y: bool } public struct PostNamedAbilities { x: u64, y: bool } has copy, drop; public struct PostNamedAbilitiesInvalid { x: u64, y: bool } has copy, drop // ^ ERROR! missing semicolon public struct NamedInvalidAbilities has copy { x: u64, y: bool } has drop; // ^ ERROR! duplicate ability declaration public struct PrePositionalAbilities has copy, drop (u64, bool) public struct PostPositionalAbilities (u64, bool) has copy, drop; public struct PostPositionalAbilitiesInvalid (u64, bool) has copy, drop // ^ ERROR! missing semicolon public struct InvalidAbilities has copy (u64, bool) has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating a struct's abilities .","breadcrumbs":"Structs » Abilities","id":"125","title":"Abilities"},"126":{"body":"Structs must start with a capital letter A to Z. After the first letter, struct names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. public struct Foo {}\npublic struct BAR {}\npublic struct B_a_z_4_2 {}\npublic struct P_o_s_Foo() This naming restriction of starting with A to Z is in place to give room for future language features. It may or may not be removed later.","breadcrumbs":"Structs » Naming","id":"126","title":"Naming"},"127":{"body":"","breadcrumbs":"Structs » Using Structs","id":"127","title":"Using Structs"},"128":{"body":"Values of a struct type can be created (or \"packed\") by indicating the struct name, followed by value for each field. For a struct with named fields, the order of the fields does not matter, but the field name needs to be provided. For a struct with positional fields, the order of the fields must match the order of the fields in the struct definition, and it must be created using () instead of {} to enclose the parameters. module a::m { public struct Foo has drop { x: u64, y: bool } public struct Baz has drop { foo: Foo } public struct Positional(u64, bool) has drop; fun example() { let foo = Foo { x: 0, y: false }; let baz = Baz { foo: foo }; // Note: positional struct values are created using parentheses and // based on position instead of name. let pos = Positional(0, false); let pos_invalid = Positional(false, 0); // ^ ERROR! Fields are out of order and the types don't match. }\n} For structs with named fields, you can use the following shorthand if you have a local variable with the same name as the field: let baz = Baz { foo: foo };\n// is equivalent to\nlet baz = Baz { foo }; This is sometimes called \"field name punning\".","breadcrumbs":"Structs » Creating Structs","id":"128","title":"Creating Structs"},"129":{"body":"Struct values can be destroyed by binding or assigning them in patterns using similar syntax to constructing them. module a::m { public struct Foo { x: u64, y: bool } public struct Bar(Foo) public struct Baz {} public struct Qux() fun example_destroy_foo() { let foo = Foo { x: 3, y: false }; let Foo { x, y: foo_y } = foo; // ^ shorthand for `x: x` // two new bindings // x: u64 = 3 // foo_y: bool = false } fun example_destroy_foo_wildcard() { let foo = Foo { x: 3, y: false }; let Foo { x, y: _ } = foo; // only one new binding since y was bound to a wildcard // x: u64 = 3 } fun example_destroy_foo_assignment() { let x: u64; let y: bool; Foo { x, y } = Foo { x: 3, y: false }; // mutating existing variables x and y // x = 3, y = false } fun example_foo_ref() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &foo; // two new bindings // x: &u64 // y: &bool } fun example_foo_ref_mut() { let foo = Foo { x: 3, y: false }; let Foo { x, y } = &mut foo; // two new bindings // x: &mut u64 // y: &mut bool } fun example_destroy_bar() { let bar = Bar(Foo { x: 3, y: false }); let Bar(Foo { x, y }) = bar; // ^ nested pattern // two new bindings // x: u64 = 3 // y: bool = false } fun example_destroy_baz() { let baz = Baz {}; let Baz {} = baz; } fun example_destroy_qux() { let qux = Qux(); let Qux() = qux; }\n}","breadcrumbs":"Structs » Destroying Structs via Pattern Matching","id":"129","title":"Destroying Structs via Pattern Matching"},"13":{"body":"Integer types are the only types in Move that can use the comparison operators. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Comparison operations do not abort. Syntax Operation < less than > greater than <= less than or equal to >= greater than or equal to","breadcrumbs":"Primitive Types » Integers » Comparisons","id":"13","title":"Comparisons"},"130":{"body":"Fields of a struct can be accessed using the dot operator .. For structs with named fields, the fields can be accessed by their name: public struct Foo { x: u64, y: bool }\nlet foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true For positional structs, fields can be accessed by their position in the struct definition: public struct PosFoo(u64, bool)\nlet pos_foo = PosFoo(3, true);\nlet x = pos_foo.0; // x == 3\nlet y = pos_foo.1; // y == true Accessing struct fields without borrowing or copying them is subject to the field's ability constraints. For more details see the sections on borrowing structs and fields and reading and writing fields for more information.","breadcrumbs":"Structs » Accessing Struct Fields","id":"130","title":"Accessing Struct Fields"},"131":{"body":"The & and &mut operator can be used to create references to structs or fields. These examples include some optional type annotations (e.g., : &Foo) to demonstrate the type of operations. let foo = Foo { x: 3, y: true };\nlet foo_ref: &Foo = &foo;\nlet y: bool = foo_ref.y; // reading a field via a reference to the struct\nlet x_ref: &u64 = &foo.x; // borrowing a field by extending a reference to the struct let x_ref_mut: &mut u64 = &mut foo.x;\n*x_ref_mut = 42; // modifying a field via a mutable reference It is possible to borrow inner fields of nested structs: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo); let x_ref = &bar.0.x; You can also borrow a field via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &foo;\nlet x_ref = &foo_ref.x;\n// this has the same effect as let x_ref = &foo.x","breadcrumbs":"Structs » Borrowing Structs and Fields","id":"131","title":"Borrowing Structs and Fields"},"132":{"body":"If you need to read and copy a field's value, you can then dereference the borrowed field: let foo = Foo { x: 3, y: true };\nlet bar = Bar(copy foo);\nlet x: u64 = *&foo.x;\nlet y: bool = *&foo.y;\nlet foo2: Foo = *&bar.0; More canonically, the dot operator can be used to read fields of a struct without any borrowing. As is true with dereferencing , the field type must have the copy ability . let foo = Foo { x: 3, y: true };\nlet x = foo.x; // x == 3\nlet y = foo.y; // y == true Dot operators can be chained to access nested fields: let bar = Bar(Foo { x: 3, y: true });\nlet x = baz.0.x; // x = 3; However, this is not permitted for fields that contain non-primitive types, such a vector or another struct: let foo = Foo { x: 3, y: true };\nlet bar = Bar(foo);\nlet foo2: Foo = *&bar.0;\nlet foo3: Foo = bar.0; // error! must add an explicit copy with *& We can mutably borrow a field to a struct to assign it a new value: let mut foo = Foo { x: 3, y: true };\n*&mut foo.x = 42; // foo = Foo { x: 42, y: true }\n*&mut foo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\n*&mut bar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\n*&mut bar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) Similar to dereferencing, we can instead directly use the dot operator to modify a field. And in both cases, the field type must have the drop ability . let mut foo = Foo { x: 3, y: true };\nfoo.x = 42; // foo = Foo { x: 42, y: true }\nfoo.y = !foo.y; // foo = Foo { x: 42, y: false }\nlet mut bar = Bar(foo); // bar = Bar(Foo { x: 42, y: false })\nbar.0.x = 52; // bar = Bar(Foo { x: 52, y: false })\nbar.0 = Foo { x: 62, y: true }; // bar = Bar(Foo { x: 62, y: true }) The dot syntax for assignment also works via a reference to a struct: let foo = Foo { x: 3, y: true };\nlet foo_ref = &mut foo;\nfoo_ref.x = foo_ref.x + 1;","breadcrumbs":"Structs » Reading and Writing Fields","id":"132","title":"Reading and Writing Fields"},"133":{"body":"Most struct operations on a struct type T can only be performed inside the module that declares T: Struct types can only be created (\"packed\"), destroyed (\"unpacked\") inside the module that defines the struct. The fields of a struct are only accessible inside the module that defines the struct. Following these rules, if you want to modify your struct outside the module, you will need to provide public APIs for them. The end of the chapter contains some examples of this. However as stated in the visibility section above , struct types are always visible to another module module a::m { public struct Foo has drop { x: u64 } public fun new_foo(): Foo { Foo { x: 42 } }\n} module a::n { use a::m::Foo; public struct Wrapper has drop { foo: Foo // ^ valid the type is public } fun f1(foo: Foo) { let x = foo.x; // ^ ERROR! cannot access fields of `Foo` outside of `a::m` } fun f2() { let foo_wrapper = Wrapper { foo: m::new_foo() }; // ^ valid the function is public }\n}","breadcrumbs":"Structs » Privileged Struct Operations","id":"133","title":"Privileged Struct Operations"},"134":{"body":"As mentioned above in Defining Structs , structs are by default linear and ephemeral. This means they cannot be copied or dropped. This property can be very useful when modeling real world assets like money, as you do not want money to be duplicated or get lost in circulation. module a::m { public struct Foo { x: u64 } public fun copying() { let foo = Foo { x: 100 }; let foo_copy = copy foo; // ERROR! 'copy'-ing requires the 'copy' ability let foo_ref = &foo; let another_copy = *foo_ref // ERROR! dereference requires the 'copy' ability } public fun destroying_1() { let foo = Foo { x: 100 }; // error! when the function returns, foo still contains a value. // This destruction requires the 'drop' ability } public fun destroying_2(f: &mut Foo) { *f = Foo { x: 100 } // error! // destroying the old value via a write requires the 'drop' ability }\n} To fix the example fun destroying_1, you would need to manually \"unpack\" the value: module a::m { public struct Foo { x: u64 } public fun destroying_1_fixed() { let foo = Foo { x: 100 }; let Foo { x: _ } = foo; }\n} Recall that you are only able to deconstruct a struct within the module in which it is defined. This can be leveraged to enforce certain invariants in a system, for example, conservation of money. If on the other hand, your struct does not represent something valuable, you can add the abilities copy and drop to get a struct value that might feel more familiar from other programming languages: module a::m { public struct Foo has copy, drop { x: u64 } public fun run() { let foo = Foo { x: 100 }; let foo_copy = foo; // ^ this code copies foo, // whereas `let x = move foo` would move foo let x = foo.x; // x = 100 let x_copy = foo_copy.x; // x = 100 // both foo and foo_copy are implicitly discarded when the function returns }\n}","breadcrumbs":"Structs » Ownership","id":"134","title":"Ownership"},"135":{"body":"Structs can be used to define storage schemas, but the details are different per deployment of Move. See the documentation for the key ability and Sui objects for more details.","breadcrumbs":"Structs » Storage","id":"135","title":"Storage"},"136":{"body":"An enum is a user-defined data structure containing one or more variants . Each variant can optionally contain typed fields. The number, and types of these fields can differ for each variant in the enumeration. Fields in enums can store any non-reference, non-tuple type, including other structs or enums. As a simple example, consider the following enum definition in Move: public enum Action { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64),\n} This declares an enum Action that represents different actions that can be taken by a game -- you can Stop, Pause for a given duration, MoveTo a specific location, or Jump to a specific height. Similar to structs, enums can have abilities that control what operations can be performed on them. It is important to note however that enums cannot have the key ability since they cannot be top-level objects.","breadcrumbs":"Enums » Enumerations","id":"136","title":"Enumerations"},"137":{"body":"Enums must be defined in a module, an enum must contain at least one variant, and each variant of an enum can either have no fields, positional fields, or named fields. Here are some examples of each: module a::m { public enum Foo has drop { VariantWithNoFields, // ^ note: it is fine to have a trailing comma after variant declarations } public enum Bar has copy, drop { VariantWithPositionalFields(u64, bool), } public enum Baz has drop { VariantWithNamedFields { x: u64, y: bool, z: Bar }, }\n} Enums cannot be recursive in any of their variants, so the following definitions of an enum are not allowed because they would be recursive in at least one variant. Incorrect: module a::m { public enum Foo { Recursive(Foo), // ^ error: recursive enum variant } public enum List { Nil, Cons { head: u64, tail: List }, // ^ error: recursive enum variant } public enum BTree { Leaf(T), Node { left: BTree, right: BTree }, // ^ error: recursive enum variant } // Mutually recursive enums are also not allowed public enum MutuallyRecursiveA { Base, Other(MutuallyRecursiveB), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant } public enum MutuallyRecursiveB { Base, Other(MutuallyRecursiveA), // ^^^^^^^^^^^^^^^^^^ error: recursive enum variant }\n}","breadcrumbs":"Enums » Defining Enums","id":"137","title":"Defining Enums"},"138":{"body":"All enums are declared as public. This means that the type of the enum can be referred to from any other module. However, the variants of the enum, the fields within each variant, and the ability to create or destroy variants of the enum are internal to the module that defines the enum.","breadcrumbs":"Enums » Visibility","id":"138","title":"Visibility"},"139":{"body":"Just like with structs, by default an enum declaration is linear and ephemeral. To use an enum value in a non-linear or non-ephemeral way -- i.e., copied, dropped, or stored in an object -- you need to grant it additional abilities by annotating them with has : module a::m { public enum Foo has copy, drop { VariantWithNoFields, }\n} The ability declaration can occur either before or after the enum's variants, however only one or the other can be used, and not both. If declared after the variants, the ability declaration must be terminated with a semicolon: module a::m { public enum PreNamedAbilities has copy, drop { Variant } public enum PostNamedAbilities { Variant } has copy, drop; public enum PostNamedAbilitiesInvalid { Variant } has copy, drop // ^ ERROR! missing semicolon public enum NamedInvalidAbilities has copy { Variant } has drop; // ^ ERROR! duplicate ability declaration\n} For more details, see the section on annotating abilities .","breadcrumbs":"Enums » Abilities","id":"139","title":"Abilities"},"14":{"body":"Like all types with drop , all integer types support the \"equal\" and \"not equal\" operations. Both arguments need to be of the same type. If you need to compare integers of different types, you must cast one of them first. Equality operations do not abort. Syntax Operation == equal != not equal For more details see the section on equality","breadcrumbs":"Primitive Types » Integers » Equality","id":"14","title":"Equality"},"140":{"body":"Enums and variants within enums must start with a capital letter A to Z. After the first letter, enum names can contain underscores _, lowercase letters a to z, uppercase letters A to Z, or digits 0 to 9. public enum Foo { Variant }\npublic enum BAR { Variant }\npublic enum B_a_z_4_2 { V_a_riant_0 } This naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Enums » Naming","id":"140","title":"Naming"},"141":{"body":"","breadcrumbs":"Enums » Using Enums","id":"141","title":"Using Enums"},"142":{"body":"Values of an enum type can be created (or \"packed\") by indicating a variant of the enum, followed by a value for each field in the variant. The variant name must always be qualified by the enum's name. Similarly to structs, for a variant with named fields, the order of the fields does not matter but the field names need to be provided. For a variant with positional fields, the order of the fields matters and the order of the fields must match the order in the variant declaration. It must also be created using () instead of {}. If the variant has no fields, the variant name is sufficient and no () or {} needs to be used. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public enum Other has drop { Stop(u64), } fun example() { // Note: The `Stop` variant of `Action` doesn't have fields so no parentheses or curlies are needed. let stop = Action::Stop; let pause = Action::Pause { duration: 10 }; let move_to = Action::MoveTo { x: 10, y: 20 }; let jump = Action::Jump(10); // Note: The `Stop` variant of `Other` does have positional fields so we need to supply them. let other_stop = Other::Stop(10); }\n} For variants with named fields you can also use the shorthand syntax that you might be familiar with from structs to create the variant: let duration = 10; let pause = Action::Pause { duration: duration };\n// is equivalent to\nlet pause = Action::Pause { duration };","breadcrumbs":"Enums » Creating Enum Variants","id":"142","title":"Creating Enum Variants"},"143":{"body":"Since enum values can take on different shapes, dot access to fields of variants is not allowed like it is for struct fields. Instead, to access fields within a variant -- either by value, or immutable or mutable reference -- you must use pattern matching. You can pattern match on Move values by value, immutable reference, and mutable reference. When pattern matching by value, the value is moved into the match arm. When pattern matching by reference, the value is borrowed into the match arm (either immutably or mutably). We'll go through a brief description of pattern matching using match here, but for more information on pattern matching using match in Move see the Pattern Matching section. A match statement is used to pattern match on a Move value and consists of a number of match arms . Each match arm consists of a pattern, an arrow =>, and an expression, followed by a comma ,. The pattern can be a struct, enum variant, binding (x, y), wildcard (_ or ..), constant (ConstValue), or literal value (true, 42, and so on). The value is matched against each pattern from the top-down, and will match the first pattern that structurally matches the value. Once the value is matched, the expression on the right hand side of the => is executed. Additionally, match arms can have optional guards that are checked after the pattern matches but before the expression is executed. Guards are specified by the if keyword followed by an expression that must evaluate to a boolean value before the =>. module a::m { public enum Action has drop { Stop, Pause { duration: u32 }, MoveTo { x: u64, y: u64 }, Jump(u64), } public struct GameState { // Fields containing a game state character_x: u64, character_y: u64, character_height: u64, // ... } fun perform_action(stat: &mut GameState, action: Action) { match (action) { // Handle the `Stop` variant Action::Stop => state.stop(), // Handle the `Pause` variant // If the duration is 0, do nothing Action::Pause { duration: 0 } => (), Action::Pause { duration } => state.pause(duration), // Handle the `MoveTo` variant Action::MoveTo { x, y } => state.move_to(x, y), // Handle the `Jump` variant // if the game disallows jumps then do nothing Action::Jump(_) if (state.jumps_not_allowed()) => (), // otherwise, jump to the specified height Action::Jump(height) => state.jump(height), } }\n} To see how to pattern match on an enum to update values within it mutably, let's take the following example of a simple enum that has two variants, each with a single field. We can then write two functions, one that only increments the value of the first variant, and another that only increments the value of the second variant: module a::m { public enum SimpleEnum { Variant1(u64), Variant2(u64), } public fun incr_enum_variant1(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant1(mut value) => *value += 1, _ => (), } } public fun incr_enum_variant2(simple_enum: &mut SimpleEnum) { match simple_enum { SimpleEnum::Variant2(mut value) => *value += 1, _ => (), } }\n} Now, if we have a value of SimpleEnum we can use the functions to increment the value of this variant: let mut x = SimpleEnum::Variant1(10);\nincr_enum_variant1(&mut x);\nassert!(x == SimpleEnum::Variant1(11));\n// Doesn't increment since it increments a different variant\nincr_enum_variant2(&mut x);\nassert!(x == SimpleEnum::Variant1(11)); When pattern matching on a Move value that does not have the drop ability, the value must be consumed or destructured in each match arm. If the value is not consumed or destructured in a match arm, the compiler will raise an error. This is to ensure that all possible values are handled in the match statement. As an example, consider the following code: module a::m { public enum X { Variant { x: u64 } } public fun bad(x: X) { match x { _ => () // ^ ERROR! value of type `X` is not consumed or destructured in this match arm } }\n} To properly handle this, you will need to destructure X and all its variants in the match's arm(s): module a::m { public enum X { Variant { x: u64 } } public fun good(x: X) { match x { // OK! Compiles since the value is destructured X::Variant { x: _ } => () } }\n}","breadcrumbs":"Enums » Pattern Matching Enum Variants and Destructuring","id":"143","title":"Pattern Matching Enum Variants and Destructuring"},"144":{"body":"As long as the enum has the drop ability, you can overwrite the value of an enum with a new value of the same type just as you might with other values in Move. module a::m { public enum X has drop { A(u64), B(u64), } public fun overwrite_enum(x: &mut X) { *x = X::A(10); }\n} let mut x = X::B(20);\noverwrite_enum(&mut x);\nassert!(x == X::A(10));","breadcrumbs":"Enums » Overwriting to Enum Values","id":"144","title":"Overwriting to Enum Values"},"145":{"body":"Constants are a way of giving a name to shared, static values inside of a module. The constant's value must be known at compilation. The constant's value is stored in the compiled module. And each time the constant is used, a new copy of that value is made.","breadcrumbs":"Constants » Constants","id":"145","title":"Constants"},"146":{"body":"Constant declarations begin with the const keyword, followed by a name, a type, and a value. const : = ; For example module a::example { const MY_ADDRESS: address = @a; public fun permissioned(addr: address) { assert!(addr == MY_ADDRESS, 0); }\n}","breadcrumbs":"Constants » Declaration","id":"146","title":"Declaration"},"147":{"body":"Constants must start with a capital letter A to Z. After the first letter, constant names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. const FLAG: bool = false;\nconst EMyErrorCode: u64 = 0;\nconst ADDRESS_42: address = @0x42; Even though you can use letters a to z in a constant. The general style guidelines are to use just uppercase letters A to Z, with underscores _ between each word. For error codes, we use E as a prefix and then upper camel case (also known as Pascal case) for the rest of the name, as seen in EMyErrorCode. The current naming restriction of starting with A to Z is in place to give room for future language features.","breadcrumbs":"Constants » Naming","id":"147","title":"Naming"},"148":{"body":"public or public(package) constants are not currently supported. const values can be used only in the declaring module. However, as a convenience, they can be used across modules in unit tests attributes .","breadcrumbs":"Constants » Visibility","id":"148","title":"Visibility"},"149":{"body":"Currently, constants are limited to the primitive types bool, u8, u16, u32, u64, u128, u256, address, and vector, where T is the valid type for a constant.","breadcrumbs":"Constants » Valid Expressions","id":"149","title":"Valid Expressions"},"15":{"body":"Integer types of one size can be cast to integer types of another size. Integers are the only types in Move that support casting. Casts do not truncate. Casting aborts if the result is too large for the specified type. Syntax Operation Aborts if (e as T) Cast integer expression e into an integer type T e is too large to represent as a T Here, the type of e must be 8, 16, 32, 64, 128 or 256 and T must be u8, u16, u32, u64, u128, or u256. For example: (x as u8) (y as u16) (873u16 as u32) (2u8 as u64) (1 + 3 as u128) (4/2 + 12345 as u256)","breadcrumbs":"Primitive Types » Integers » Casting","id":"15","title":"Casting"},"150":{"body":"Commonly, consts are assigned a simple value, or literal, of their type. For example const MY_BOOL: bool = false;\nconst MY_ADDRESS: address = @0x70DD;\nconst BYTES: vector = b\"hello world\";\nconst HEX_BYTES: vector = x\"DEADBEEF\";","breadcrumbs":"Constants » Values","id":"150","title":"Values"},"151":{"body":"In addition to literals, constants can include more complex expressions, as long as the compiler is able to reduce the expression to a value at compile time. Currently, equality operations, all boolean operations, all bitwise operations, and all arithmetic operations can be used. const RULE: bool = true && false;\nconst CAP: u64 = 10 * 100 + 1;\nconst SHIFTY: u8 = { (1 << 1) * (1 << 2) * (1 << 3) * (1 << 4)\n};\nconst HALF_MAX: u128 = 340282366920938463463374607431768211455 / 2;\nconst REM: u256 = 57896044618658097711785492504343953926634992332820282019728792003956564819968 % 654321;\nconst EQUAL: bool = 1 == 1; If the operation would result in a runtime exception, the compiler will give an error that it is unable to generate the constant's value const DIV_BY_ZERO: u64 = 1 / 0; // ERROR!\nconst SHIFT_BY_A_LOT: u64 = 1 << 100; // ERROR!\nconst NEGATIVE_U64: u64 = 0 - 1; // ERROR! Additionally, constants can refer to other constants within the same module. const BASE: u8 = 4;\nconst SQUARE: u8 = BASE * BASE; Note though, that any cycle in the constant definitions results in an error. const A: u16 = B + 1;\nconst B: u16 = A + 1; // ERROR!","breadcrumbs":"Constants » Complex Expressions","id":"151","title":"Complex Expressions"},"152":{"body":"Generics can be used to define functions and structs over different input data types. This language feature is sometimes referred to as parametric polymorphism. In Move, we will often use the term generics interchangeably with type parameters and type arguments . Generics are commonly used in library code, such as in vector , to declare code that works over any possible type (that satisfies the specified constraints). This sort of parameterization allows you to reuse the same implementation across multiple types and situations.","breadcrumbs":"Generics » Generics","id":"152","title":"Generics"},"153":{"body":"Both functions and structs can take a list of type parameters in their signatures, enclosed by a pair of angle brackets <...>.","breadcrumbs":"Generics » Declaring Type Parameters","id":"153","title":"Declaring Type Parameters"},"154":{"body":"Type parameters for functions are placed after the function name and before the (value) parameter list. The following code defines a generic identity function that takes a value of any type and returns that value unchanged. fun id(x: T): T { // this type annotation is unnecessary but valid (x: T)\n} Once defined, the type parameter T can be used in parameter types, return types, and inside the function body.","breadcrumbs":"Generics » Generic Functions","id":"154","title":"Generic Functions"},"155":{"body":"Type parameters for structs are placed after the struct name, and can be used to name the types of the fields. public struct Foo has copy, drop { x: T } public struct Bar has copy, drop { x: T1, y: vector,\n} Note that type parameters do not have to be used","breadcrumbs":"Generics » Generic Structs","id":"155","title":"Generic Structs"},"156":{"body":"","breadcrumbs":"Generics » Type Arguments","id":"156","title":"Type Arguments"},"157":{"body":"When calling a generic function, one can specify the type arguments for the function's type parameters in a list enclosed by a pair of angle brackets. fun foo() { let x = id(true);\n} If you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Calling Generic Functions","id":"157","title":"Calling Generic Functions"},"158":{"body":"Similarly, one can attach a list of type arguments for the struct's type parameters when constructing or destructing values of generic types. fun foo() { // type arguments on construction let foo = Foo { x: true }; let bar = Bar { x: 0, y: vector[] }; // type arguments on destruction let Foo { x } = foo; let Bar { x, y } = bar;\n} In any case if you do not specify the type arguments, Move's type inference will supply them for you.","breadcrumbs":"Generics » Using Generic Structs","id":"158","title":"Using Generic Structs"},"159":{"body":"If you specify the type arguments and they conflict with the actual values supplied, an error will be given: fun foo() { let x = id(true); // ERROR! true is not a u64\n} and similarly: fun foo() { let foo = Foo { x: 0 }; // ERROR! 0 is not a bool let Foo
{ x } = foo; // ERROR! bool is incompatible with address\n}","breadcrumbs":"Generics » Type Argument Mismatch","id":"159","title":"Type Argument Mismatch"},"16":{"body":"As with the other scalar values built-in to the language, integer values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Integers » Ownership","id":"16","title":"Ownership"},"160":{"body":"In most cases, the Move compiler will be able to infer the type arguments so you don't have to write them down explicitly. Here's what the examples above would look like if we omit the type arguments: fun foo() { let x = id(true); // ^ is inferred let foo = Foo { x: true }; // ^ is inferred let Foo { x } = foo; // ^ is inferred\n} Note: when the compiler is unable to infer the types, you'll need annotate them manually. A common scenario is to call a function with type parameters appearing only at return positions. module a::m { fun foo() { let v = vector[]; // ERROR! // ^ The compiler cannot figure out the element type, since it is never used let v = vector[]; // ^~~~~ Must annotate manually in this case. }\n} Note that these cases are a bit contrived since the vector[] is never used, ad as such, Move's type inference cannot infer the type. However, the compiler will be able to infer the type if that value is used later in that function: module a::m { fun foo() { let v = vector[]; // ^ is inferred vector::push_back(&mut v, 42); // ^ is inferred }\n}","breadcrumbs":"Generics » Type Inference","id":"160","title":"Type Inference"},"161":{"body":"In Move, the integer types u8, u16, u32, u64, u128, and u256 are all distinct types. However, each one of these types can be created with the same numerical value syntax. In other words, if a type suffix is not provided, the compiler will infer the integer type based on the usage of the value. let x8: u8 = 0;\nlet x16: u16 = 0;\nlet x32: u32 = 0;\nlet x64: u64 = 0;\nlet x128: u128 = 0;\nlet x256: u256 = 0; If the value is not used in a context that requires a specific integer type, u64 is taken as a default. let x = 0;\n// ^ u64 is used by default If the value however is too large for the inferred type, an error will be given let i: u8 = 256; // ERROR!\n// ^^^ too large for u8\nlet x = 340282366920938463463374607431768211454;\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ too large for u64 In cases where the number is too large, you might need to annotate it explicitly let x = 340282366920938463463374607431768211454u128;\n// ^^^^ valid!","breadcrumbs":"Generics » Integers","id":"161","title":"Integers"},"162":{"body":"For a struct definition, an unused type parameter is one that does not appear in any field defined in the struct, but is checked statically at compile time. Move allows unused type parameters so the following struct definition is valid: public struct Foo { foo: u64\n} This can be convenient when modeling certain concepts. Here is an example: module a::m { // Currency Specifiers public struct A {} public struct B {} // A generic coin type that can be instantiated using a currency // specifier type. // e.g. Coin, Coin etc. public struct Coin has store { value: u64 } // Write code generically about all currencies public fun mint_generic(value: u64): Coin { Coin { value } } // Write code concretely about one currency public fun mint_a(value: u64): Coin { mint_generic(value) } public fun mint_b(value: u64): Coin { mint_generic(value) }\n} In this example, Coin is generic on the Currency type parameter, which specifies the currency of the coin and allows code to be written either generically on any currency or concretely on a specific currency. This generality applies even when the Currency type parameter does not appear in any of the fields defined in Coin.","breadcrumbs":"Generics » Unused Type Parameters","id":"162","title":"Unused Type Parameters"},"163":{"body":"In the example above, although struct Coin asks for the store ability, neither Coin nor Coin will have the store ability. This is because of the rules for Conditional Abilities and Generic Types and the fact that A and B don't have the store ability, despite the fact that they are not even used in the body of struct Coin. This might cause some unpleasant consequences. For example, we are unable to put Coin into a wallet in storage. One possible solution would be to add spurious ability annotations to A and B (i.e., public struct Currency1 has store {}). But, this might lead to bugs or security vulnerabilities because it weakens the types with unnecessary ability declarations. For example, we would never expect a value in the storage to have a field in type A, but this would be possible with the spurious store ability. Moreover, the spurious annotations would be infectious, requiring many functions generic on the unused type parameter to also include the necessary constraints. Phantom type parameters solve this problem. Unused type parameters can be marked as phantom type parameters, which do not participate in the ability derivation for structs. In this way, arguments to phantom type parameters are not considered when deriving the abilities for generic types, thus avoiding the need for spurious ability annotations. For this relaxed rule to be sound, Move's type system guarantees that a parameter declared as phantom is either not used at all in the struct definition, or it is only used as an argument to type parameters also declared as phantom. Declaration In a struct definition a type parameter can be declared as phantom by adding the phantom keyword before its declaration. public struct Coin has store { value: u64\n} If a type parameter is declared as phantom we say it is a phantom type parameter. When defining a struct, Move's type checker ensures that every phantom type parameter is either not used inside the struct definition or it is only used as an argument to a phantom type parameter. public struct S1 { f: u64 }\n// ^^^^^^^ valid, T1 does not appear inside the struct definition public struct S2 { f: S1 }\n// ^^^^^^^ valid, T1 appears in phantom position The following code shows examples of violations of the rule: public struct S1 { f: T }\n// ^^^^^^^ ERROR! ^ Not a phantom position public struct S2 { f: T }\npublic struct S3 { f: S2 }\n// ^^^^^^^ ERROR! ^ Not a phantom position More formally, if a type is used as an argument to a phantom type parameter we say the type appears in phantom position . With this definition in place, the rule for the correct use of phantom parameters can be specified as follows: A phantom type parameter can only appear in phantom position . Note that specifying phantom is not required, but the compiler will warn if a type parameter could be phantom but was not marked as such. Instantiation When instantiating a struct, the arguments to phantom parameters are excluded when deriving the struct abilities. For example, consider the following code: public struct S has copy { f: T1 }\npublic struct NoCopy {}\npublic struct HasCopy has copy {} Consider now the type S. Since S is defined with copy and all non-phantom arguments have copy then S also has copy. Phantom Type Parameters with Ability Constraints Ability constraints and phantom type parameters are orthogonal features in the sense that phantom parameters can be declared with ability constraints. public struct S {} When instantiating a phantom type parameter with an ability constraint, the type argument has to satisfy that constraint, even though the parameter is phantom. The usual restrictions apply and T can only be instantiated with arguments having copy.","breadcrumbs":"Generics » Phantom Type Parameters","id":"163","title":"Phantom Type Parameters"},"164":{"body":"In the examples above, we have demonstrated how one can use type parameters to define \"unknown\" types that can be plugged in by callers at a later time. This however means the type system has little information about the type and has to perform checks in a very conservative way. In some sense, the type system must assume the worst case scenario for an unconstrained generic--a type with no abilities . Constraints offer a way to specify what properties these unknown types have so the type system can allow operations that would otherwise be unsafe.","breadcrumbs":"Generics » Constraints","id":"164","title":"Constraints"},"165":{"body":"Constraints can be imposed on type parameters using the following syntax. // T is the name of the type parameter\nT: (+ )* The can be any of the four abilities , and a type parameter can be constrained with multiple abilities at once. So all of the following would be valid type parameter declarations: T: copy\nT: copy + drop\nT: copy + drop + store + key","breadcrumbs":"Generics » Declaring Constraints","id":"165","title":"Declaring Constraints"},"166":{"body":"Constraints are checked at instantiation sites public struct Foo { x: T } public struct Bar { x: Foo }\n// ^^ valid, u8 has `copy` public struct Baz { x: Foo }\n// ^ ERROR! T does not have 'copy' And similarly for functions fun unsafe_consume(x: T) { // ERROR! x does not have 'drop'\n} fun consume(x: T) { // valid, x will be dropped automatically\n} public struct NoAbilities {} fun foo() { let r = NoAbilities {}; consume(NoAbilities); // ^^^^^^^^^^^ ERROR! NoAbilities does not have 'drop'\n} And some similar examples, but with copy fun unsafe_double(x: T) { (copy x, x) // ERROR! T does not have 'copy'\n} fun double(x: T) { (copy x, x) // valid, T has 'copy'\n} public struct NoAbilities {} fun foo(): (NoAbilities, NoAbilities) { let r = NoAbilities {}; double(r) // ^ ERROR! NoAbilities does not have 'copy'\n} For more information, see the abilities section on conditional abilities and generic types .","breadcrumbs":"Generics » Verifying Constraints","id":"166","title":"Verifying Constraints"},"167":{"body":"","breadcrumbs":"Generics » Limitations on Recursions","id":"167","title":"Limitations on Recursions"},"168":{"body":"Generic structs can not contain fields of the same type, either directly or indirectly, even with different type arguments. All of the following struct definitions are invalid: public struct Foo { x: Foo // ERROR! 'Foo' containing 'Foo'\n} public struct Bar { x: Bar // ERROR! 'Bar' containing 'Bar'\n} // ERROR! 'A' and 'B' forming a cycle, which is not allowed either.\npublic struct A { x: B\n} public struct B { x: A y: A\n}","breadcrumbs":"Generics » Recursive Structs","id":"168","title":"Recursive Structs"},"169":{"body":"Move allows generic functions to be called recursively. However, when used in combination with generic structs, this could create an infinite number of types in certain cases, and allowing this means adding unnecessary complexity to the compiler, vm and other language components. Therefore, such recursions are forbidden. This restriction might be relaxed in the future, but for now, the following examples should give you an idea of what is allowed and what is not. module a::m { public struct A {} // Finitely many types -- allowed. // foo -> foo -> foo -> ... is valid fun foo() { foo(); } // Finitely many types -- allowed. // foo -> foo> -> foo> -> ... is valid fun foo() { foo>(); }\n} Not allowed: module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> foo> -> foo>> -> ... fun foo() { foo>(); }\n} And similarly, not allowed: module a::n { public struct A {} // Infinitely many types -- NOT allowed. // error! // foo -> bar -> foo> // -> bar, T2> -> foo, A> // -> bar, A> -> foo, A>> // -> ... fun foo() { bar(); } fun bar { foo>(); }\n} Note, the check for type level recursions is based on a conservative analysis on the call sites and does NOT take control flow or runtime values into account. module a::m { public struct A {} // Infinitely many types -- NOT allowed. // error! fun foo(n: u64) { if (n > 0) foo>(n - 1); }\n} The function in the example above will technically terminate for any given input and therefore only creating finitely many types, but it is still considered invalid by Move's type system.","breadcrumbs":"Generics » Advanced Topic: Type-level Recursions","id":"169","title":"Advanced Topic: Type-level Recursions"},"17":{"body":"bool is Move's primitive type for boolean true and false values.","breadcrumbs":"Primitive Types » Bool » Bool","id":"17","title":"Bool"},"170":{"body":"Abilities are a typing feature in Move that control what actions are permissible for values of a given type. This system grants fine grained control over the \"linear\" typing behavior of values, as well as if and how values are used in storage (as defined by the specific deployment of Move, e.g. the notion of storage for the blockchain). This is implemented by gating access to certain bytecode instructions so that for a value to be used with the bytecode instruction, it must have the ability required (if one is required at all—not every instruction is gated by an ability). For Sui, key is used to signify an object . Objects are the basic unit of storage where each object has a unique, 32-byte ID. store is then used to both indicate what data can be stored inside of an object, and is also used to indicate what types can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » Abilities","id":"170","title":"Abilities"},"171":{"body":"The four abilities are: copy Allows values of types with this ability to be copied. drop Allows values of types with this ability to be popped/dropped. store Allows values of types with this ability to exist inside a value in storage. For Sui, store controls what data can be stored inside of an object . store also controls what types can be transferred outside of their defining module. key Allows the type to serve as a \"key\" for storage. Ostensibly this means the value can be a top-level value in storage; in other words, it does not need to be contained in another value to be in storage. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » The Four Abilities","id":"171","title":"The Four Abilities"},"172":{"body":"The copy ability allows values of types with that ability to be copied. It gates the ability to copy values out of local variables with the copy operator and to copy values via references with dereference *e . If a value has copy, all values contained inside of that value have copy.","breadcrumbs":"Type Abilities » copy","id":"172","title":"copy"},"173":{"body":"The drop ability allows values of types with that ability to be dropped. By dropped, we mean that value is not transferred and is effectively destroyed as the Move program executes. As such, this ability gates the ability to ignore values in a multitude of locations, including: not using the value in a local variable or parameter not using the value in a sequence via ; overwriting values in variables in assignments overwriting values via references when writing *e1 = e2 . If a value has drop, all values contained inside of that value have drop.","breadcrumbs":"Type Abilities » drop","id":"173","title":"drop"},"174":{"body":"The store ability allows values of types with this ability to exist inside of a value in storage, but not necessarily as a top-level value in storage. This is the only ability that does not directly gate an operation. Instead it gates the existence in storage when used in tandem with key. If a value has store, all values contained inside of that value have store. For Sui, store serves double duty. It controls what values can appear inside of an object , and what objects can be transferred outside of their defining module.","breadcrumbs":"Type Abilities » store","id":"174","title":"store"},"175":{"body":"The key ability allows the type to serve as a key for storage operations as defined by the deployment of Move. While it is specific per Move instance, it serves to gates all storage operations, so in order for a type to be used with storage primitives, the type must have the key ability. If a value has key, all values contained inside of that value have store. This is the only ability with this sort of asymmetry. For Sui, key is used to signify an object .","breadcrumbs":"Type Abilities » key","id":"175","title":"key"},"176":{"body":"All primitive, builtin types have copy, drop, and store. bool, u8, u16, u32, u64, u128, u256, and address all have copy, drop, and store. vector may have copy, drop, and store depending on the abilities of T. See Conditional Abilities and Generic Types for more details. Immutable references & and mutable references &mut both have copy and drop. This refers to copying and dropping the reference itself, not what they refer to. References cannot appear in global storage, hence they do not have store. Note that none of the primitive types have key, meaning none of them can be used directly with storage operations.","breadcrumbs":"Type Abilities » Builtin Types","id":"176","title":"Builtin Types"},"177":{"body":"To declare that a struct or enum has an ability, it is declared with has after the datatype name and either before or after the fields/variants. For example: public struct Ignorable has drop { f: u64 }\npublic struct Pair has copy, drop, store { x: u64, y: u64 }\npublic struct MyVec(vector) has copy, drop, store; public enum IgnorableEnum has drop { Variant }\npublic enum PairEnum has copy, drop, store { Variant }\npublic enum MyVecEnum { Variant } has copy, drop, store; In this case: Ignorable* has the drop ability. Pair* and MyVec* both have copy, drop, and store. All of these abilities have strong guarantees over these gated operations. The operation can be performed on the value only if it has that ability; even if the value is deeply nested inside of some other collection! As such: when declaring a struct’s abilities, certain requirements are placed on the fields. All fields must satisfy these constraints. These rules are necessary so that structs satisfy the reachability rules for the abilities given above. If a struct is declared with the ability... copy, all fields must have copy. drop, all fields must have drop. store, all fields must have store. key, all fields must have store. key is the only ability currently that doesn’t require itself. An enum can have any of these abilities with the exception of key, which enums cannot have because they cannot be top-level values (objects) in storage. The same rules apply to fields of enum variants as they do for struct fields though. In particular, if an enum is declared with the ability... copy, all fields of all variants must have copy. drop, all fields of all variants must have drop. store, all fields of all variants must have store. key, is not allowed on enums as previously mentioned. For example: // A struct without any abilities\npublic struct NoAbilities {} public struct WantsCopy has copy { f: NoAbilities, // ERROR 'NoAbilities' does not have 'copy'\n} public enum WantsCopyEnum has copy { Variant1 Variant2(NoAbilities), // ERROR 'NoAbilities' does not have 'copy'\n} and similarly: // A struct without any abilities\npublic struct NoAbilities {} public struct MyData has key { f: NoAbilities, // Error 'NoAbilities' does not have 'store'\n} public struct MyDataEnum has store { Variant1, Variant2(NoAbilities), // Error 'NoAbilities' does not have 'store'\n}","breadcrumbs":"Type Abilities » Annotating Structs and Enums","id":"177","title":"Annotating Structs and Enums"},"178":{"body":"When abilities are annotated on a generic type, not all instances of that type are guaranteed to have that ability. Consider this struct declaration: // public struct Cup has copy, drop, store, key { item: T } It might be very helpful if Cup could hold any type, regardless of its abilities. The type system can see the type parameter, so it should be able to remove abilities from Cup if it sees a type parameter that would violate the guarantees for that ability. This behavior might sound a bit confusing at first, but it might be more understandable if we think about collection types. We could consider the builtin type vector to have the following type declaration: vector has copy, drop, store; We want vectors to work with any type. We don't want separate vector types for different abilities. So what are the rules we would want? Precisely the same that we would want with the field rules above. So, it would be safe to copy a vector value only if the inner elements can be copied. It would be safe to ignore a vector value only if the inner elements can be ignored/dropped. And, it would be safe to put a vector in storage only if the inner elements can be in storage. To have this extra expressiveness, a type might not have all the abilities it was declared with depending on the instantiation of that type; instead, the abilities a type will have depends on both its declaration and its type arguments. For any type, type parameters are pessimistically assumed to be used inside of the struct, so the abilities are only granted if the type parameters meet the requirements described above for fields. Taking Cup from above as an example: Cup has the ability copy only if T has copy. It has drop only if T has drop. It has store only if T has store. It has key only if T has store. Here are examples for this conditional system for each ability:","breadcrumbs":"Type Abilities » Conditional Abilities and Generic Types","id":"178","title":"Conditional Abilities and Generic Types"},"179":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun example(c_x: Cup, c_s: Cup) { // Valid, 'Cup' has 'copy' because 'u64' has 'copy' let c_x2 = copy c_x; // Valid, 'Cup' has 'copy' because 'S' has 'copy' let c_s2 = copy c_s;\n} fun invalid(c_account: Cup, c_n: Cup) { // Invalid, 'Cup' does not have 'copy'. // Even though 'Cup' was declared with copy, the instance does not have 'copy' // because 'signer' does not have 'copy' let c_account2 = copy c_account; // Invalid, 'Cup' does not have 'copy' // because 'NoAbilities' does not have 'copy' let c_n2 = copy c_n;\n}","breadcrumbs":"Type Abilities » Example: conditional copy","id":"179","title":"Example: conditional copy"},"18":{"body":"Literals for bool are either true or false.","breadcrumbs":"Primitive Types » Bool » Literals","id":"18","title":"Literals"},"180":{"body":"public struct NoAbilities {}\npublic struct S has copy, drop { f: bool }\npublic struct Cup has copy, drop, store { item: T } fun unused() { Cup { item: true }; // Valid, 'Cup' has 'drop' Cup { item: S { f: false }}; // Valid, 'Cup' has 'drop'\n} fun left_in_local(c_account: Cup): u64 { let c_b = Cup { item: true }; let c_s = Cup { item: S { f: false }}; // Valid return: 'c_account', 'c_b', and 'c_s' have values // but 'Cup', 'Cup', and 'Cup' have 'drop' 0\n} fun invalid_unused() { // Invalid, Cannot ignore 'Cup' because it does not have 'drop'. // Even though 'Cup' was declared with 'drop', the instance does not have 'drop' // because 'NoAbilities' does not have 'drop' Cup { item: NoAbilities {} };\n} fun invalid_left_in_local(): u64 { let n = Cup { item: NoAbilities {} }; // Invalid return: 'c_n' has a value // and 'Cup' does not have 'drop' 0\n}","breadcrumbs":"Type Abilities » Example: conditional drop","id":"180","title":"Example: conditional drop"},"181":{"body":"public struct Cup has copy, drop, store { item: T } // 'MyInnerData is declared with 'store' so all fields need 'store'\nstruct MyInnerData has store { yes: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n} // 'MyData' is declared with 'key' so all fields need 'store'\nstruct MyData has key { yes: Cup, // Valid, 'Cup' has 'store' inner: Cup, // Valid, 'Cup' has 'store' // no: Cup, Invalid, 'Cup' does not have 'store'\n}","breadcrumbs":"Type Abilities » Example: conditional store","id":"181","title":"Example: conditional store"},"182":{"body":"public struct NoAbilities {}\npublic struct MyData has key { f: T } fun valid(addr: address) acquires MyData { // Valid, 'MyData' has 'key' transfer(addr, MyData { f: 0 });\n} fun invalid(addr: address) { // Invalid, 'MyData' does not have 'key' transfer(addr, MyData { f: NoAbilities {} }) // Invalid, 'MyData' does not have 'key' borrow(addr); // Invalid, 'MyData' does not have 'key' borrow_mut(addr);\n} // Mock storage operation\nnative public fun transfer(addr: address, value: T);","breadcrumbs":"Type Abilities » Example: conditional key","id":"182","title":"Example: conditional key"},"183":{"body":"The use syntax can be used to create aliases to members in other modules. use can be used to create aliases that last either for the entire module, or for a given expression block scope.","breadcrumbs":"Uses and Aliases » Uses and Aliases","id":"183","title":"Uses and Aliases"},"184":{"body":"There are several different syntax cases for use. Starting with the most simple, we have the following for creating aliases to other modules use
::;\nuse
:: as ; For example use std::vector;\nuse std::option as o; use std::vector; introduces an alias vector for std::vector. This means that anywhere you would want to use the module name std::vector (assuming this use is in scope), you could use vector instead. use std::vector; is equivalent to use std::vector as vector; Similarly use std::option as o; would let you use o instead of std::option use std::vector;\nuse std::option as o; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, o::some(0)); vector::push_back(&mut v, o::none()); v\n} If you want to import a specific module member (such as a function or struct). You can use the following syntax. use
::::;\nuse
:::: as ; For example use std::vector::push_back;\nuse std::option::some as s; This would let you use the function std::vector::push_back without full qualification. Similarly for std::option::some with s. Instead you could use push_back and s respectively. Again, use std::vector::push_back; is equivalent to use std::vector::push_back as push_back; use std::vector::push_back;\nuse std::option::some as s; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, s(0)); vector::push_back(&mut v, std::option::none()); v\n}","breadcrumbs":"Uses and Aliases » Syntax","id":"184","title":"Syntax"},"185":{"body":"If you want to add aliases for multiple module members at once, you can do so with the following syntax use
::::{, as ... }; For example use std::vector::push_back;\nuse std::option::{some as s, none as n}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, s(0)); push_back(&mut v, n()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases","id":"185","title":"Multiple Aliases"},"186":{"body":"If you need to add an alias to the Module itself in addition to module members, you can do that in a single use using Self. Self is a member of sorts that refers to the module. use std::option::{Self, some, none}; For clarity, all of the following are equivalent: use std::option;\nuse std::option as option;\nuse std::option::Self;\nuse std::option::Self as option;\nuse std::option::{Self};\nuse std::option::{Self as option};","breadcrumbs":"Uses and Aliases » Self aliases","id":"186","title":"Self aliases"},"187":{"body":"If needed, you can have as many aliases for any item as you like use std::vector::push_back;\nuse std::option::{Option, some, none}; fun new_vec(): vector> { let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v\n}","breadcrumbs":"Uses and Aliases » Multiple Aliases for the Same Definition","id":"187","title":"Multiple Aliases for the Same Definition"},"188":{"body":"In Move, you can also import multiple names with the same use declaration. This brings all provided names into scope: use std::{ vector::{Self as vec, push_back}, string::{String, Self as str}\n}; fun example(s: &mut String) { let mut v = vec::empty(); push_back(&mut v, 0); push_back(&mut v, 10); str::append_utf8(s, v);\n}","breadcrumbs":"Uses and Aliases » Nested imports","id":"188","title":"Nested imports"},"189":{"body":"Inside of a module all use declarations are usable regardless of the order of declaration. module a::example { use std::vector; fun new_vec(): vector> { let mut v = vector[]; vector::push_back(&mut v, 0); vector::push_back(&mut v, 10); v } use std::option::{Option, some, none};\n} The aliases declared by use in the module usable within that module. Additionally, the aliases introduced cannot conflict with other module members. See Uniqueness for more details","breadcrumbs":"Uses and Aliases » Inside a module","id":"189","title":"Inside a module"},"19":{"body":"","breadcrumbs":"Primitive Types » Bool » Operations","id":"19","title":"Operations"},"190":{"body":"You can add use declarations to the beginning of any expression block module a::example { fun new_vec(): vector> { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }\n} As with let, the aliases introduced by use in an expression block are removed at the end of that block. module a::example { fun new_vec(): vector> { let result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); push_back(&mut v, none()); v }; result }\n} Attempting to use the alias after the block ends will result in an error fun new_vec(): vector> { let mut result = { use std::vector::push_back; use std::option::{Option, some, none}; let mut v = vector[]; push_back(&mut v, some(0)); v }; push_back(&mut result, std::option::none()); // ^^^^^^ ERROR! unbound function 'push_back' result } Any use must be the first item in the block. If the use comes after any expression or let, it will result in a parsing error { let mut v = vector[]; use std::vector; // ERROR!\n} This allows you to shorten your import blocks in many situations. Note that these imports, as the previous ones, are all subject to the naming and uniqueness rules described in the following sections.","breadcrumbs":"Uses and Aliases » Inside an expression","id":"190","title":"Inside an expression"},"191":{"body":"Aliases must follow the same rules as other module members. This means that aliases to structs (and constants) must start with A to Z module a::data { public struct S {} const FLAG: bool = false; public fun foo() {}\n}\nmodule a::example { use a::data::{ S as s, // ERROR! FLAG as fLAG, // ERROR! foo as FOO, // valid foo as bar, // valid };\n}","breadcrumbs":"Uses and Aliases » Naming rules","id":"191","title":"Naming rules"},"192":{"body":"Inside a given scope, all aliases introduced by use declarations must be unique. For a module, this means aliases introduced by use cannot overlap module a::example { use std::option::{none as foo, some as foo}; // ERROR! // ^^^ duplicate 'foo' use std::option::none as bar; use std::option::some as bar; // ERROR! // ^^^ duplicate 'bar' } And, they cannot overlap with any of the module's other members module a::data { public struct S {}\n}\nmodule example { use a::data::S; public struct S { value: u64 } // ERROR! // ^ conflicts with alias 'S' above\n}\n} Inside of an expression block, they cannot overlap with each other, but they can shadow other aliases or names from an outer scope","breadcrumbs":"Uses and Aliases » Uniqueness","id":"192","title":"Uniqueness"},"193":{"body":"use aliases inside of an expression block can shadow names (module members or aliases) from the outer scope. As with shadowing of locals, the shadowing ends at the end of the expression block; module a::example { public struct WrappedVector { vec: vector } public fun empty(): WrappedVector { WrappedVector { vec: std::vector::empty() } } public fun push_back(v: &mut WrappedVector, value: u64) { std::vector::push_back(&mut v.vec, value); } fun example1(): WrappedVector { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut vec = vector[]; push_back(&mut vec, 0); push_back(&mut vec, 1); push_back(&mut vec, 10); WrappedVector { vec } } fun example2(): WrappedVector { let vec = { use std::vector::push_back; // 'push_back' now refers to std::vector::push_back let mut v = vector[]; push_back(&mut v, 0); push_back(&mut v, 1); v }; // 'push_back' now refers to Self::push_back let mut res = WrappedVector { vec }; push_back(&mut res, 10); res }\n}","breadcrumbs":"Uses and Aliases » Shadowing","id":"193","title":"Shadowing"},"194":{"body":"An unused use will result in a warning module a::example { use std::option::{some, none}; // Warning! // ^^^^ unused alias 'none' public fun example(): std::option::Option { some(0) }\n}","breadcrumbs":"Uses and Aliases » Unused Use or Alias","id":"194","title":"Unused Use or Alias"},"195":{"body":"As a syntactic convenience, some functions in Move can be called as \"methods\" on a value. This is done by using the . operator to call the function, where the value on the left-hand side of the . is the first argument to the function (sometimes called the receiver). The type of that value statically determines which function is called. This is an important difference from some other languages, where this syntax might indicate a dynamic call, where the function to be called is determined at runtime. In Move, all function calls are statically determined. In short, this syntax exists to make it easier to call functions without having to create an alias with use, and without having to explicitly borrow the first argument to the function. Additionally, this can make code more readable, as it reduces the amount of boilerplate needed to call a function and makes it easier to chain function calls.","breadcrumbs":"Method Syntax » Methods","id":"195","title":"Methods"},"196":{"body":"The syntax for calling a method is as follows: . <[type_arguments],*> ( ) For example coin.value();\n*nums.borrow_mut(i) = 5;","breadcrumbs":"Method Syntax » Syntax","id":"196","title":"Syntax"},"197":{"body":"When a method is called, the compiler will statically determine which function is called based on the type of the receiver (the argument on the left-hand side of the .). The compiler maintains a mapping from type and method name to the module and function name that should be called. This mapping is created form the use fun aliases that are currently in scope, and from the appropriate functions in the receiver type's defining module. In all cases, the receiver type is the first argument to the function, whether by-value or by-reference. In this section, when we say a method \"resolves\" to a function, we mean that the compiler will statically replace the method with a normal function call. For example if we have x.foo(e) with foo resolving to a::m::foo, the compiler will replace x.foo(e) with a::m::foo(x, e), potentially automatically borrowing x.","breadcrumbs":"Method Syntax » Method Resolution","id":"197","title":"Method Resolution"},"198":{"body":"In a type’s defining module, the compiler will automatically create a method alias for any function declaration for its types when the type is the first argument in the function. For example, module a::m { public struct X() has copy, drop, store; public fun foo(x: &X) { ... } public fun bar(flag: bool, x: &X) { ... }\n} The function foo can be called as a method on a value of type X. However, not the first argument (and one is not created for bool since bool is not defined in that module). For example, fun example(x: a::m::X) { x.foo(); // valid // x.bar(true); ERROR!\n}","breadcrumbs":"Method Syntax » Functions in the Defining Module","id":"198","title":"Functions in the Defining Module"},"199":{"body":"Like a traditional use , a use fun statement creates an alias local to its current scope. This could be for the current module or the current expression block. However, the alias is associated to a type. The syntax for a use fun statement is as follows: use fun as .; This creates an alias for the , which the can receive as . For example module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 } public fun cup_value(c: Cup): T { let Cup(t) = c; t } public fun cup_swap(c: &mut Cup, t: T) { c.0 = t; }\n} We can now create use fun aliases to these functions module b::example { use fun a::cup::cup_borrow as Cup.borrow; use fun a::cup::cup_value as Cup.value; use fun a::cup::cup_swap as Cup.set; fun example(c: &mut Cup) { let _ = c.borrow(); // resolves to a::cup::cup_borrow let v = c.value(); // resolves to a::cup::cup_value c.set(v * 2); // resolves to a::cup::cup_swap }\n} Note that the in the use fun does not have to be a fully resolved path, and an alias can be used instead, so the declarations in the above example could equivalently be written as use a::cup::{Self, cup_swap}; use fun cup::cup_borrow as Cup.borrow; use fun cup::cup_value as Cup.value; use fun cup_swap as Cup.set; While these examples are cute for renaming the functions in the current module, the feature is perhaps more useful for declaring methods on types from other modules. For example, if we wanted to add a new utility to Cup, we could do so with a use fun alias and still use method syntax module b::example { fun double(c: &Cup): Cup { let v = c.value(); Cup::new(v * 2) } } Normally, we would be stuck having to call it as double(&c) because b::example did not define Cup, but instead we can use a use fun alias fun double_double(c: Cup): (Cup, Cup) { use fun b::example::double as Cup.dub; (c.dub(), c.dub()) // resolves to b::example::double in both calls } While use fun can be made in any scope, the target of the use fun must have a first argument that is the same as the . public struct X() has copy, drop, store; fun new(): X { X() }\nfun flag(flag: bool): u8 { if (flag) 1 else 0 } use fun new as X.new; // ERROR!\nuse fun flag as X.flag; // ERROR!\n// Neither `new` nor `flag` has first argument of type `X` But any first argument of the can be used, including references and mutable references public struct X() has copy, drop, store; public fun by_val(_: X) {}\npublic fun by_ref(_: &X) {}\npublic fun by_mut(_: &mut X) {} // All 3 valid, in any scope\nuse fun by_val as X.v;\nuse fun by_ref as X.r;\nuse fun by_mut as X.m; Note for generics, the methods are associated for all instances of the generic type. You cannot overload the method to resolve to different functions depending on the instantiation. public struct Cup(T) has copy, drop, store; public fun value(c: &Cup): T { c.0\n} use fun value as Cup.flag; // ERROR!\nuse fun value as Cup.num; // ERROR!\n// In both cases, `use fun` aliases cannot be generic, they must work for all instances of the type","breadcrumbs":"Method Syntax » use fun Aliases","id":"199","title":"use fun Aliases"},"2":{"body":"A module has the following syntax: module
:: { ( | | | )*\n} where
is a valid address specifying the module's package. For example: module 0x42::test { public struct Example has copy, drop { i: u64 } use std::debug; const ONE: u64 = 1; public fun print(x: u64) { let sum = x + ONE; let example = Example { i: sum }; debug::print(&sum) }\n}","breadcrumbs":"Modules » Syntax","id":"2","title":"Syntax"},"20":{"body":"bool supports three logical operations: Syntax Description Equivalent Expression && short-circuiting logical and p && q is equivalent to if (p) q else false || short-circuiting logical or p || q is equivalent to if (p) true else q ! logical negation !p is equivalent to if (p) false else true","breadcrumbs":"Primitive Types » Bool » Logical","id":"20","title":"Logical"},"200":{"body":"Unlike a traditional use , the use fun statement can be made public, which allows it to be used outside of its declared scope. A use fun can be made public if it is declared in the module that defines the receivers type, much like the method aliases that are automatically created for functions in the defining module. Or conversely, one can think that an implicit public use fun is created automatically for every function in the defining module that has a first argument of the receiver type (if it is defined in that module). Both of these views are equivalent. module a::cup { public struct Cup(T) has copy, drop, store; public use fun cup_borrow as Cup.borrow; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} In this example, a public method alias is created for a::cup::Cup.borrow and a::cup::Cup.cup_borrow. Both resolve to a::cup::cup_borrow. And both are \"public\" in the sense that they can be used outside of a::cup, without an additional use or use fun. module b::example { fun example(c: a::cup::Cup) { c.borrow(); // resolves to a::cup::cup_borrow c.cup_borrow(); // resolves to a::cup::cup_borrow }\n} The public use fun declarations thus serve as a way of renaming a function if you want to give it a cleaner name for use with method syntax. This is especially helpful if you have a module with multiple types, and similarly named functions for each type. module a::shapes { public struct Rectangle { base: u64, height: u64 } public struct Box { base: u64, height: u64, depth: u64 } // Rectangle and Box can have methods with the same name public use fun rectangle_base as Rectangle.base; public fun rectangle_base(rectangle: &Rectangle): u64 { rectangle.base } public use fun box_base as Box.base; public fun box_base(box: &Box): u64 { box.base } } Another use for public use fun is adding methods to types from other modules. This can be helpful in conjunction with functions spread out across a single package. module a::cup { public struct Cup(T) has copy, drop, store; public fun new(t: T): Cup { Cup(t) } public fun borrow(c: &Cup): &T { &c.0 } // `public use fun` to a function defined in another module public use fun a::utils::split as Cup.split;\n} module a::utils { use a::m::{Self, Cup}; public fun split(c: Cup): (Cup, Cup) { let Cup(t) = c; let half = t / 2; let rem = if (t > 0) t - half else 0; (cup::new(half), cup::new(rem)) } } And note that this public use fun does not create a circular dependency, as the use fun is not present after the module is compiled--all methods are resolved statically.","breadcrumbs":"Method Syntax » public use fun Aliases","id":"200","title":"public use fun Aliases"},"201":{"body":"A small detail to note is that method aliases respect normal use aliases. module a::cup { public struct Cup(T) has copy, drop, store; public fun cup_borrow(c: &Cup): &T { &c.0 }\n} module b::other { use a::cup::{Cup, cup_borrow as borrow}; fun example(c: &Cup) { c.borrow(); // resolves to a::cup::cup_borrow }\n} A helpful way to think about this is that use creates an implicit use fun alias for the function whenever it can. In this case the use a::cup::cup_borrow as borrow creates an implicit use fun a::cup::cup_borrow as Cup.borrow because it would be a valid use fun alias. Both views are equivalent. This line of reasoning can inform how specific methods will resolve with shadowing. See the cases in Scoping for more details.","breadcrumbs":"Method Syntax » Interactions with use Aliases","id":"201","title":"Interactions with use Aliases"},"202":{"body":"If not public, a use fun alias is local to its scope, much like a normal use . For example module a::m { public struct X() has copy, drop, store; public fun foo(_: &X) {} public fun bar(_: &X) {}\n} module b::other { use a::m::X; use fun a::m::foo as X.f; fun example(x: &X) { x.f(); // resolves to a::m::foo { use a::m::bar as f; x.f(); // resolves to a::m::bar }; x.f(); // still resolves to a::m::foo { use fun a::m::bar as X.f; x.f(); // resolves to a::m::bar } }","breadcrumbs":"Method Syntax » Scoping","id":"202","title":"Scoping"},"203":{"body":"When resolving a method, the compiler will automatically borrow the receiver if the function expects a reference. For example module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} fun example(mut x: X) { x.by_ref(); // resolves to a::m::by_ref(&x) x.by_mut(); // resolves to a::m::by_mut(&mut x) }\n} In these examples, x was automatically borrowed to &x and &mut x respectively. This will also work through field access module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } fun example(mut y: Y) { y.x.by_ref(); // resolves to a::m::by_ref(&y.x) y.x.by_mut(); // resolves to a::m::by_mut(&mut y.x) }\n} Note that in both examples, the local variable had to be labeled as mut to allow for the &mut borrow. Without this, there would be an error saying that x (or y in the second example) is not mutable. Keep in mind that without a reference, normal rules for variable and field access come into play. Meaning a value might be moved or copied if it is not borrowed. module a::m { public struct X() has copy, drop; public fun by_val(_: X) {} public fun by_ref(_: &X) {} public fun by_mut(_: &mut X) {} public struct Y has drop { x: X } public fun drop_y(y: Y) { y } fun example(y: Y) { y.x.by_val(); // copies `y.x` since `by_val` is by-value and `X` has `copy` y.drop_y(); // moves `y` since `drop_y` is by-value and `Y` does _not_ have `copy` }\n}","breadcrumbs":"Method Syntax » Automatic Borrowing","id":"203","title":"Automatic Borrowing"},"204":{"body":"Method calls can be chained, because any expression can be the receiver of the method. module a::shapes { public struct Point has copy, drop, store { x: u64, y: u64 } public struct Line has copy, drop, store { start: Point, end: Point } public fun x(p: &Point): u64 { p.x } public fun y(p: &Point): u64 { p.y } public fun start(l: &Line): &Point { &l.start } public fun end(l: &Line): &Point { &l.end } } module b::example { use a::shapes::Line; public fun x_values(l: Line): (u64, u64) { (l.start().x(), l.end().x()) } } In this example for l.start().x(), the compiler first resolves l.start() to a::shapes::start(&l). Then .x() is resolved to a::shapes::x(a::shapes::start(&l)). Similarly for l.end().x(). Keep in mind, this feature is not \"special\"--the left-hand side of the . can be any expression, and the compiler will resolve the method call as normal. We simply draw attention to this sort of \"chaining\" because it is a common practice to increase readability.","breadcrumbs":"Method Syntax » Chaining","id":"204","title":"Chaining"},"205":{"body":"Move provides syntax attributes to allow you to define operations that look and feel like native Move code, lowering these operations into your user-provided definitions. Our first syntax method, index, allows you to define a group of operations that can be used as custom index accessors for your datatypes, such as accessing a matrix element as m[i,j], by annotating functions that should be used for these index operations. Moreover, these definitions are bespoke per-type and available implicitly for any programmer using your type.","breadcrumbs":"Index Syntax Methods » Index Syntax","id":"205","title":"Index Syntax"},"206":{"body":"To start, consider a Matrix type that uses a vector of vectors to represent its values. You can write a small library using index syntax annotations on the borrow and borrow_mut functions as follows: module matrix { public struct Matrix { v: vector> } #[syntax(index)] public fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j) } #[syntax(index)] public fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { vector::borrow_mut(vector::borrow_mut(&mut s.v, i), j) } public fun make_matrix(v: vector>): Matrix { Matrix { v } } } Now anyone using this Matrix type has access to index syntax for it: let mut m = matrix::make_matrix(vector[ vector[1, 0, 0], vector[0, 1, 0], vector[0, 0, 1],\n]); let mut i = 0;\nwhile (i < 3) { let mut j = 0; while (j < 3) { if (i == j) { assert!(m[i, j] == 1, 1); } else { assert!(m[i, j] == 0, 0); }; *(&mut m[i,j]) = 2; j = j + 1; }; i = i + 1;\n}","breadcrumbs":"Index Syntax Methods » Overview and Summary","id":"206","title":"Overview and Summary"},"207":{"body":"As the example indicates, if you define a datatype and an associated index syntax method, anyone can invoke that method by writing index syntax on a value of that type: let mat = matrix::make_matrix(...);\nlet m_0_0 = mat[0, 0]; During compilation, the compiler translates these into the appropriate function invocations based on the position and mutable usage of the expression: let mut mat = matrix::make_matrix(...); let m_0_0 = mat[0, 0];\n// translates to `copy matrix::borrow(&mat, 0, 0)` let m_0_0 = &mat[0, 0];\n// translates to `matrix::borrow(&mat, 0, 0)` let m_0_0 = &mut mat[0, 0];\n// translates to `matrix::borrow_mut(&mut mat, 0, 0)`\n`` You can also intermix index expressions with field accesses: ```move\npublic struct V { v: vector } public struct Vs { vs: vector } fun borrow_first(input: &Vs): &u64 { &input.vs[0].v[0] // translates to `vector::borrow(&vector::borrow(&input.vs, 0).v, 0)`\n}","breadcrumbs":"Index Syntax Methods » Usage","id":"207","title":"Usage"},"208":{"body":"Note that, aside from the definition and type limitations described in the rest of this chapter, Move places no restrictions on the values your index syntax method takes as parameters. This allows you to implement intricate programmatic behavior when defining index syntax, such as a data structure that takes a default value if the index is out of bounds: #[syntax(index)]\npublic fun borrow_or_set( input: &mut MTable, key: Key, default: Value\n): &mut Value { if (contains(input, key)) { borrow(input, key) } else { insert(input, key, default); borrow(input, key) }\n} Now, when you index into MTable, you must also provide a default value: let string_key: String = ...;\nlet mut table: MTable = m_table::make_table();\nlet entry: &mut u64 = &mut table[string_key, 0]; This sort of extensible power allows you to write precise index interfaces for your types, concretely enforcing bespoke behavior.","breadcrumbs":"Index Syntax Methods » Index Functions Take Flexible Arguments","id":"208","title":"Index Functions Take Flexible Arguments"},"209":{"body":"This powerful syntax form allows all of your user-defined datatypes to behave in this way, assuming your definitions adhere to the following rules: The #[syntax(index)] attribute is added to the designated functions defined in the same module as the subject type. The designated functions have public visibility. The functions take a reference type as its subject type (its first argument) and returns a matching references type (mut if the subject was mut). Each type has only a single mutable and single immutable definition. Immutable and mutable versions have type agreement: The subject types match, differing only in mutability. The return types match the mutability of their subject types. Type parameters, if present, have identical constraints between both versions. All parameters beyond the subject type are identical. The following content and additional examples describe these rules in greater detail.","breadcrumbs":"Index Syntax Methods » Defining Index Syntax Functions","id":"209","title":"Defining Index Syntax Functions"},"21":{"body":"bool values are used in several of Move's control-flow constructs: if (bool) { ... } while (bool) { .. } assert!(bool, u64)","breadcrumbs":"Primitive Types » Bool » Control Flow","id":"21","title":"Control Flow"},"210":{"body":"To declare an index syntax method, add the #[syntax(index)] attribute above the relevant function definition in the same module as the subject type's definition. This signals to the compiler that the function is an index accessor for the specified type. Immutable Accessor The immutable index syntax method is defined for read-only access. It takes an immutable reference of the subject type and returns an immutable reference to the element type. The borrow function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow(v: &vector, i: u64): ∈ Mutable Accessor The mutable index syntax method is the dual of the immutable one, allowing for both read and write operations. It takes a mutable reference of the subject type and returns a mutable reference to the element type. The borrow_mut function defined in std::vector is an example of this: #[syntax(index)]\npublic native fun borrow_mut(v: &mut vector, i: u64): &mut Element; Visibility To ensure that indexing functions are available anywhere the type is used, all index syntax methods must have public visibility. This ensures ergonomic usage of indexing across modules and packages in Move. No Duplicates In addition to the above requirements, we restrict each subject base type to defining a single index syntax method for immutable references and a single index syntax method for mutable references. For example, you cannot define a specialized version for a polymorphic type: #[syntax(index)]\npublic fun borrow_matrix_u64(s: &Matrix, i: u64, j: u64): &u64 { ... } #[syntax(index)]\npublic fun borrow_matrix(s: &Matrix, i: u64, j: u64): &T { ... } // ERROR! Matrix already has a definition // for its immutable index syntax method This ensures that you can always tell which method is being invoked, without the need to inspect type instantiation.","breadcrumbs":"Index Syntax Methods » Declaration","id":"210","title":"Declaration"},"211":{"body":"By default, an index syntax method has the following type constraints: Its subject type (first argument) must be a reference to a single type defined in the same module as the marked function. This means that you cannot define index syntax methods for tuples, type parameters, or values: #[syntax(index)]\npublic fun borrow_fst(x: &(u64, u64), ...): &u64 { ... } // ERROR because the subject type is a tuple #[syntax(index)]\npublic fun borrow_tyarg(x: &T, ...): &T { ... } // ERROR because the subject type is a type parameter #[syntax(index)]\npublic fun borrow_value(x: Matrix, ...): &u64 { ... } // ERROR because x is not a reference The subject type must match mutability with the return type. This restriction allows you to clarify the expected behavior when borrowing an indexed expression as &vec[i] versus &mut vec[i]. The Move compiler uses the mutability marker to determine which borrow form to call to produce a reference of the appropriate mutability. As a result, we disallow index syntax methods whose subject and return mutability differ: #[syntax(index)]\npublic fun borrow_imm(x: &mut Matrix, ...): &u64 { ... } // ERROR! incompatible mutability // expected a mutable reference '&mut' return type","breadcrumbs":"Index Syntax Methods » Type Constraints","id":"211","title":"Type Constraints"},"212":{"body":"When defining an immutable and mutable index syntax method pair, they are subject to a number of compatibility constraints: They must take the same number of type parameters, those type parameters must have the same constraints. Type parameters must be used the same by position , not name. Their subject types must match exactly except for the mutability. Their return types must match exactly except for the mutability. All other parameter types must match exactly. These constraints are to ensure that index syntax behaves identically regardless of being in a mutable or immutable position. To illustrate some of these errors, recall the previous Matrix definition: #[syntax(index)]\npublic fun borrow(s: &Matrix, i: u64, j: u64): &T { vector::borrow(vector::borrow(&s.v, i), j)\n} All of the following are type-incompatible definitions of the mutable version: #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut T { ... } // ERROR! `T` has `drop` here, but no in the immutable version #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut u64 { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u64): &mut U { ... } // ERROR! This takes a different number of type parameters #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i_j: (u64, u64)): &mut U { ... } // ERROR! This takes a different number of arguments #[syntax(index)]\npublic fun borrow_mut(s: &mut Matrix, i: u64, j: u32): &mut U { ... } // ERROR! `j` is a different type Again, the goal here is to make the usage across the immutable and mutable versions consistent. This allows index syntax methods to work without changing out the behavior or constraints based on mutable versus immutable usage, ultimately ensuring a consistent interface to program against.","breadcrumbs":"Index Syntax Methods » Type Compatibility","id":"212","title":"Type Compatibility"},"213":{"body":"Packages allow Move programmers to more easily re-use code and share it across projects. The Move package system allows programmers to easily: Define a package containing Move code; Parameterize a package by named addresses ; Import and use packages in other Move code and instantiate named addresses; Build packages and generate associated compilation artifacts from packages; and Work with a common interface around compiled Move artifacts.","breadcrumbs":"Packages » Packages","id":"213","title":"Packages"},"214":{"body":"A Move package source directory contains a Move.toml package manifest file, a generated Move.lock file, and a set of subdirectories: a_move_package\n├── Move.toml (required)\n├── Move.lock (generated)\n├── sources (required)\n├── doc_templates (optional)\n├── examples (optional, test & dev mode)\n└── tests (optional, test mode) The directories and files labeled \"required\" must be present for a directory to be considered a Move package and built. Optional directories may be present, and if so, they will be included in the compilation process depending on the mode used to build the package. For instance, when built in \"dev\" or \"test\" modes, the tests and examples directories will also be included. Going through each of these in turn: The Move.toml file is the package manifest and is required for a directory to be considered a Move package. This file contains metadata about the package, such as name, dependencies, and so on. The Move.lock file is generated by the Move CLI and contains the fixed build versions of the package and its dependencies. It is used to ensure consistent versions are used across different builds and that changes in dependencies are apparent as a change in this file. The sources directory is required and contains the Move modules that make up the package. Modules in this directory will always be included in the compilation process. The doc_templates directory can contain documentation templates that will be used when generating documentation for the package. The examples directory can hold additional code to be used only for development and/or tutorials, this will not be included when compiled outside of test or dev modes. The tests directory can contain Move modules that are only included when compiled in test mode or when Move unit tests are run.","breadcrumbs":"Packages » Package Layout and Manifest Syntax","id":"214","title":"Package Layout and Manifest Syntax"},"215":{"body":"The Move package manifest is defined within the Move.toml file and has the following syntax. Optional fields are marked with *, + denotes one or more elements: [package]\nname = \nedition* = # e.g., \"2024.alpha\" to use the Move 2024 edition, # currently in alpha. Will default to the latest stable edition if not specified.\nlicense* = # e.g., \"MIT\", \"GPL\", \"Apache 2.0\"\nauthors* = [,+] # e.g., [\"Joe Smith (joesmith@noemail.com)\", \"John Snow (johnsnow@noemail.com)\"] # Additional fields may be added to this section by external tools. E.g., on Sui the following sections are added:\npublished-at* = \"\" # The address that the package is published at. Should be set after the first publication. [dependencies] # (Optional section) Paths to dependencies\n# One or more lines declaring dependencies in the following format # ##### Local Dependencies #####\n# For local dependencies use `local = path`. Path is relative to the package root\n# Local = { local = \"../path/to\" }\n# To resolve a version conflict and force a specific version for dependency\n# override you can use `override = true`\n# Override = { local = \"../conflicting/version\", override = true }\n# To instantiate address values in a dependency, use `addr_subst`\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n} # ##### Git Dependencies #####\n# For remote import, use the `{ git = \"...\", subdir = \"...\", rev = \"...\" }`.\n# Revision must be supplied, it can be a branch, a tag, or a commit hash.\n# If no `subdir` is specified, the root of the repository is used.\n# MyRemotePackage = { git = \"https://some.remote/host.git\", subdir = \"remote/path\", rev = \"main\" }\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [addresses] # (Optional section) Declares named addresses in this package\n# One or more lines declaring named addresses in the following format\n# Addresses that match the name of the package must be set to `\"0x0\"` or they will be unable to be published.\n = \"_\" | \"\" # e.g., std = \"_\" or my_addr = \"0xC0FFEECAFE\" # Named addresses will be accessible in Move as `@name`. They're also exported:\n# for example, `std = \"0x1\"` is exported by the Standard Library.\n# alice = \"0xA11CE\" [dev-dependencies] # (Optional section) Same as [dependencies] section, but only included in \"dev\" and \"test\" modes\n# The dev-dependencies section allows overriding dependencies for `--test` and\n# `--dev` modes. You can e.g., introduce test-only dependencies here.\n# Local = { local = \"../path/to/dev-build\" }\n = { local = , override* = , addr_subst* = { ( = ( | \"\"))+ }\n}\n = { git = , subdir=, rev=, override* = , addr_subst* = { ( = ( | \"\"))+ }\n} [dev-addresses] # (Optional section) Same as [addresses] section, but only included in \"dev\" and \"test\" modes\n# The dev-addresses section allows overwriting named addresses for the `--test`\n# and `--dev` modes.\n = \"\" # e.g., alice = \"0xB0B\" An example of a minimal package manifest: [package]\nname = \"AName\" An example of a more standard package manifest that also includes the Move standard library and instantiates the named address std from the LocalDep package with the address value 0x1: [package]\nname = \"AName\"\nlicense = \"Apache 2.0\" [addresses]\naddress_to_be_filled_in = \"_\"\nspecified_address = \"0xB0B\" [dependencies]\n# Local dependency\nLocalDep = { local = \"projects/move-awesomeness\", addr_subst = { \"std\" = \"0x1\" } }\n# Git dependency\nMoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" } [dev-addresses] # For use when developing this module\naddress_to_be_filled_in = \"0x101010101\" Most of the sections in the package manifest are self explanatory, but named addresses can be a bit difficult to understand so we examine them in more detail in Named Addresses During Compilation .","breadcrumbs":"Packages » Move.toml","id":"215","title":"Move.toml"},"216":{"body":"Recall that Move has named addresses and that named addresses cannot be declared in Move. Instead they are declared at the package level: in the manifest file (Move.toml) for a Move package you declare named addresses in the package, instantiate other named addresses, and rename named addresses from other packages within the Move package system. Let's go through each of these actions, and how they are performed in the package's manifest one-by-one:","breadcrumbs":"Packages » Named Addresses During Compilation","id":"216","title":"Named Addresses During Compilation"},"217":{"body":"Let's say we have a Move module in example_pkg/sources/A.move as follows: module named_addr::a { public fun x(): address { @named_addr }\n} We could in example_pkg/Move.toml declare the named address named_addr in two different ways. The first: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" Declares named_addr as a named address in the package example_pkg and that this address can be any valid address value . In particular, an importing package can pick the value of the named address named_addr to be any address it wishes. Intuitively you can think of this as parameterizing the package example_pkg by the named address named_addr, and the package can then be instantiated later on by an importing package. named_addr can also be declared as: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"0xCAFE\" which states that the named address named_addr is exactly 0xCAFE and cannot be changed. This is useful so other importing packages can use this named address without needing to worry about the exact value assigned to it. With these two different declaration methods, there are two ways that information about named addresses can flow in the package graph: The former (\"unassigned named addresses\") allows named address values to flow from the importation site to the declaration site. The latter (\"assigned named addresses\") allows named address values to flow from the declaration site upwards in the package graph to usage sites. With these two methods for flowing named address information throughout the package graph the rules around scoping and renaming become important to understand.","breadcrumbs":"Packages » Declaring Named Addresses","id":"217","title":"Declaring Named Addresses"},"218":{"body":"A named address N in a package P is in scope if: P declares a named address N; or A package in one of P's transitive dependencies declares the named address N and there is a dependency path in the package graph between between P and the declaring package of N with no renaming of N. Additionally, every named address in a package is exported. Because of this and the above scoping rules each package can be viewed as coming with a set of named addresses that will be brought into scope when the package is imported, e.g., if you import example_pkg, that import will also bring the named_addr named address into scope. Because of this, if P imports two packages P1 and P2 both of which declare a named address N an issue arises in P: which \"N\" is meant when N is referred to in P? The one from P1 or P2? To prevent this ambiguity around which package a named address is coming from, we enforce that the sets of scopes introduced by all dependencies in a package are disjoint, and provide a way to rename named addresses when the package that brings them into scope is imported. Renaming a named address when importing can be done as follows in our P, P1, and P2 example above: [package]\nname = \"P\"\n...\n[dependencies]\nP1 = { local = \"some_path_to_P1\", addr_subst = { \"P1N\" = \"N\" } }\nP2 = { local = \"some_path_to_P2\" } With this renaming N refers to the N from P2 and P1N will refer to N coming from P1: module N::A { public fun x(): address { @P1N }\n} It is important to note that renaming is not local : once a named address N has been renamed to N2 in a package P all packages that import P will not see N but only N2 unless N is reintroduced from outside of P. This is why rule (2) in the scoping rules at the start of this section specifies a \"dependency path in the package graph between between P and the declaring package of N with no renaming of N.\"","breadcrumbs":"Packages » Scope and Renaming of Named Addresses","id":"218","title":"Scope and Renaming of Named Addresses"},"219":{"body":"Named addresses can be instantiated multiple times across the package graph as long as it is always with the same value. It is an error if the same named address (regardless of renaming) is instantiated with differing values across the package graph. A Move package can only be compiled if all named addresses resolve to a value. This presents issues if the package wishes to expose an uninstantiated named address. This is what the [dev-addresses] section solves in part. This section can set values for named addresses, but cannot introduce any named addresses. Additionally, only the [dev-addresses] in the root package are included in dev mode. For example a root package with the following manifest would not compile outside of dev mode since named_addr would be uninstantiated: [package]\nname = \"example_pkg\"\n...\n[addresses]\nnamed_addr = \"_\" [dev-addresses]\nnamed_addr = \"0xC0FFEE\"","breadcrumbs":"Packages » Instantiating Named Addresses","id":"219","title":"Instantiating Named Addresses"},"22":{"body":"As with the other scalar values built-in to the language, boolean values are implicitly copyable, meaning they can be copied without an explicit instruction such as copy .","breadcrumbs":"Primitive Types » Bool » Ownership","id":"22","title":"Ownership"},"220":{"body":"The Move package system comes with a command line option as part of the CLI: sui move . Unless a particular path is provided, all package commands will run in the current enclosing Move package. The full list of commands and flags for the Move CLI can be found by running sui move --help.","breadcrumbs":"Packages » Usage and Artifacts","id":"220","title":"Usage and Artifacts"},"221":{"body":"A package can be compiled using CLI commands. This will create a build directory containing build-related artifacts (including bytecode binaries, source maps, and documentation). The general layout of the build directory is as follows: a_move_package\n├── BuildInfo.yaml\n├── bytecode_modules\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mv\n│ │ ...\n│ │ └── \n│ │ └── *.mv\n│ ...\n│ └── *.mv\n├── docs\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.md\n│ │ ...\n│ │ └── \n│ │ └── *.md\n│ ...\n│ └── *.md\n├── source_maps\n│ ├── dependencies\n│ │ ├── \n│ │ │ └── *.mvsm\n│ │ ...\n│ │ └── \n│ │ └── *.mvsm\n│ ...\n│ └── *.mvsm\n└── sources ... └── *.move ├── dependencies │ ├── │ │ └── *.move │ ... │ └── │ └── *.move ... └── *.move","breadcrumbs":"Packages » Artifacts","id":"221","title":"Artifacts"},"222":{"body":"The Move.lock file is generated at the root of the Move package when the package is built. The Move.lock file contains information about your package and its build configuration, and acts as a communication layer between the Move compiler and other tools, like chain-specific command line interfaces and third-party package managers. Like the Move.toml file, the Move.lock file is a text-based TOML file. Unlike the package manifest however, the Move.lock file is not intended for you to edit directly. Processes on the toolchain, like the Move compiler, access and edit the file to read and append relevant information to it. You also must not move the file from the root, as it needs to be at the same level as the Move.toml manifest in the package. If you are using source control for your package, it's recommended practice to check in the Move.lock file that corresponds with your desired built or published package. This ensures that every build of your package is an exact replica of the original, and that changes to the build will be apparent as changes to the Move.lock file. The Move.lock file is a TOML file that currently contains the following fields. Note : other fields may be added to the lock file either in the future, or by third-party package package managers as well.","breadcrumbs":"Packages » Move.lock","id":"222","title":"Move.lock"},"223":{"body":"This section contains the core information needed in the lockfile: The version of the lockfile (needed for backwards compatibility checking, and versioning lockfile changes in the future). The hash of the Move.toml file that was used to generate this lock file. The hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string. The list of dependencies. [move]\nversion = # Lock file version, used for backwards compatibility checking.\nmanifest_digest = # Sha3-256 hash of the Move.toml file that was used to generate this lock file.\ndeps_digest = # Sha3-256 hash of the Move.lock file of all dependencies. If no dependencies are present, this will be an empty string.\ndependencies = { (name = )* } # List of dependencies. Not present if there are no dependencies.","breadcrumbs":"Packages » The [move] Section","id":"223","title":"The [move] Section"},"224":{"body":"After the Move compiler resolves each of the dependencies for the package it writes the location of the dependency to the Move.lock file. If a dependency failed to resolve, the compiler will not write the Move.lock file and the build fails. If all dependencies resolve, the Move.lock file contains the locations (local and remote) of all of the package's transitive dependencies. These will be stored in the Move.lock file in the following format: # ... [[move.package]]\nname = \"A\"\nsource = { git = \"https://github.com/b/c.git\", subdir = \"e/f\", rev = \"a1b2c3\" } [[move.package]]\nname = \"B\"\nsource = { local = \"../local-dep\" }","breadcrumbs":"Packages » The [move.package] Sections","id":"224","title":"The [move.package] Sections"},"225":{"body":"As mentioned above, additional fields may be added to the lock file by external tools. For example, the Sui package manager adds toolchain version information to the lock file that can then be used for on-chain source verification: # ... [move.toolchain-version]\ncompiler-version = # The version of the Move compiler used to build the package, e.g. \"1.21.0\"\nedition = # The edition of the Move language used to build the package, e.g. \"2024.alpha\"\nflavor = # The flavor of the Move compiler used to build the package, e.g. \"sui\"","breadcrumbs":"Packages » The [move.toolchain-version] Section","id":"225","title":"The [move.toolchain-version] Section"},"226":{"body":"Unit testing for Move uses three annotations in the Move source language: #[test] marks a function as a test; #[expected_failure] marks that a test is expected to fail; #[test_only] marks a module or module member ( use , function , struct , or constant ) as code to be included for testing only. These annotations can be placed on any appropriate form with any visibility. Whenever a module or module member is annotated as #[test_only] or #[test], it will not be included in the compiled bytecode unless it is compiled for testing.","breadcrumbs":"Unit Tests » Unit Tests","id":"226","title":"Unit Tests"},"227":{"body":"The #[test] annotation can only be placed on a function with no parameters. This annotation marks the function as a test to be run by the unit testing harness. #[test] // OK\nfun this_is_a_test() { ... } #[test] // Will fail to compile since the test takes an argument\nfun this_is_not_correct(arg: u64) { ... } A test can also be annotated as an #[expected_failure]. This annotation marks that the test is expected to raise an error. There are a number of options that can be used with the #[expected_failure] annotation to ensure only a failure with the specified condition is marked as passing, these options are detailed in Expected Failures . Only functions that have the #[test] annotation can also be annotated as an #[expected_failure]. Some simple examples of using the #[expected_failure] annotation are shown below: #[test]\n#[expected_failure]\npublic fun this_test_will_abort_and_pass() { abort 1 } #[test]\n#[expected_failure]\npublic fun test_will_error_and_pass() { 1/0; } #[test] // Will pass since test fails with the expected abort code constant.\n#[expected_failure(abort_code = ENotFound)] // ENotFound is a constant defined in the module\npublic fun test_will_error_and_pass_abort_code() { abort ENotFound } #[test] // Will fail since test fails with a different error than expected.\n#[expected_failure(abort_code = my_module::ENotFound)]\npublic fun test_will_error_and_fail() { 1/0; } #[test, expected_failure] // Can have multiple in one attribute. This test will pass.\npublic fun this_other_test_will_abort_and_pass() { abort 1 } Note : #[test] and #[test_only] functions can also call entry functions, regardless of their visibility.","breadcrumbs":"Unit Tests » Test Annotations","id":"227","title":"Test Annotations"},"228":{"body":"There are a number of different ways that you can use the #[expected_failure] annotation to specify different types of error conditions. These are:","breadcrumbs":"Unit Tests » Expected Failures","id":"228","title":"Expected Failures"},"229":{"body":"This will pass if the test aborts with the specified constant value in the module that defines the constant and fail otherwise. This is the recommended way of testing for expected test failures. Note : You can reference constants outside of the current module or package in expected_failure annotations. module pkg_addr::other_module { const ENotFound: u64 = 1; public fun will_abort() { abort ENotFound }\n} module pkg_addr::my_module { use pkg_addr::other_module; const ENotFound: u64 = 1; #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { abort ENotFound } #[test] #[expected_failure(abort_code = other_module::ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() } // FAIL: Will not pass since we are expecting the constant from the wrong module. #[test] #[expected_failure(abort_code = ENotFound)] fun test_will_abort_and_pass() { other_module::will_abort() }\n}","breadcrumbs":"Unit Tests » 1. #[expected_failure(abort_code = )]","id":"229","title":"1. #[expected_failure(abort_code = )]"},"23":{"body":"address is a built-in type in Move that is used to represent locations (sometimes called accounts) in storage. An address value is a 256-bit (32 byte) identifier. Move uses addresses to differentiate packages of modules , where each package has its own address and modules. Specific deployments of Move might also use the address value for storage operations. For Sui, address is used to represent \"accounts\", and also objects via strong type wrappers (with sui::object::UID and sui::object::ID). Although an address is a 256 bit integer under the hood, Move addresses are intentionally opaque---they cannot be created from integers, they do not support arithmetic operations, and they cannot be modified. Specific deployments of Move might have native functions to enable some of these operations (e.g., creating an address from bytes vector), but these are not part of the Move language itself. While there are runtime address values (values of type address), they cannot be used to access modules at runtime.","breadcrumbs":"Primitive Types » Address » Address","id":"23","title":"Address"},"230":{"body":"This specifies that the test is expected to fail with an arithmetic error (e.g., integer overflow, division by zero, etc) at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_arith_error() { 1/0; }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_pass1() { 1/0; } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_arith_error_and_pass2() { other_module::will_arith_error() } // FAIL: Will fail since the location we expect it the fail at is different from where the test actually failed. #[test] #[expected_failure(arithmetic_error, location = Self)] fun test_will_arith_error_and_fail() { other_module::will_arith_error() }\n}","breadcrumbs":"Unit Tests » 2. #[expected_failure(arithmetic_error, location = )]","id":"230","title":"2. #[expected_failure(arithmetic_error, location = )]"},"231":{"body":"This specifies that the test is expected to fail with an out of gas error at the specified location. The must be a valid path to a module location, e.g., Self, or my_package::my_module. module pkg_addr::other_module { public fun will_oog() { loop {} }\n} module pkg_addr::my_module { use pkg_addr::other_module; #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_pass1() { loop {} } #[test] #[expected_failure(arithmetic_error, location = pkg_addr::other_module)] fun test_will_oog_and_pass2() { other_module::will_oog() } // FAIL: Will fail since the location we expect it the fail at is different from where // the test actually failed. #[test] #[expected_failure(out_of_gas, location = Self)] fun test_will_oog_and_fail() { other_module::will_oog() }\n}","breadcrumbs":"Unit Tests » 3. #[expected_failure(out_of_gas, location = )]","id":"231","title":"3. #[expected_failure(out_of_gas, location = )]"},"232":{"body":"This specifies that the test is expected to fail with a vector error at the specified location with the given minor_status (if provided). The must be a valid path to a module module location, e.g., Self, or my_package::my_module. The is an optional parameter that specifies the minor status of the vector error. If it is not specified, the test will pass if the test fails with any minor status. If it is specified, the test will only pass if the test fails with a vector error with the specified minor status. module pkg_addr::other_module { public fun vector_borrow_empty() { &vector[][1]; }\n} module pkg_addr::my_module { #[test] #[expected_failure(vector_error, location = Self)] fun vector_abort_same_module() { vector::borrow(&vector[], 1); } #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // Can specify minor statues (i.e., vector-specific error codes) to expect. #[test] #[expected_failure(vector_error, minor_status = 1, location = Self)] fun native_abort_good_right_code() { vector::borrow(&vector[], 1); } // FAIL: correct error, but wrong location. #[test] #[expected_failure(vector_error, location = pkg_addr::other_module)] fun vector_abort_same_module() { other_module::vector_borrow_empty(); } // FAIL: correct error and location but the minor status differs so this test will fail. #[test] #[expected_failure(vector_error, minor_status = 0, location = Self)] fun vector_abort_wrong_minor_code() { vector::borrow(&vector[], 1); }\n}","breadcrumbs":"Unit Tests » 4. #[expected_failure(vector_error, minor_status = , location = )]","id":"232","title":"4. #[expected_failure(vector_error, minor_status = , location = )]"},"233":{"body":"This will pass if the test aborts with any error code. You should be incredibly careful using this to annotate expected tests failures, and always prefer one of the ways described above instead. Examples of these types of annotations are: #[test]\n#[expected_failure]\nfun test_will_abort_and_pass1() { abort 1 } #[test]\n#[expected_failure]\nfun test_will_arith_error_and_pass2() { 1/0; }","breadcrumbs":"Unit Tests » 5. #[expected_failure]","id":"233","title":"5. #[expected_failure]"},"234":{"body":"A module and any of its members can be declared as test only. If an item is annotated as #[test_only] the item will only be included in the compiled Move bytecode when compiled in test mode. Additionally, when compiled outside of test mode, any non-test uses of a #[test_only] module will raise an error during compilation. Note : functions that are annotated with #[test_only] will only be available to be called from test code, but they themselves are not tests and will not be run as tests by the unit testing framework. #[test_only] // test only attributes can be attached to modules\nmodule abc { ... } #[test_only] // test only attributes can be attached to constants\nconst MY_ADDR: address = @0x1; #[test_only] // .. to uses\nuse pkg_addr::some_other_module; #[test_only] // .. to structs\npublic struct SomeStruct { ... } #[test_only] // .. and functions. Can only be called from test code, but this is _not_ a test!\nfun test_only_function(...) { ... }","breadcrumbs":"Unit Tests » Test Only Annotations","id":"234","title":"Test Only Annotations"},"235":{"body":"Unit tests for a Move package can be run with the sui move test command . When running tests, every test will either PASS, FAIL, or TIMEOUT. If a test case fails, the location of the failure along with the function name that caused the failure will be reported if possible. You can see an example of this below. A test will be marked as timing out if it exceeds the maximum number of instructions that can be executed for any single test. This bound can be changed using the options below. Additionally, while the result of a test is always deterministic, tests are run in parallel by default, so the ordering of test results in a test run is non-deterministic unless running with only one thread, which can be configured via an option. These aforementioned options are two among many that can fine-tune testing and help debug failing tests. To see all available options, and a description of what each one does, pass the --help flag to the sui move test command: $ sui move test --help","breadcrumbs":"Unit Tests » Running Unit Tests","id":"235","title":"Running Unit Tests"},"236":{"body":"A simple module using some of the unit testing features is shown in the following example: First create an empty package and change directory into it: $ sui move new test_example; cd test_example Next add the following module under the sources directory: // filename: sources/my_module.move\nmodule test_example::my_module { public struct Wrapper(u64) const ECoinIsZero: u64 = 0; public fun make_sure_non_zero_coin(coin: Wrapper): Wrapper { assert!(coin.0 > 0, ECoinIsZero); coin } #[test] fun make_sure_non_zero_coin_passes() { let coin = Wrapper(1); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test] // Or #[expected_failure] if we don't care about the abort code #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails() { let coin = Wrapper(0); let Wrapper(_) = make_sure_non_zero_coin(coin); } #[test_only] // test only helper function fun make_coin_zero(coin: &mut Wrapper) { coin.0 = 0; } #[test] #[expected_failure(abort_code = ECoinIsZero)] fun make_sure_zero_coin_fails2() { let mut coin = Wrapper(10); coin.make_coin_zero(); let Wrapper(_) = make_sure_non_zero_coin(coin); }\n}","breadcrumbs":"Unit Tests » Example","id":"236","title":"Example"},"237":{"body":"You can then run these tests with the move test command: $ sui move test\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2\nTest result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Running Tests","id":"237","title":"Running Tests"},"238":{"body":"Passing specific tests to run You can run a specific test, or a set of tests with sui move test . This will only run tests whose fully qualified name contains . For example if we wanted to only run tests with \"non_zero\" in their name: $ sui move test non_zero\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\nTest result: OK. Total tests: 1; passed: 1; failed: 0 -i or --gas_used This bounds the amount of gas that can be consumed for any one test to : $ sui move test -i 0\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ TIMEOUT ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails\n[ FAIL ] 0x0::my_module::make_sure_zero_coin_fails2 Test failures: Failures in 0x0::my_module: ┌── make_sure_non_zero_coin_passes ──────\n│ Test timed out\n└────────────────── ┌── make_sure_zero_coin_fails ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:22:27\n│ │\n│ 21 │ fun make_sure_zero_coin_fails() {\n│ │ ------------------------- In this function in 0x0::my_module\n│ 22 │ let coin = MyCoin(0);\n│ │ ^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── ┌── make_sure_zero_coin_fails2 ──────\n│ error[E11001]: test failure\n│ ┌─ ./sources/my_module.move:34:31\n│ │\n│ 33 │ fun make_sure_zero_coin_fails2() {\n│ │ -------------------------- In this function in 0x0::my_module\n│ 34 │ let mut coin = MyCoin(10);\n│ │ ^^ Test did not error as expected. Expected test to abort with code 0 \n│\n│\n└────────────────── Test result: FAILED. Total tests: 3; passed: 0; failed: 3 -s or --statistics With these flags you can gather statistics about the tests run and report the runtime and gas used for each test. You can additionally add csv (sui move test -s csv) to get the gas usage in a csv output format. For example, if we wanted to see the statistics for the tests in the example above: $ sui move test -s\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING test_example\nRunning Move unit tests\n[ PASS ] 0x0::my_module::make_sure_non_zero_coin_passes\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails\n[ PASS ] 0x0::my_module::make_sure_zero_coin_fails2 Test Statistics: ┌────────────────────────────────────────────────┬────────────┬───────────────────────────┐\n│ Test Name │ Time │ Gas Used │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_non_zero_coin_passes │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails │ 0.001 │ 1 │\n├────────────────────────────────────────────────┼────────────┼───────────────────────────┤\n│ 0x0::my_module::make_sure_zero_coin_fails2 │ 0.001 │ 1 │\n└────────────────────────────────────────────────┴────────────┴───────────────────────────┘ Test result: OK. Total tests: 3; passed: 3; failed: 0","breadcrumbs":"Unit Tests » Using Test Flags","id":"238","title":"Using Test Flags"},"239":{"body":"See Sui's Coding Conventions for Move","breadcrumbs":"Coding Conventions","id":"239","title":"Coding Conventions"},"24":{"body":"Addresses come in two flavors, named or numerical. The syntax for a named address follows the same rules for any named identifier in Move. The syntax of a numerical address is not restricted to hex-encoded values, and any valid u256 numerical value can be used as an address value, e.g., 42, 0xCAFE, and 10_000 are all valid numerical address literals. To distinguish when an address is being used in an expression context or not, the syntax when using an address differs depending on the context where it's used: When an address is used as an expression, the address must be prefixed by the @ character, i.e., @ or @. Outside of expression contexts, the address may be written without the leading @ character, i.e., or . In general, you can think of @ as an operator that takes an address from being a namespace item to being an expression item.","breadcrumbs":"Primitive Types » Address » Addresses and Their Syntax","id":"24","title":"Addresses and Their Syntax"},"240":{"body":"NOTE: this feature has been superseded by public(package) . The friend syntax was used to declare modules that are trusted by the current module. A trusted module is allowed to call any function defined in the current module that have the public(friend) visibility. For details on function visibilities, refer to the Visibility section in Functions .","breadcrumbs":"Friends » DEPRECATED: Friends","id":"240","title":"DEPRECATED: Friends"},"241":{"body":"A module can declare other modules as friends via friend declaration statements, in the format of friend — friend declaration using fully qualified module name like the example below, or module 0x42::a { friend 0x42::b;\n} friend — friend declaration using a module name alias, where the module alias is introduced via the use statement. module 0x42::a { use 0x42::b; friend b;\n} A module may have multiple friend declarations, and the union of all the friend modules forms the friend list. In the example below, both 0x42::B and 0x42::C are considered as friends of 0x42::A. module 0x42::a { friend 0x42::b; friend 0x42::c;\n} Unlike use statements, friend can only be declared in the module scope and not in the expression block scope. friend declarations may be located anywhere a top-level construct (e.g., use, function, struct, etc.) is allowed. However, for readability, it is advised to place friend declarations near the beginning of the module definition.","breadcrumbs":"Friends » Friend declaration","id":"241","title":"Friend declaration"},"242":{"body":"Friend declarations are subject to the following rules: A module cannot declare itself as a friend. module 0x42::m { friend Self; // ERROR! }\n// ^^^^ Cannot declare the module itself as a friend module 0x43::m { friend 0x43::M; // ERROR! }\n// ^^^^^^^ Cannot declare the module itself as a friend Friend modules must be known by the compiler module 0x42::m { friend 0x42::nonexistent; // ERROR! }\n// ^^^^^^^^^^^^^^^^^ Unbound module '0x42::nonexistent' Friend modules must be within the same account address. module 0x42::m {} module 0x42::n { friend 0x42::m; // ERROR! }\n// ^^^^^^^ Cannot declare modules out of the current address as a friend Friends relationships cannot create cyclic module dependencies. Cycles are not allowed in the friend relationships, e.g., the relation 0x2::a friends 0x2::b friends 0x2::c friends 0x2::a is not allowed. More generally, declaring a friend module adds a dependency upon the current module to the friend module (because the purpose is for the friend to call functions in the current module). If that friend module is already used, either directly or transitively, a cycle of dependencies would be created. module 0x2::a { use 0x2::c; friend 0x2::b; public fun a() { c::c() }\n} module 0x2::b { friend 0x2::c; // ERROR!\n// ^^^^^^ This friend relationship creates a dependency cycle: '0x2::b' is a friend of '0x2::a' uses '0x2::c' is a friend of '0x2::b'\n} module 0x2::c { public fun c() {}\n} The friend list for a module cannot contain duplicates. module 0x42::a {} module 0x42::m { use 0x42::a as aliased_a; friend 0x42::A; friend aliased_a; // ERROR!\n// ^^^^^^^^^ Duplicate friend declaration '0x42::a'. Friend declarations in a module must be unique\n}","breadcrumbs":"Friends » Friend declaration rules","id":"242","title":"Friend declaration rules"},"25":{"body":"Named addresses are a feature that allow identifiers to be used in place of numerical values in any spot where addresses are used, and not just at the value level. Named addresses are declared and bound as top level elements (outside of modules and scripts) in Move packages, or passed as arguments to the Move compiler. Named addresses only exist at the source language level and will be fully substituted for their value at the bytecode level. Because of this, modules and module members should be accessed through the module's named address and not through the numerical value assigned to the named address during compilation. So while use my_addr::foo is equivalent to use 0x2::foo (if my_addr is assigned 0x2), it is a best practice to always use the my_addr name.","breadcrumbs":"Primitive Types » Address » Named Addresses","id":"25","title":"Named Addresses"},"26":{"body":"// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000001\nlet a1: address = @0x1;\n// shorthand for\n// 0x0000000000000000000000000000000000000000000000000000000000000042\nlet a2: address = @0x42;\n// shorthand for\n// 0x00000000000000000000000000000000000000000000000000000000DEADBEEF\nlet a3: address = @0xDEADBEEF;\n// shorthand for\n// 0x000000000000000000000000000000000000000000000000000000000000000A\nlet a4: address = @0x0000000000000000000000000000000A;\n// Assigns `a5` the value of the named address `std`\nlet a5: address = @std;\n// Any valid numerical value can be used as an address\nlet a6: address = @66;\nlet a7: address = @42_000; module 66::some_module { // Not in expression context, so no @ needed use 0x1::other_module; // Not in expression context so no @ needed use std::vector; // Can use a named address as a namespace item ...\n} module std::other_module { // Can use a named address when declaring a module ...\n}","breadcrumbs":"Primitive Types » Address » Examples","id":"26","title":"Examples"},"27":{"body":"vector is the only primitive collection type provided by Move. A vector is a homogeneous collection of T's that can grow or shrink by pushing/popping values off the \"end\". A vector can be instantiated with any type T. For example, vector, vector
, vector<0x42::my_module::MyData>, and vector> are all valid vector types.","breadcrumbs":"Primitive Types » Vector » Vector","id":"27","title":"Vector"},"28":{"body":"","breadcrumbs":"Primitive Types » Vector » Literals","id":"28","title":"Literals"},"29":{"body":"Vectors of any type can be created with vector literals. Syntax Type Description vector[] vector[]: vector where T is any single, non-reference type An empty vector vector[e1, ..., en] vector[e1, ..., en]: vector where e_i: T s.t. 0 < i <= n and n > 0 A vector with n elements (of length n) In these cases, the type of the vector is inferred, either from the element type or from the vector's usage. If the type cannot be inferred, or simply for added clarity, the type can be specified explicitly: vector[]: vector\nvector[e1, ..., en]: vector Example Vector Literals (vector[]: vector);\n(vector[0u8, 1u8, 2u8]: vector);\n(vector[]: vector);\n(vector
[@0x42, @0x100]: vector
);","breadcrumbs":"Primitive Types » Vector » General vector Literals","id":"29","title":"General vector Literals"},"3":{"body":"The module test_addr::test part specifies that the module test will be published under the numerical address value assigned for the name test_addr in the package settings . Modules should normally be declared using named addresses (as opposed to using the numerical value directly). For example: module test_addr::test { public struct Example has copy, drop { a: address } friend test_addr::another_test; public fun print() { let example = Example { a: @test_addr }; debug::print(&example) }\n} These named addresses commonly match the name of the package . Because named addresses only exist at the source language level and during compilation, named addresses will be fully substituted for their value at the bytecode level. For example if we had the following code: fun example() { my_addr::m::foo(@my_addr);\n} and we compiled it with my_addr set to 0xC0FFEE, then it would be operationally equivalent to the following: fun example() { 0xC0FFEE::m::foo(@0xC0FFEE);\n} While at the source level these two different accesses are equivalent, it is a best practice to always use the named address and not the numerical value assigned to that address. Module names can start with a lowercase letter from a to z or an uppercase letter from A to Z. After the first character, module names can contain underscores _, letters a to z, letters A to Z, or digits 0 to 9. module a::my_module {}\nmodule a::foo_bar_42 {} Typically, module names start with a lowercase letter. A module named my_module should be stored in a source file named my_module.move.","breadcrumbs":"Modules » Names","id":"3","title":"Names"},"30":{"body":"A common use-case for vectors in Move is to represent \"byte arrays\", which are represented with vector. These values are often used for cryptographic purposes, such as a public key or a hash result. These values are so common that specific syntax is provided to make the values more readable, as opposed to having to use vector[] where each individual u8 value is specified in numeric form. There are currently two supported types of vector literals, byte strings and hex strings . Byte Strings Byte strings are quoted string literals prefixed by a b, e.g. b\"Hello!\\n\". These are ASCII encoded strings that allow for escape sequences. Currently, the supported escape sequences are: Escape Sequence Description \\n New line (or Line feed) \\r Carriage return \\t Tab \\\\ Backslash \\0 Null \\\" Quote \\xHH Hex escape, inserts the hex byte sequence HH Hex Strings Hex strings are quoted string literals prefixed by a x, e.g. x\"48656C6C6F210A\". Each byte pair, ranging from 00 to FF, is interpreted as hex encoded u8 value. So each byte pair corresponds to a single entry in the resulting vector. Example String Literals fun byte_and_hex_strings() { assert!(b\"\" == x\"\", 0); assert!(b\"Hello!\\n\" == x\"48656C6C6F210A\", 1); assert!(b\"\\x48\\x65\\x6C\\x6C\\x6F\\x21\\x0A\" == x\"48656C6C6F210A\", 2); assert!( b\"\\\"Hello\\tworld!\\\"\\n \\r \\\\Null=\\0\" == x\"2248656C6C6F09776F726C6421220A200D205C4E756C6C3D00\", 3 );\n}","breadcrumbs":"Primitive Types » Vector » vector literals","id":"30","title":"vector literals"},"31":{"body":"vector supports the following operations via the std::vector module in the Move standard library: Function Description Aborts? vector::empty(): vector Create an empty vector that can store values of type T Never vector::singleton(t: T): vector Create a vector of size 1 containing t Never vector::push_back(v: &mut vector, t: T) Add t to the end of v Never vector::pop_back(v: &mut vector): T Remove and return the last element in v If v is empty vector::borrow(v: &vector, i: u64): &T Return an immutable reference to the T at index i If i is not in bounds vector::borrow_mut(v: &mut vector, i: u64): &mut T Return a mutable reference to the T at index i If i is not in bounds vector::destroy_empty(v: vector) Delete v If v is not empty vector::append(v1: &mut vector, v2: vector) Add the elements in v2 to the end of v1 Never vector::contains(v: &vector, e: &T): bool Return true if e is in the vector v. Otherwise, returns false Never vector::swap(v: &mut vector, i: u64, j: u64) Swaps the elements at the ith and jth indices in the vector v If i or j is out of bounds vector::reverse(v: &mut vector) Reverses the order of the elements in the vector v in place Never vector::index_of(v: &vector, e: &T): (bool, u64) Return (true, i) if e is in the vector v at index i. Otherwise, returns (false, 0) Never vector::remove(v: &mut vector, i: u64): T Remove the ith element of the vector v, shifting all subsequent elements. This is O(n) and preserves ordering of elements in the vector If i is out of bounds vector::swap_remove(v: &mut vector, i: u64): T Swap the ith element of the vector v with the last element and then pop the element, This is O(1), but does not preserve ordering of elements in the vector If i is out of bounds More operations may be added over time.","breadcrumbs":"Primitive Types » Vector » Operations","id":"31","title":"Operations"},"32":{"body":"use std::vector; let mut v = vector::empty();\nvector::push_back(&mut v, 5);\nvector::push_back(&mut v, 6); assert!(*vector::borrow(&v, 0) == 5, 42);\nassert!(*vector::borrow(&v, 1) == 6, 42);\nassert!(vector::pop_back(&mut v) == 6, 42);\nassert!(vector::pop_back(&mut v) == 5, 42);","breadcrumbs":"Primitive Types » Vector » Example","id":"32","title":"Example"},"33":{"body":"Some behaviors of vector depend on the abilities of the element type, T. For example, vectors containing elements that do not have drop cannot be implicitly discarded like v in the example above--they must be explicitly destroyed with vector::destroy_empty. Note that vector::destroy_empty will abort at runtime unless vec contains zero elements: fun destroy_any_vector(vec: vector) { vector::destroy_empty(vec) // deleting this line will cause a compiler error\n} But no error would occur for dropping a vector that contains elements with drop: fun destroy_droppable_vector(vec: vector) { // valid! // nothing needs to be done explicitly to destroy the vector\n} Similarly, vectors cannot be copied unless the element type has copy. In other words, a vector has copy if and only if T has copy. Note that it will be implicitly copied if needed: let x = vector[10];\nlet y = x; // implicit copy\nlet z = x;\n(y, z) Keep in mind, copies of large vectors can be expensive. If this is a concern, annotating the intended usage can prevent accidental copies. For example, let x = vector[10];\nlet y = move x;\nlet z = x; // ERROR! x has been moved\n(y, z) For more details see the sections on type abilities and generics .","breadcrumbs":"Primitive Types » Vector » Destroying and copying vectors","id":"33","title":"Destroying and copying vectors"},"34":{"body":"As mentioned above , vector values can be copied only if the elements can be copied. In that case, the copy can be done via a copy or a dereference * .","breadcrumbs":"Primitive Types » Vector » Ownership","id":"34","title":"Ownership"},"35":{"body":"Move has two types of references: immutable & and mutable &mut. Immutable references are read only, and cannot modify the underlying value (or any of its fields). Mutable references allow for modifications via a write through that reference. Move's type system enforces an ownership discipline that prevents reference errors.","breadcrumbs":"Primitive Types » References » References","id":"35","title":"References"},"36":{"body":"Move provides operators for creating and extending references as well as converting a mutable reference to an immutable one. Here and elsewhere, we use the notation e: T for \"expression e has type T\". Syntax Type Description &e &T where e: T and T is a non-reference type Create an immutable reference to e &mut e &mut T where e: T and T is a non-reference type Create a mutable reference to e. &e.f &T where e.f: T Create an immutable reference to field f of struct e. &mut e.f &mut T where e.f: T Create a mutable reference to field f of structe. freeze(e) &T where e: &mut T Convert the mutable reference e into an immutable reference. The &e.f and &mut e.f operators can be used both to create a new reference into a struct or to extend an existing reference: let s = S { f: 10 };\nlet f_ref1: &u64 = &s.f; // works\nlet s_ref: &S = &s;\nlet f_ref2: &u64 = &s_ref.f // also works A reference expression with multiple fields works as long as both structs are in the same module: public struct A { b: B }\npublic struct B { c : u64 }\nfun f(a: &A): &u64 { &a.b.c\n} Finally, note that references to references are not allowed: let x = 7;\nlet y: &u64 = &x;\nlet z: &&u64 = &y; // ERROR! will not compile","breadcrumbs":"Primitive Types » References » Reference Operators","id":"36","title":"Reference Operators"},"37":{"body":"Both mutable and immutable references can be read to produce a copy of the referenced value. Only mutable references can be written. A write *x = v discards the value previously stored in x and updates it with v. Both operations use the C-like * syntax. However, note that a read is an expression, whereas a write is a mutation that must occur on the left hand side of an equals. Syntax Type Description *e T where e is &T or &mut T Read the value pointed to by e *e1 = e2 () where e1: &mut T and e2: T Update the value in e1 with e2. In order for a reference to be read, the underlying type must have the copy ability as reading the reference creates a new copy of the value. This rule prevents the copying of assets: fun copy_coin_via_ref_bad(c: Coin) { let c_ref = &c; let counterfeit: Coin = *c_ref; // not allowed! pay(c); pay(counterfeit);\n} Dually: in order for a reference to be written to, the underlying type must have the drop ability as writing to the reference will discard (or \"drop\") the old value. This rule prevents the destruction of resource values: fun destroy_coin_via_ref_bad(mut ten_coins: Coin, c: Coin) { let ref = &mut ten_coins; *ref = c; // ERROR! not allowed--would destroy 10 coins!\n}","breadcrumbs":"Primitive Types » References » Reading and Writing Through References","id":"37","title":"Reading and Writing Through References"},"38":{"body":"A mutable reference can be used in a context where an immutable reference is expected: let mut x = 7;\nlet y: &u64 = &mut x; This works because the under the hood, the compiler inserts freeze instructions where they are needed. Here are a few more examples of freeze inference in action: fun takes_immut_returns_immut(x: &u64): &u64 { x } // freeze inference on return value\nfun takes_mut_returns_immut(x: &mut u64): &u64 { x } fun expression_examples() { let mut x = 0; let mut y = 0; takes_immut_returns_immut(&x); // no inference takes_immut_returns_immut(&mut x); // inferred freeze(&mut x) takes_mut_returns_immut(&mut x); // no inference assert!(&x == &mut y, 42); // inferred freeze(&mut y)\n} fun assignment_examples() { let x = 0; let y = 0; let imm_ref: &u64 = &x; imm_ref = &x; // no inference imm_ref = &mut y; // inferred freeze(&mut y)\n}","breadcrumbs":"Primitive Types » References » freeze inference","id":"38","title":"freeze inference"},"39":{"body":"With this freeze inference, the Move type checker can view &mut T as a subtype of &T. As shown above, this means that anywhere for any expression where a &T value is used, a &mut T value can also be used. This terminology is used in error messages to concisely indicate that a &mut T was needed where a &T was supplied. For example module a::example { fun read_and_assign(store: &mut u64, new_value: &u64) { *store = *new_value } fun subtype_examples() { let mut x: &u64 = &0; let mut y: &mut u64 = &mut 1; x = &mut 1; // valid y = &2; // ERROR! invalid! read_and_assign(y, x); // valid read_and_assign(x, y); // ERROR! invalid! }\n} will yield the following error messages error: ┌── example.move:11:9 ─── │ 12 │ y = &2; // invalid! │ ^ Invalid assignment to local 'y' · 12 │ y = &2; // invalid! │ -- The type: '&{integer}' · 9 │ let mut y: &mut u64 = &mut 1; │ -------- Is not a subtype of: '&mut u64' │ error: ┌── example.move:14:9 ─── │ 15 │ read_and_assign(x, y); // invalid! │ ^^^^^^^^^^^^^^^^^^^^^ Invalid call of 'a::example::read_and_assign'. Invalid argument for parameter 'store' · 8 │ let mut x: &u64 = &0; │ ---- The type: '&u64' · 3 │ fun read_and_assign(store: &mut u64, new_value: &u64) { │ -------- Is not a subtype of: '&mut u64' │ The only other types that currently have subtyping are tuples","breadcrumbs":"Primitive Types » References » Subtyping","id":"39","title":"Subtyping"},"4":{"body":"All members inside a module block can appear in any order. Fundamentally, a module is a collection of types and functions . The use keyword refers to members from other modules. The const keyword defines constants that can be used in the functions of a module. The friend syntax is a deprecated concept for specifying a list of trusted modules. The concept has been superseded by public(package)","breadcrumbs":"Modules » Members","id":"4","title":"Members"},"40":{"body":"Both mutable and immutable references can always be copied and extended even if there are existing copies or extensions of the same reference : fun reference_copies(s: &mut S) { let s_copy1 = s; // ok let s_extension = &mut s.f; // also ok let s_copy2 = s; // still ok ...\n} This might be surprising for programmers familiar with Rust's ownership system, which would reject the code above. Move's type system is more permissive in its treatment of copies , but equally strict in ensuring unique ownership of mutable references before writes.","breadcrumbs":"Primitive Types » References » Ownership","id":"40","title":"Ownership"},"41":{"body":"References and tuples are the only types that cannot be stored as a field value of structs, which also means that they cannot exist in storage or objects . All references created during program execution will be destroyed when a Move program terminates; they are entirely ephemeral. This also applies to all types without the store ability: any value of a non-store type must be destroyed before the program terminates. ability , but note that references and tuples go a step further by never being allowed in structs in the first place. This is another difference between Move and Rust, which allows references to be stored inside of structs. One could imagine a fancier, more expressive, type system that would allow references to be stored in structs. We could allow references inside of structs that do not have the store ability , but the core difficulty is that Move has a fairly complex system for tracking static reference safety. This aspect of the type system would also have to be extended to support storing references inside of structs. In short, Move's reference safety system would have to expand to support stored references, and it is something we are keeping an eye on as the language evolves.","breadcrumbs":"Primitive Types » References » References Cannot Be Stored","id":"41","title":"References Cannot Be Stored"},"42":{"body":"Move does not fully support tuples as one might expect coming from another language with them as a first-class value . However, in order to support multiple return values, Move has tuple-like expressions. These expressions do not result in a concrete value at runtime (there are no tuples in the bytecode), and as a result they are very limited: They can only appear in expressions (usually in the return position for a function). They cannot be bound to local variables. They cannot be bound to local variables. They cannot be stored in structs. Tuple types cannot be used to instantiate generics. Similarly, unit () is a type created by the Move source language in order to be expression based. The unit value () does not result in any runtime value. We can consider unit() to be an empty tuple, and any restrictions that apply to tuples also apply to unit. It might feel weird to have tuples in the language at all given these restrictions. But one of the most common use cases for tuples in other languages is for functions to allow functions to return multiple values. Some languages work around this by forcing the users to write structs that contain the multiple return values. However in Move, you cannot put references inside of structs . This required Move to support multiple return values. These multiple return values are all pushed on the stack at the bytecode level. At the source level, these multiple return values are represented using tuples.","breadcrumbs":"Primitive Types » Tuples and Unit » Tuples and Unit","id":"42","title":"Tuples and Unit"},"43":{"body":"Tuples are created by a comma separated list of expressions inside of parentheses. Syntax Type Description () (): () Unit, the empty tuple, or the tuple of arity 0 (e1, ..., en) (e1, ..., en): (T1, ..., Tn) where e_i: Ti s.t. 0 < i <= n and n > 0 A n-tuple, a tuple of arity n, a tuple with n elements Note that (e) does not have type (e): (t), in other words there is no tuple with one element. If there is only a single element inside of the parentheses, the parentheses are only used for disambiguation and do not carry any other special meaning. Sometimes, tuples with two elements are called \"pairs\" and tuples with three elements are called \"triples.\"","breadcrumbs":"Primitive Types » Tuples and Unit » Literals","id":"43","title":"Literals"},"44":{"body":"module 0x42::example { // all 3 of these functions are equivalent // when no return type is provided, it is assumed to be `()` fun returns_unit_1() { } // there is an implicit () value in empty expression blocks fun returns_unit_2(): () { } // explicit version of `returns_unit_1` and `returns_unit_2` fun returns_unit_3(): () { () } fun returns_3_values(): (u64, bool, address) { (0, false, @0x42) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") }\n}","breadcrumbs":"Primitive Types » Tuples and Unit » Examples","id":"44","title":"Examples"},"45":{"body":"The only operation that can be done on tuples currently is destructuring.","breadcrumbs":"Primitive Types » Tuples and Unit » Operations","id":"45","title":"Operations"},"46":{"body":"For tuples of any size, they can be destructured in either a let binding or in an assignment. For example: module 0x42::example { // all 3 of these functions are equivalent fun returns_unit() {} fun returns_2_values(): (bool, bool) { (true, false) } fun returns_4_values(x: &u64): (&u64, u8, u128, vector) { (x, 0, 1, b\"foobar\") } fun examples(cond: bool) { let () = (); let (mut x, mut y): (u8, u64) = (0, 1); let (mut a, mut b, mut c, mut d) = (@0x0, 0, false, b\"\"); () = (); (x, y) = if (cond) (1, 2) else (3, 4); (a, b, c, d) = (@0x1, 1, true, b\"1\"); } fun examples_with_function_calls() { let () = returns_unit(); let (mut x, mut y): (bool, bool) = returns_2_values(); let (mut a, mut b, mut c, mut d) = returns_4_values(&0); () = returns_unit(); (x, y) = returns_2_values(); (a, b, c, d) = returns_4_values(&1); }\n} For more details, see Move Variables .","breadcrumbs":"Primitive Types » Tuples and Unit » Destructuring","id":"46","title":"Destructuring"},"47":{"body":"Along with references, tuples are the only types that have subtyping in Move. Tuples have subtyping only in the sense that subtype with references (in a covariant way). For example: let x: &u64 = &0;\nlet y: &mut u64 = &mut 1; // (&u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (a, b): (&u64, &u64) = (x, y); // (&mut u64, &mut u64) is a subtype of (&u64, &u64)\n// since &mut u64 is a subtype of &u64\nlet (c, d): (&u64, &u64) = (y, y); // ERROR! (&u64, &mut u64) is NOT a subtype of (&mut u64, &mut u64)\n// since &u64 is NOT a subtype of &mut u64\nlet (e, f): (&mut u64, &mut u64) = (x, y);","breadcrumbs":"Primitive Types » Tuples and Unit » Subtyping","id":"47","title":"Subtyping"},"48":{"body":"As mentioned above, tuple values don't really exist at runtime. And currently they cannot be stored into local variables because of this (but it is likely that this feature will come at some point in the future). As such, tuples can only be moved currently, as copying them would require putting them into a local variable first.","breadcrumbs":"Primitive Types » Tuples and Unit » Ownership","id":"48","title":"Ownership"},"49":{"body":"Local variables in Move are lexically (statically) scoped. New variables are introduced with the keyword let, which will shadow any previous local with the same name. Locals marked as mut are mutable and can be updated both directly and via a mutable reference.","breadcrumbs":"Local Variables and Scopes » Local Variables and Scope","id":"49","title":"Local Variables and Scope"},"5":{"body":"The primitive types are the basic building blocks of the language. These primitive types can be used on their own or can be used be used to build more complex, user-defined types, e.g. in a struct . Integers Bool Address Vector These primitive types are used in conjunction with other types References Tuples and Unit","breadcrumbs":"Primitive Types » Primitive Types","id":"5","title":"Primitive Types"},"50":{"body":"","breadcrumbs":"Local Variables and Scopes » Declaring Local Variables","id":"50","title":"Declaring Local Variables"},"51":{"body":"Move programs use let to bind variable names to values: let x = 1;\nlet y = x + x: let can also be used without binding a value to the local. let x; The local can then be assigned a value later. let x;\nif (cond) { x = 1\n} else { x = 0\n} This can be very helpful when trying to extract a value from a loop when a default value cannot be provided. let x;\nlet cond = true;\nlet i = 0;\nloop { let (res, cond) = foo(i); if (!cond) { x = res; break; }; i = i + 1;\n} To modify a local variable after it is assigned, or to borrow it mutably &mut, it must be declared as mut. let mut x = 0;\nif (cond) x = x + 1;\nfoo(&mut x); For more details see the section on assignments below.","breadcrumbs":"Local Variables and Scopes » let bindings","id":"51","title":"let bindings"},"52":{"body":"Move's type system prevents a local variable from being used before it has been assigned. let x;\nx + x // ERROR! x is used before being assigned let x;\nif (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases let x;\nwhile (cond) x = 0;\nx + x // ERROR! x does not have a value in all cases","breadcrumbs":"Local Variables and Scopes » Variables must be assigned before use","id":"52","title":"Variables must be assigned before use"},"53":{"body":"Variable names can contain underscores _, letters a to z, letters A to Z, and digits 0 to 9. Variable names must start with either an underscore _ or a letter a through z. They cannot start with uppercase letters. // all valid\nlet x = e;\nlet _x = e;\nlet _A = e;\nlet x0 = e;\nlet xA = e;\nlet foobar_123 = e; // all invalid\nlet X = e; // ERROR!\nlet Foo = e; // ERROR!","breadcrumbs":"Local Variables and Scopes » Valid variable names","id":"53","title":"Valid variable names"},"54":{"body":"The type of a local variable can almost always be inferred by Move's type system. However, Move allows explicit type annotations that can be useful for readability, clarity, or debuggability. The syntax for adding a type annotation is: let x: T = e; // \"Variable x of type T is initialized to expression e\" Some examples of explicit type annotations: module 0x42::example { public struct S { f: u64, g: u64 } fun annotated() { let u: u8 = 0; let b: vector = b\"hello\"; let a: address = @0x0; let (x, y): (&u64, &mut u64) = (&0, &mut 1); let S { f, g: f2 }: S = S { f: 0, g: 1 }; }\n} Note that the type annotations must always be to the right of the pattern: // ERROR! should be let (x, y): (&u64, &mut u64) = ...\nlet (x: &u64, y: &mut u64) = (&0, &mut 1);","breadcrumbs":"Local Variables and Scopes » Type annotations","id":"54","title":"Type annotations"},"55":{"body":"In some cases, a local type annotation is required if the type system cannot infer the type. This commonly occurs when the type argument for a generic type cannot be inferred. For example: let _v1 = vector[]; // ERROR!\n// ^^^^^^^^ Could not infer this type. Try adding an annotation\nlet v2: vector = vector[]; // no error In a rarer case, the type system might not be able to infer a type for divergent code (where all the following code is unreachable). Both return and abort are expressions and can have any type. A loop has type () if it has a break (or T if has a break e where e: T), but if there is no break out of the loop, it could have any type. If these types cannot be inferred, a type annotation is required. For example, this code: let a: u8 = return ();\nlet b: bool = abort 0;\nlet c: signer = loop (); let x = return (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet y = abort 0; // ERROR!\n// ^ Could not infer this type. Try adding an annotation\nlet z = loop (); // ERROR!\n// ^ Could not infer this type. Try adding an annotation Adding type annotations to this code will expose other errors about dead code or unused local variables, but the example is still helpful for understanding this problem.","breadcrumbs":"Local Variables and Scopes » When annotations are necessary","id":"55","title":"When annotations are necessary"},"56":{"body":"let can introduce more than one local at a time using tuples. The locals declared inside the parenthesis are initialized to the corresponding values from the tuple. let () = ();\nlet (x0, x1) = (0, 1);\nlet (y0, y1, y2) = (0, 1, 2);\nlet (z0, z1, z2, z3) = (0, 1, 2, 3); The type of the expression must match the arity of the tuple pattern exactly. let (x, y) = (0, 1, 2); // ERROR!\nlet (x, y, z, q) = (0, 1, 2); // ERROR! You cannot declare more than one local with the same name in a single let. let (x, x) = 0; // ERROR! The mutability of the local variables declared can be mixed. let (mut x, y) = (0, 1);\nx = 1;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with tuples","id":"56","title":"Multiple declarations with tuples"},"57":{"body":"let can also introduce more than one local variables at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this: public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 Similarly for positional structs public struct P(u64, u64) and let P (local1, local2) = P ( 1, 2 );\n// local1: u64\n// local2: u64 Here is a more complicated example: module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let Y { x1: X(f), x2 } = Y { x1: new_x(), x2: new_x() }; assert!(f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = Y { x1: new_x(), x2: new_x() }; assert!(f1 + f2 == 2, 42); }\n} Fields of structs can serve double duty, identifying the field to bind and the name of the variable. This is sometimes referred to as punning. let Y { x1, x2 } = e; is equivalent to: let Y { x1: x1, x2: x2 } = e; As shown with tuples, you cannot declare more than one local with the same name in a single let. let Y { x1: x, x2: x } = e; // ERROR! And as with tuples, the mutability of the local variables declared can be mixed. let Y { x1: mut x1, x2 } = e; Furthermore, the mutability of annotation can be applied to the punned fields. Giving the equivalent example let Y { mut x1, x2 } = e;","breadcrumbs":"Local Variables and Scopes » Multiple declarations with structs","id":"57","title":"Multiple declarations with structs"},"58":{"body":"In the examples above for structs, the bound value in the let was moved, destroying the struct value and binding its fields. public struct T { f1: u64, f2: u64 } let T { f1: local1, f2: local2 } = T { f1: 1, f2: 2 };\n// local1: u64\n// local2: u64 In this scenario the struct value T { f1: 1, f2: 2 } no longer exists after the let. If you wish instead to not move and destroy the struct value, you can borrow each of its fields. For example: let t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &t;\n// local1: &u64\n// local2: &u64 And similarly with mutable references: let mut t = T { f1: 1, f2: 2 };\nlet T { f1: local1, f2: local2 } = &mut t;\n// local1: &mut u64\n// local2: &mut u64 This behavior can also work with nested structs. module 0x42::example { public struct X(u64) public struct Y { x1: X, x2: X } fun new_x(): X { X(1) } fun example() { let mut y = Y { x1: new_x(), x2: new_x() }; let Y { x1: X(f), x2 } = &y; assert!(*f + x2.f == 2, 42); let Y { x1: X(f1), x2: X(f2) } = &mut y; *f1 = *f1 + 1; *f2 = *f2 + 1; assert!(*f1 + *f2 == 4, 42); }\n}","breadcrumbs":"Local Variables and Scopes » Destructuring against references","id":"58","title":"Destructuring against references"},"59":{"body":"In let bindings, it is often helpful to ignore some values. Local variables that start with _ will be ignored and not introduce a new variable fun three(): (u64, u64, u64) { (0, 1, 2)\n} let (x1, _, z1) = three();\nlet (x2, _y, z2) = three();\nassert!(x1 + z1 == x2 + z2, 42); This can be necessary at times as the compiler will warn on unused local variables let (x1, y, z1) = three(); // WARNING!\n// ^ unused local 'y'","breadcrumbs":"Local Variables and Scopes » Ignoring Values","id":"59","title":"Ignoring Values"},"6":{"body":"Move supports six unsigned integer types: u8, u16, u32, u64, u128, and u256. Values of these types range from 0 to a maximum that depends on the size of the type. Type Value Range Unsigned 8-bit integer, u8 0 to 28 - 1 Unsigned 16-bit integer, u16 0 to 216 - 1 Unsigned 32-bit integer, u32 0 to 232 - 1 Unsigned 64-bit integer, u64 0 to 264 - 1 Unsigned 128-bit integer, u128 0 to 2128 - 1 Unsigned 256-bit integer, u256 0 to 2256 - 1","breadcrumbs":"Primitive Types » Integers » Integers","id":"6","title":"Integers"},"60":{"body":"All of the different structures in let can be combined! With that we arrive at this general grammar for let statements: let-binding → let pattern-or-list type-annotation opt > initializer opt > pattern-or-list → pattern | ( pattern-list ) > pattern-list → pattern , opt | pattern , pattern-list > type-annotation → : type initializer → = expression The general term for the item that introduces the bindings is a pattern . The pattern serves to both destructure data (possibly recursively) and introduce the bindings. The pattern grammar is as follows: pattern → local-variable | struct-type { field-binding-list } > field-binding-list → field-binding , opt | field-binding , > field-binding-list > field-binding → field | field : pattern A few concrete examples with this grammar applied: let (x, y): (u64, u64) = (0, 1);\n// ^ local-variable\n// ^ pattern\n// ^ local-variable\n// ^ pattern\n// ^ pattern-list\n// ^^^^ pattern-list\n// ^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^ type-annotation\n// ^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding let Foo { f, g: x } = Foo { f: 0, g: 1 };\n// ^^^ struct-type\n// ^ field\n// ^ field-binding\n// ^ field\n// ^ local-variable\n// ^ pattern\n// ^^^^ field-binding\n// ^^^^^^^ field-binding-list\n// ^^^^^^^^^^^^^^^ pattern\n// ^^^^^^^^^^^^^^^ pattern-or-list\n// ^^^^^^^^^^^^^^^^^^^^ initializer\n// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ let-binding","breadcrumbs":"Local Variables and Scopes » General let grammar","id":"60","title":"General let grammar"},"61":{"body":"","breadcrumbs":"Local Variables and Scopes » Mutations","id":"61","title":"Mutations"},"62":{"body":"After the local is introduced (either by let or as a function parameter), a mut local can be modified via an assignment: x = e Unlike let bindings, assignments are expressions. In some languages, assignments return the value that was assigned, but in Move, the type of any assignment is always (). (x = e: ()) Practically, assignments being expressions means that they can be used without adding a new expression block with braces ({...}). let x;\nif (cond) x = 1 else x = 2; The assignment uses the similar pattern syntax scheme as let bindings, but with absence of mut: module 0x42::example { public struct X { f: u64 } fun new_x(): X { X { f: 1 } } // Note: this example will complain about unused variables and assignments. fun example() { let (mut x, mut y, mut f, mut g) = (0, 0, 0, 0); (X { f }, X { f: x }) = (new_x(), new_x()); assert!(f + x == 2, 42); (x, y, f, _, g) = (0, 0, 0, 0, 0); }\n} Note that a local variable can only have one type, so the type of the local cannot change between assignments. let mut x;\nx = 0;\nx = false; // ERROR!","breadcrumbs":"Local Variables and Scopes » Assignments","id":"62","title":"Assignments"},"63":{"body":"In addition to directly modifying a local with assignment, a mut local can be modified via a mutable reference &mut. let mut x = 0;\nlet r = &mut x;\n*r = 1;\nassert!(x == 1, 42); This is particularly useful if either: (1) You want to modify different variables depending on some condition. let mut x = 0;\nlet mut y = 1;\nlet r = if (cond) &mut x else &mut y;\n*r = *r + 1; (2) You want another function to modify your local value. let mut x = 0;\nmodify_ref(&mut x); This sort of modification is how you modify structs and vectors! let mut v = vector[];\nvector::push_back(&mut v, 100);\nassert!(*vector::borrow(&v, 0) == 100, 42); For more details, see Move references .","breadcrumbs":"Local Variables and Scopes » Mutating through a reference","id":"63","title":"Mutating through a reference"},"64":{"body":"Any local declared with let is available for any subsequent expression, within that scope . Scopes are declared with expression blocks, {...}. Locals cannot be used outside of the declared scope. let x = 0;\n{ let y = 1;\n};\nx + y // ERROR!\n// ^ unbound local 'y' But, locals from an outer scope can be used in a nested scope. { let x = 0; { let y = x + 1; // valid }\n} Locals can be mutated in any scope where they are accessible. That mutation survives with the local, regardless of the scope that performed the mutation. let mut x = 0;\nx = x + 1;\nassert!(x == 1, 42);\n{ x = x + 1; assert!(x == 2, 42);\n};\nassert!(x == 2, 42);","breadcrumbs":"Local Variables and Scopes » Scopes","id":"64","title":"Scopes"},"65":{"body":"An expression block is a series of statements separated by semicolons (;). The resulting value of an expression block is the value of the last expression in the block. { let x = 1; let y = 1; x + y } In this example, the result of the block is x + y. A statement can be either a let declaration or an expression. Remember that assignments (x = e) are expressions of type (). { let x; let y = 1; x = 1; x + y } Function calls are another common expression of type (). Function calls that modify data are commonly used as statements. { let v = vector[]; vector::push_back(&mut v, 1); v } This is not just limited to () types---any expression can be used as a statement in a sequence! { let x = 0; x + 1; // value is discarded x + 2; // value is discarded b\"hello\"; // value is discarded\n} But! If the expression contains a resource (a value without the drop ability ), you will get an error. This is because Move's type system guarantees that any value that is dropped has the drop ability . (Ownership must be transferred or the value must be explicitly destroyed within its declaring module.) { let x = 0; Coin { value: x }; // ERROR!\n// ^^^^^^^^^^^^^^^^^ unused value without the `drop` ability x\n} If a final expression is not present in a block---that is, if there is a trailing semicolon ;, there is an implicit unit () value . Similarly, if the expression block is empty, there is an implicit unit () value. Both are equivalent { x = x + 1; 1 / x; } { x = x + 1; 1 / x; () } Similarly both are equivalent { } { () } An expression block is itself an expression and can be used anyplace an expression is used. (Note: The body of a function is also an expression block, but the function body cannot be replaced by another expression.) let my_vector: vector> = { let mut v = vector[]; vector::push_back(&mut v, b\"hello\"); vector::push_back(&mut v, b\"goodbye\"); v\n}; (The type annotation is not needed in this example and only added for clarity.)","breadcrumbs":"Local Variables and Scopes » Expression Blocks","id":"65","title":"Expression Blocks"},"66":{"body":"If a let introduces a local variable with a name already in scope, that previous variable can no longer be accessed for the rest of this scope. This is called shadowing . let x = 0;\nassert!(x == 0, 42); let x = 1; // x is shadowed\nassert!(x == 1, 42); When a local is shadowed, it does not need to retain the same type as before. let x = 0;\nassert!(x == 0, 42); let x = b\"hello\"; // x is shadowed\nassert!(x == b\"hello\", 42); After a local is shadowed, the value stored in the local still exists, but will no longer be accessible. This is important to keep in mind with values of types without the drop ability , as ownership of the value must be transferred by the end of the function. module 0x42::example { public struct Coin has store { value: u64 } fun unused_coin(): Coin { let x = Coin { value: 0 }; // ERROR!\n// ^ This local still contains a value without the `drop` ability x.value = 1; let x = Coin { value: 10 }; x\n// ^ Invalid return }\n} When a local is shadowed inside a scope, the shadowing only remains for that scope. The shadowing is gone once that scope ends. let x = 0;\n{ let x = 1; assert!(x == 1, 42);\n};\nassert!(x == 0, 42); Remember, locals can change type when they are shadowed. let x = 0;\n{ let x = b\"hello\"; assert!(x = b\"hello\", 42);\n};\nassert!(x == 0, 42);","breadcrumbs":"Local Variables and Scopes » Shadowing","id":"66","title":"Shadowing"},"67":{"body":"All local variables in Move can be used in two ways, either by move or copy. If one or the other is not specified, the Move compiler is able to infer whether a copy or a move should be used. This means that in all of the examples above, a move or a copy would be inserted by the compiler. A local variable cannot be used without the use of move or copy. copy will likely feel the most familiar coming from other programming languages, as it creates a new copy of the value inside of the variable to use in that expression. With copy, the local variable can be used more than once. let x = 0;\nlet y = copy x + 1;\nlet z = copy x + 2; Any value with the copy ability can be copied in this way, and will be copied implicitly unless a move is specified. move takes the value out of the local variable without copying the data. After a move occurs, the local variable is unavailable, even if the value's type has the copy ability . let x = 1;\nlet y = move x + 1;\n// ------ Local was moved here\nlet z = move x + 2; // Error!\n// ^^^^^^ Invalid usage of local 'x'\ny + z","breadcrumbs":"Local Variables and Scopes » Move and Copy","id":"67","title":"Move and Copy"},"68":{"body":"Move's type system will prevent a value from being used after it is moved. This is the same safety check described in let declaration that prevents local variables from being used before it is assigned a value.","breadcrumbs":"Local Variables and Scopes » Safety","id":"68","title":"Safety"},"69":{"body":"As mentioned above, the Move compiler will infer a copy or move if one is not indicated. The algorithm for doing so is quite simple: Any value with the copy ability is given a copy. Any reference (both mutable &mut and immutable &) is given a copy. Except under special circumstances where it is made a move for predictable borrow checker errors. This will happen once the reference is no longer used. Any other value is given a move. Given the structs public struct Foo has copy, drop, store { f: u64 }\npublic struct Coin has store { value: u64 } we have the following example let s = b\"hello\";\nlet foo = Foo { f: 0 };\nlet coin = Coin { value: 0 };\nlet coins = vector[Coin { value: 0 }, Coin { value: 0 }]; let s2 = s; // copy\nlet foo2 = foo; // copy\nlet coin2 = coin; // move\nlet coins2 = coin; // move let x = 0;\nlet b = false;\nlet addr = @0x42;\nlet x_ref = &x;\nlet coin_ref = &mut coin2; let x2 = x; // copy\nlet b2 = b; // copy\nlet addr2 = @0x42; // copy\nlet x_ref2 = x_ref; // copy\nlet coin_ref2 = coin_ref; // copy","breadcrumbs":"Local Variables and Scopes » Inference","id":"69","title":"Inference"},"7":{"body":"Literal values for these types are specified either as a sequence of digits (e.g.,112) or as hex literals, e.g., 0xFF. The type of the literal can optionally be added as a suffix, e.g., 112u8. If the type is not specified, the compiler will try to infer the type from the context where the literal is used. If the type cannot be inferred, it is assumed to be u64. Number literals can be separated by underscores for grouping and readability. (e.g.,1_234_5678, 1_000u128, 0xAB_CD_12_35). If a literal is too large for its specified (or inferred) size range, an error is reported.","breadcrumbs":"Primitive Types » Integers » Literals","id":"7","title":"Literals"},"70":{"body":"Move supports two equality operations == and !=","breadcrumbs":"Equality » Equality","id":"70","title":"Equality"},"71":{"body":"Syntax Operation Description == equal Returns true if the two operands have the same value, false otherwise != not equal Returns true if the two operands have different values, false otherwise","breadcrumbs":"Equality » Operations","id":"71","title":"Operations"},"72":{"body":"Both the equal (==) and not-equal (!=) operations only work if both operands are the same type 0 == 0; // `true`\n1u128 == 2u128; // `false`\nb\"hello\" != x\"00\"; // `true` Equality and non-equality also work over all user defined types! module 0x42::example { public struct S has copy, drop { f: u64, s: vector } fun always_true(): bool { let s = S { f: 0, s: b\"\" }; s == s } fun always_false(): bool { let s = S { f: 0, s: b\"\" }; s != s }\n} If the operands have different types, there is a type checking error 1u8 == 1u128; // ERROR!\n// ^^^^^ expected an argument of type 'u8'\nb\"\" != 0; // ERROR!\n// ^ expected an argument of type 'vector'","breadcrumbs":"Equality » Typing","id":"72","title":"Typing"},"73":{"body":"When comparing references , the type of the reference (immutable or mutable) does not matter. This means that you can compare an immutable & reference with a mutable one &mut of the same underlying type. let i = &0;\nlet m = &mut 1; i == m; // `false`\nm == i; // `false`\nm == m; // `true`\ni == i; // `true` The above is equivalent to applying an explicit freeze to each mutable reference where needed let i = &0;\nlet m = &mut 1; i == freeze(m); // `false`\nfreeze(m) == i; // `false`\nm == m; // `true`\ni == i; // `true` But again, the underlying type must be the same type let i = &0;\nlet s = &b\"\"; i == s; // ERROR!\n// ^ expected an argument of type '&u64'","breadcrumbs":"Equality » Typing with references","id":"73","title":"Typing with references"},"74":{"body":"Starting in Move 2024 edition, the == and != operators automatically borrow their operands if one of the operands is a reference and the other is not. This means that the following code works without any errors: let r = &0; // In all cases, `0` is automatically borrowed as `&0`\nr == 0; // `true`\n0 == r; // `true`\nr != 0; // `false`\n0 != r; // `false` This automatic borrow is always an immutable borrow.","breadcrumbs":"Equality » Automatic Borrowing","id":"74","title":"Automatic Borrowing"},"75":{"body":"Both == and != consume the value when comparing them. As a result, the type system enforces that the type must have drop . Recall that without the drop ability , ownership must be transferred by the end of the function, and such values can only be explicitly destroyed within their declaring module. If these were used directly with either equality == or non-equality !=, the value would be destroyed which would break drop ability safety guarantees! module 0x42::example { public struct Coin has store { value: u64 } fun invalid(c1: Coin, c2: Coin) { c1 == c2 // ERROR!\n// ^^ ^^ These assets would be destroyed! }\n} But, a programmer can always borrow the value first instead of directly comparing the value, and reference types have the drop ability . For example module 0x42::example { public struct Coin has store { value: u64 } fun swap_if_equal(c1: Coin, c2: Coin): (Coin, Coin) { let are_equal = &c1 == c2; // valid, note `c2` is automatically borrowed if (are_equal) (c2, c1) else (c1, c2) }\n}","breadcrumbs":"Equality » Restrictions","id":"75","title":"Restrictions"},"76":{"body":"While a programmer can compare any value whose type has drop , a programmer should often compare by reference to avoid expensive copies. let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(copy v1 == copy v2, 42);\n// ^^^^ ^^^^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(copy s1 == copy s2, 42);\n// ^^^^ ^^^^\nuse_two_foos(s1, s2); This code is perfectly acceptable (assuming Foo has drop ), just not efficient. The highlighted copies can be removed and replaced with borrows let v1: vector = function_that_returns_vector();\nlet v2: vector = function_that_returns_vector();\nassert!(&v1 == &v2, 42);\n// ^ ^\nuse_two_vectors(v1, v2); let s1: Foo = function_that_returns_large_struct();\nlet s2: Foo = function_that_returns_large_struct();\nassert!(&s1 == &s2, 42);\n// ^ ^\nuse_two_foos(s1, s2); The efficiency of the == itself remains the same, but the copys are removed and thus the program is more efficient.","breadcrumbs":"Equality » Avoid Extra Copies","id":"76","title":"Avoid Extra Copies"},"77":{"body":"return and abort are two control flow constructs that end execution, one for the current function and one for the entire transaction. More information on return can be found in the linked section","breadcrumbs":"Abort and Assert » Abort and Assert","id":"77","title":"Abort and Assert"},"78":{"body":"abort is an expression that takes one argument: an abort code of type u64. For example: abort 42 The abort expression halts execution the current function and reverts all changes made to state by the current transaction (note though that this guarantee must be upheld by the adapter of the specific deployment of Move). There is no mechanism for \"catching\" or otherwise handling an abort. Luckily, in Move transactions are all or nothing, meaning any changes to storage are made all at once only if the transaction succeeds. For Sui, this means no objects are modified. Because of this transactional commitment of changes, after an abort there is no need to worry about backing out changes. While this approach is lacking in flexibility, it is incredibly simple and predictable. Similar to return , abort is useful for exiting control flow when some condition cannot be met. In this example, the function will pop two items off of the vector, but will abort early if the vector does not have two items use std::vector; fun pop_twice(v: &mut vector): (T, T) { if (vector::length(v) < 2) abort 42; (vector::pop_back(v), vector::pop_back(v))\n} This is even more useful deep inside a control-flow construct. For example, this function checks that all numbers in the vector are less than the specified bound. And aborts otherwise use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); if (cur > bound) abort 42; i = i + 1; }\n}","breadcrumbs":"Abort and Assert » abort","id":"78","title":"abort"},"79":{"body":"assert is a builtin, macro operation provided by the Move compiler. It takes two arguments, a condition of type bool and a code of type u64 assert!(condition: bool, code: u64) Since the operation is a macro, it must be invoked with the !. This is to convey that the arguments to assert are call-by-expression. In other words, assert is not a normal function and does not exist at the bytecode level. It is replaced inside the compiler with if (condition) () else abort code assert is more commonly used than just abort by itself. The abort examples above can be rewritten using assert use std::vector;\nfun pop_twice(v: &mut vector): (T, T) { assert!(vector::length(v) >= 2, 42); // Now uses 'assert' (vector::pop_back(v), vector::pop_back(v))\n} and use std::vector;\nfun check_vec(v: &vector, bound: u64) { let i = 0; let n = vector::length(v); while (i < n) { let cur = *vector::borrow(v, i); assert!(cur <= bound, 42); // Now uses 'assert' i = i + 1; }\n} Note that because the operation is replaced with this if-else, the argument for the code is not always evaluated. For example: assert!(true, 1 / 0) Will not result in an arithmetic error, it is equivalent to if (true) () else (1 / 0) So the arithmetic expression is never evaluated!","breadcrumbs":"Abort and Assert » assert","id":"79","title":"assert"},"8":{"body":"// literals with explicit annotations;\nlet explicit_u8 = 1u8;\nlet explicit_u16 = 1u16;\nlet explicit_u32 = 1u32;\nlet explicit_u64 = 2u64;\nlet explicit_u128 = 3u128;\nlet explicit_u256 = 1u256;\nlet explicit_u64_underscored = 154_322_973u64; // literals with simple inference\nlet simple_u8: u8 = 1;\nlet simple_u16: u16 = 1;\nlet simple_u32: u32 = 1;\nlet simple_u64: u64 = 2;\nlet simple_u128: u128 = 3;\nlet simple_u256: u256 = 1; // literals with more complex inference\nlet complex_u8 = 1; // inferred: u8\n// right hand argument to shift must be u8\nlet _unused = 10 << complex_u8; let x: u8 = 38;\nlet complex_u8 = 2; // inferred: u8\n// arguments to `+` must have the same type\nlet _unused = x + complex_u8; let complex_u128 = 133_876; // inferred: u128\n// inferred from function argument type\nfunction_that_takes_u128(complex_u128); // literals can be written in hex\nlet hex_u8: u8 = 0x1;\nlet hex_u16: u16 = 0x1BAE;\nlet hex_u32: u32 = 0xDEAD80;\nlet hex_u64: u64 = 0xCAFE;\nlet hex_u128: u128 = 0xDEADBEEF;\nlet hex_u256: u256 = 0x1123_456A_BCDE_F;","breadcrumbs":"Primitive Types » Integers » Examples","id":"8","title":"Examples"},"80":{"body":"When using abort, it is important to understand how the u64 code will be used by the VM. Normally, after successful execution, the Move VM, and the adapter for the specific deployment, determine the changes made to storage. If an abort is reached, the VM will instead indicate an error. Included in that error will be two pieces of information: The module that produced the abort (package/address value and module name) The abort code. For example module 0x2::example { public fun aborts() { abort 42 }\n} module 0x3::invoker { public fun always_aborts() { 0x2::example::aborts() }\n} If a transaction, such as the function always_aborts above, calls 0x2::example::aborts, the VM would produce an error that indicated the module 0x2::example and the code 42. This can be useful for having multiple aborts being grouped together inside a module. In this example, the module has two separate error codes used in multiple functions module 0x42::example { use std::vector; const EEmptyVector: u64 = 0; const EIndexOutOfBounds: u64 = 1; // move i to j, move j to k, move k to i public fun rotate_three(v: &mut vector, i: u64, j: u64, k: u64) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(k < n, EIndexOutOfBounds); vector::swap(v, i, k); vector::swap(v, j, k); } public fun remove_twice(v: &mut vector, i: u64, j: u64): (T, T) { let n = vector::length(v); assert!(n > 0, EEmptyVector); assert!(i < n, EIndexOutOfBounds); assert!(j < n, EIndexOutOfBounds); assert!(i > j, EIndexOutOfBounds); (vector::remove(v, i), vector::remove(v, j)) }\n}","breadcrumbs":"Abort and Assert » Abort codes in the Move VM","id":"80","title":"Abort codes in the Move VM"},"81":{"body":"The abort i expression can have any type! This is because both constructs break from the normal control flow, so they never need to evaluate to the value of that type. The following are not useful, but they will type check let y: address = abort 0; This behavior can be helpful in situations where you have a branching instruction that produces a value on some branches, but not all. For example: let b = if (x == 0) false else if (x == 1) true else abort 42;\n// ^^^^^^^^ `abort 42` has type `bool`","breadcrumbs":"Abort and Assert » The type of abort","id":"81","title":"The type of abort"},"82":{"body":"Move offers multiple constructs for control flow based on boolean expressions , including common programming constructs such as if expressions and while and for loops, along with advanced control flow structures including labels for loops and escapable named blocks. It also supports more more complex constructs based on structural pattern matching. Conditional Expressions Pattern Matching Loops Labeled Control FLow","breadcrumbs":"Control Flow » Control Flow","id":"82","title":"Control Flow"},"83":{"body":"An if expression specifies that some code should only be evaluated if a certain condition is true. For example: if (x > 5) x = x - 5 The condition must be an expression of type bool. An if expression can optionally include an else clause to specify another expression to evaluate when the condition is false. if (y <= 10) y = y + 1 else y = 10 Either the \"true\" branch or the \"false\" branch will be evaluated, but not both. Either branch can be a single expression or an expression block. The conditional expressions may produce values so that the if expression has a result. let z = if (x < 100) x else 100; The expressions in the true and false branches must have compatible types. For example: // x and y must be u64 integers\nlet maximum: u64 = if (x > y) x else y; // ERROR! branches different types\nlet z = if (maximum < 10) 10u8 else 100u64; // ERROR! branches different types, as default false-branch is () not u64\nif (maximum >= 10) maximum; If the else clause is not specified, the false branch defaults to the unit value. The following are equivalent: if (condition) true_branch // implied default: else ()\nif (condition) true_branch else () Commonly, if expressions are used in conjunction with expression blocks . let maximum = if (x > y) x else y;\nif (maximum < 10) { x = x + 10; y = y + 10;\n} else if (x >= 10 && y >= 10) { x = x - 10; y = y - 10;\n}","breadcrumbs":"Control Flow » Conditional Expressions » Conditional if Expressions","id":"83","title":"Conditional if Expressions"},"84":{"body":"if-expression → if ( expression ) expression else-clause opt > else-clause → else expression","breadcrumbs":"Control Flow » Conditional Expressions » Grammar for Conditionals","id":"84","title":"Grammar for Conditionals"},"85":{"body":"Many programs require iteration over values, and Move provides while and loop forms to allow you to write code in these situations. In addition, you can also modify control flow of these loops during execution by using break (to exit the loop) and continue (to skip the remainder of this iteration and return to the top of the control flow structure).","breadcrumbs":"Control Flow » Loops » Loop Constructs in Move","id":"85","title":"Loop Constructs in Move"},"86":{"body":"The while construct repeats the body (an expression of type unit) until the condition (an expression of type bool) evaluates to false. Here is an example of simple while loop that computes the sum of the numbers from 1 to n: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; while (i <= n) { sum = sum + i; i = i + 1 }; sum\n} Infinite while loops are also allowed: fun foo() { while (true) { }\n}","breadcrumbs":"Control Flow » Loops » while Loops","id":"86","title":"while Loops"},"87":{"body":"In Move, while loops can use break to exit early. For example, suppose we were looking for the position of a value in a vector, and would like to break if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; let mut found = false; while (i < size) { if (vector::borrow(values, i) == &target_value) { found = true; break }; i = i + 1 }; if (found) { Option::Some(i) } else { Option::None }\n} Here, if the borrowed vector value is equal to our target value, we set the found flag to true and then call break, which will cause the program to exit the loop. Finally, note that break for while loops cannot take a value: while loops always return the unit type () and thus break does, too.","breadcrumbs":"Control Flow » Loops » Using break Inside of while Loops","id":"87","title":"Using break Inside of while Loops"},"88":{"body":"Similar to break, Move's while loops can invoke continue to skip over part of the loop body. This allows us to skip part of a computation if a condition is not met, such as in the following example: fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; while (i < size) { let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n} This code will iterate over the provided vector. For each entry, if that entry is an even number, it will add it to the even_sum. If it is not, however, it will call continue, skipping the sum operation and returning to the while loop conditional check.","breadcrumbs":"Control Flow » Loops » Using continue Inside of while Loops","id":"88","title":"Using continue Inside of while Loops"},"89":{"body":"The loop expression repeats the loop body (an expression with type ()) until it hits a break: fun sum(n: u64): u64 { let mut sum = 0; let mut i = 1; loop { i = i + 1; if (i >= n) break; sum = sum + i; }; sum\n} Without a break, the loop will continue forever. In the example below, the program will run forever because the loop does not have a break: fun foo() { let mut i = 0; loop { i = i + 1 }\n} Here is an example that uses loop to write the sum function: fun sum(n: u64): u64 { let sum = 0; let i = 0; loop { i = i + 1; if (i > n) break; sum = sum + i }; sum\n}","breadcrumbs":"Control Flow » Loops » loop Expressions","id":"89","title":"loop Expressions"},"9":{"body":"","breadcrumbs":"Primitive Types » Integers » Operations","id":"9","title":"Operations"},"90":{"body":"Unlike while loops, which always return (), a loop may return a value using break. In doing so, the overall loop expression evaluates to a value of that type. For example, we can rewrite find_position from above using loop and break, immediately returning the index if we find it: fun find_position(values: &vector, target_value: u64): Option { let size = vector::length(values); let mut i = 0; loop { if (vector::borrow(values, i) == &target_value) { break Option::Some(i) } else if (i >= size) { break Option::None }; i = i + 1; }\n} This loop will break with an option result, and, as the last expression in the function body, will produce that value as the final function result.","breadcrumbs":"Control Flow » Loops » Using break with Values in loop","id":"90","title":"Using break with Values in loop"},"91":{"body":"As you might expect, continue can also be used inside a loop. Here is the previous sum_even function rewritten using loop with break and continue instead of while. fun sum_even(values: &vector): u64 { let size = vector::length(values); let mut i = 0; let mut even_sum = 0; loop { if (i >= size) break; let number = *vector::borrow(values, i); i = i + 1; if (number % 2 == 1) continue; even_sum = even_sum + number; }; even_sum\n}","breadcrumbs":"Control Flow » Loops » Using continue Inside of loop Expressions","id":"91","title":"Using continue Inside of loop Expressions"},"92":{"body":"In Move, loops are typed expressions. A while expression always has type (). let () = while (i < 10) { i = i + 1 }; If a loop contains a break, the expression has the type of the break. A break with no value has the unit type (). (loop { if (i < 10) i = i + 1 else break }: ());\nlet () = loop { if (i < 10) i = i + 1 else break }; let x: u64 = loop { if (i < 10) i = i + 1 else break 5 };\nlet x: u64 = loop { if (i < 10) { i = i + 1; continue} else break 5 }; In addition, if a loop contains multiple breaks, they must all return the same type: // invalid -- first break returns (), second returns 5\nlet x: u64 = loop { if (i < 10) break else break 5 }; If loop does not have a break, loop can have any type much like return, abort, break, and continue. (loop (): u64);\n(loop (): address);\n(loop (): &vector>); If you need even more-precise control flow, such as breaking out of nested loops, the next chapter presents the use of labeled control flow in Move.","breadcrumbs":"Control Flow » Loops » The Type of while and loop","id":"92","title":"The Type of while and loop"},"93":{"body":"Move supports labeled control flow, allowing you to define and transfer control to specific labels in a function. For example, we can nest two loops and use break and continue with those labels to precisely specify control flow. You can prefix any loop or while form with a 'label: form to allow breaking or continuing directly there. To demonstrate this behavior, consider a function that takes nested vectors of numbers (i.e., vector>) to sum against some threshold, which behaves as follows: If the sum of all the numbers are under the threshold, return that sum. If adding a number to the current sum would surpass the threshold, return the current sum. We can write this by iterating over the vector of vectors as nested loops and labelling the outer one. If any addition in the inner loop would push us over the threshold, we can use break with the outer label to escape both loops at once: fun sum_until_threshold(input: &vector>, threshold: u64): u64 { let mut sum = 0; let mut i = 0; let input_size = vector::length(vec); 'outer: loop { // breaks to outer since it is the closest enclosing loop if (i >= input_size) break sum; let vec = vector::borrow(input, i); let size = vector::length(vec); let mut j = 0; while (j < size) { let v_entry = *vector::borrow(vec, j); if (sum + v_entry < threshold) { sum = sum + v_entry; } else { // the next element we saw would break the threshold, // so we return the current sum break 'outer sum }; j = j + 1; }; i = i + 1; }\n} These sorts of labels can also be used with a nested loop form, providing precise control in larger bodies of code. For example, if we were processing a large table where each entry required iteration that might see us continuing the inner or outer loop, we could express that code using labels: 'outer: loop { ... 'inner: while (cond) { ... if (cond0) { break 'outer value }; ... if (cond1) { continue 'inner } else if (cond2) { continue 'outer }; ... } ...\n}","breadcrumbs":"Control Flow » Labeled Control FLow » Labeled Control Flow","id":"93","title":"Labeled Control Flow"},"94":{"body":"A match expression is a powerful control structure that allows you to compare a value against a series of patterns and then execute code based on which pattern matches first. Patterns can be anything from simple literals to complex, nested struct and enum definitions. As opposed to if expressions, which change control flow based on a bool-typed test expression, a match expression operates over a value of any type and selects one of many arms. A match expression can match Move values as well as mutable or immutable references, binding sub-patterns accordingly. For example: fun run(x: u64): u64 { match (x) { 1 => 2, 2 => 3, x => x, }\n} run(1); // returns 2\nrun(2); // returns 3\nrun(3); // returns 3\nrun(0); // returns 0","breadcrumbs":"Control Flow » Patterm Matching » Pattern Matching","id":"94","title":"Pattern Matching"},"95":{"body":"A match takes an expression and a non-empty series of match arms delimited by commas. Each match arm consists of a pattern (p), an optional guard (if (g) where g is an expression of type bool), an arrow (=>), and an arm expression (e) to execute when the pattern matches. For example, match (expression) { pattern1 if (guard_expression) => expression1, pattern2 => expression2, pattern3 => { expression3, expression4, ... },\n} Match arms are checked in order from top to bottom, and the first pattern that matches (with a guard expression, if present, that evaluates to true) will be executed. Note that the series of match arms within a match must be exhaustive, meaning that every possible value of the type being matched must be covered by one of the patterns in the match. If the series of match arms is not exhaustive, the compiler will raise an error.","breadcrumbs":"Control Flow » Patterm Matching » match Syntax","id":"95","title":"match Syntax"},"96":{"body":"A pattern is matched by a value if the value is equal to the pattern, and where variables and wildcards (e.g., x, y, _, or ..) are \"equal\" to anything. Patterns are used to match values. Patterns can be Pattern Description Literal A literal value, such as 1, true, @0x1 Constant A constant value, e.g., MyConstant Variable A variable, e.g., x, y, z Wildcard A wildcard, e.g., _ Constructor A constructor pattern, e.g., MyStruct { x, y }, MyEnum::Variant(x) At-pattern An at-pattern, e.g., x @ MyEnum::Variant(..) Or-pattern An or-pattern, e.g., MyEnum::Variant(..) \\| MyEnum::OtherVariant(..) Multi-arity wildcard A multi-arity wildcard, e.g., MyEnum::Variant(..) Mutable-binding A mutable-binding pattern, e.g., mut x Patterns in Move have the following grammar: pattern = | | | _ | C { : inner-pattern [\",\" : inner-pattern]* } // where C is a struct or enum variant | C ( inner-pattern [\",\" inner-pattern]* ... ) // where C is a struct or enum variant | C // where C is an enum variant | @ top-level-pattern | pattern | pattern | mut \ninner-pattern = pattern | .. // multi-arity wildcard Some examples of patterns are: // literal pattern\n1 // constant pattern\nMyConstant // variable pattern\nx // wildcard pattern\n_ // constructor pattern that matches `MyEnum::Variant` with the fields `1` and `true`\nMyEnum::Variant(1, true) // constructor pattern that matches `MyEnum::Variant` with the fields `1` and binds the second field's value to `x`\nMyEnum::Variant(1, x) // multi-arity wildcard pattern that matches multiple fields within the `MyEnum::Variant` variant\nMyEnum::Variant(..) // constructor pattern that matches the `x` field of `MyStruct` and binds the `y` field to `other_variable`\nMyStruct { x, y: other_variable } // at-pattern that matches `MyEnum::Variant` and binds the entire value to `x`\nx @ MyEnum::Variant(..) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant`\nMyEnum::Variant(..) | MyEnum::OtherVariant(..) // same as the above or-pattern, but with explicit wildcards\nMyEnum::Variant(_, _) | MyEnum::OtherVariant(_, _) // or-pattern that matches either `MyEnum::Variant` or `MyEnum::OtherVariant` and binds the u64 field to `x`\nMyEnum::Variant(x, _) | MyEnum::OtherVariant(_, x) // constructor pattern that matches `OtherEnum::V` and if the inner `MyEnum` is `MyEnum::Variant`\nOtherEnum::V(MyEnum::Variant(..))","breadcrumbs":"Control Flow » Patterm Matching » Pattern Syntax","id":"96","title":"Pattern Syntax"},"97":{"body":"Patterns that contain variables bind them to the match subject or subject subcomponent being matched. These variables can then be used either in any match guard expressions, or on the right-hand side of the match arm. For example: public struct Wrapper(u64) fun add_under_wrapper_unless_equal(wrapper: Wrapper, x: u64): u64 { match (wrapper) { Wrapper(y) if (y == x) => Wrapper(y), Wrapper(y) => y + x, }\n}\nadd_under_wrapper_unless_equal(Wrapper(1), 2); // returns Wrapper(3)\nadd_under_wrapper_unless_equal(Wrapper(2), 3); // returns Wrapper(5)\nadd_under_wrapper_unless_equal(Wrapper(3), 3); // returns Wrapper(3)","breadcrumbs":"Control Flow » Patterm Matching » Patterns and Variables","id":"97","title":"Patterns and Variables"},"98":{"body":"Patterns can be nested, but patterns can also be combined using the or operator (|). For example, p1 | p2 succeeds if either pattern p1 or p2 matches the subject. This pattern can occur anywhere -- either as a top-level pattern or a sub-pattern within another pattern. public enum MyEnum has drop { Variant(u64, bool), OtherVariant(bool, u64),\n} fun test_or_pattern(x: u64): u64 { match (x) { MyEnum::Variant(1 | 2 | 3, true) | MyEnum::OtherVariant(true, 1 | 2 | 3) => 1, MyEnum::Variant(8, true) | MyEnum::OtherVariant(_, 6 | 7) => 2, _ => 3, }\n} test_or_pattern(MyEnum::Variant(3, true)); // returns 1\ntest_or_pattern(MyEnum::OtherVariant(true, 2)); // returns 1\ntest_or_pattern(MyEnum::Variant(8, true)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 7)); // returns 2\ntest_or_pattern(MyEnum::OtherVariant(false, 80)); // returns 3","breadcrumbs":"Control Flow » Patterm Matching » Combining Patterns","id":"98","title":"Combining Patterns"},"99":{"body":"The mut and .. patterns also have specific conditions placed on when, where, and how they can be used, as detailed in Limitations on Specific Patterns . At a high level, the mut modifier can only be used on variable patterns, and the .. pattern can only be used once within a constructor pattern -- and not as a top-level pattern. The following is an invalid usage of the .. pattern because it is used as a top-level pattern: match (x) { .. => 1, // ERROR: `..` pattern can only be used within a constructor pattern\n} match (x) { MyStruct(.., ..) => 1, // ERROR: ^^ `..` pattern can only be used once within a constructor pattern\n}","breadcrumbs":"Control Flow » Patterm Matching » Restrictions on Some Patterns","id":"99","title":"Restrictions on Some Patterns"}},"length":243,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.0},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":34,"docs":{"103":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":2.8284271247461903},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.6457513110645907},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":3.605551275463989},"178":{"tf":3.4641016151377544},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":3.4641016151377544},"79":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903},"81":{"tf":2.23606797749979},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.449489742783178},"217":{"tf":4.358898943540674},"218":{"tf":3.605551275463989},"219":{"tf":3.3166247903554},"23":{"tf":3.4641016151377544},"234":{"tf":1.0},"24":{"tf":3.4641016151377544},"242":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":3.3166247903554},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":14,"docs":{"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"33":{"tf":1.0},"54":{"tf":2.449489742783178},"55":{"tf":2.8284271247461903},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":1.7320508075688772},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"221":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":3,"docs":{"30":{"tf":1.0},"77":{"tf":1.0},"79":{"tf":2.8284271247461903}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"62":{"tf":3.1622776601683795},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"74":{"tf":2.0},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.6457513110645907},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.449489742783178},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":40,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"215":{"tf":2.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.23606797749979},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.6457513110645907},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.449489742783178},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.23606797749979},"128":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":1.7320508075688772},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.23606797749979},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.4142135623730951},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":16,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.7320508075688772},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.0},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.0},"89":{"tf":1.0},"91":{"tf":2.0},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":18,"docs":{"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.4142135623730951},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":2.8284271247461903},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.123105625617661},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.0},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":3.872983346207417},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.449489742783178}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"163":{"tf":2.8284271247461903},"165":{"tf":1.4142135623730951},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.6457513110645907},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.0},"242":{"tf":3.0},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.7320508075688772},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.449489742783178},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.3166247903554},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.1622776601683795},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":2.8284271247461903},"137":{"tf":4.47213595499958},"138":{"tf":2.23606797749979},"139":{"tf":2.6457513110645907},"140":{"tf":2.449489742783178},"141":{"tf":1.0},"142":{"tf":2.23606797749979},"143":{"tf":3.0},"144":{"tf":2.0},"177":{"tf":3.3166247903554},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":2.0},"75":{"tf":1.4142135623730951},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.605551275463989},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.7320508075688772},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.0},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.7320508075688772},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.4641016151377544},"84":{"tf":2.0},"86":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":2.8284271247461903},"131":{"tf":2.6457513110645907},"132":{"tf":3.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.4142135623730951},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.0},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":4.242640687119285},"242":{"tf":5.5677643628300215},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.0},"110":{"tf":1.7320508075688772},"111":{"tf":3.7416573867739413},"112":{"tf":3.3166247903554},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.4142135623730951},"118":{"tf":2.6457513110645907},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":2.6457513110645907},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.0},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.082762530298219},"2":{"tf":1.0},"200":{"tf":4.58257569495584},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"162":{"tf":2.23606797749979},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.7320508075688772}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.0},"84":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":1.7320508075688772}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":2.449489742783178},"209":{"tf":1.0},"210":{"tf":3.1622776601683795},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.3166247903554},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.0},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.7320508075688772},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":15,"docs":{"10":{"tf":2.0},"100":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"161":{"tf":2.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":2.8284271247461903},"83":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.449489742783178},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.449489742783178},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.0},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.0},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.7320508075688772},"30":{"tf":2.23606797749979},"43":{"tf":1.0},"7":{"tf":2.6457513110645907},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":30,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":1.7320508075688772},"64":{"tf":2.449489742783178},"66":{"tf":2.6457513110645907},"67":{"tf":2.6457513110645907},"68":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":3.0},"232":{"tf":3.4641016151377544},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.0},"86":{"tf":1.7320508075688772},"87":{"tf":2.23606797749979},"88":{"tf":2.0},"89":{"tf":3.0},"90":{"tf":2.6457513110645907},"91":{"tf":2.0},"92":{"tf":3.872983346207417},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"100":{"tf":2.449489742783178},"101":{"tf":4.358898943540674},"102":{"tf":3.0},"103":{"tf":2.8284271247461903},"104":{"tf":5.291502622129181},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":5.744562646538029},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.6457513110645907},"95":{"tf":3.605551275463989},"96":{"tf":3.1622776601683795},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":16,"docs":{"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":2.23606797749979},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"200":{"tf":2.449489742783178},"201":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"210":{"tf":2.8284271247461903},"211":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.449489742783178},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.0},"199":{"tf":2.449489742783178},"2":{"tf":1.7320508075688772},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.1622776601683795},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":2.8284271247461903},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.0},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.605551275463989},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.23606797749979},"82":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.7320508075688772},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.7320508075688772},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.449489742783178},"217":{"tf":3.872983346207417},"218":{"tf":3.605551275463989},"219":{"tf":2.8284271247461903},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.6457513110645907},"26":{"tf":1.7320508075688772},"3":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.449489742783178},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.0},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"37":{"tf":1.0},"45":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":22,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":2.8284271247461903},"214":{"tf":3.3166247903554},"215":{"tf":3.4641016151377544},"216":{"tf":2.23606797749979},"217":{"tf":3.3166247903554},"218":{"tf":4.0},"219":{"tf":2.6457513110645907},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":3.3166247903554},"224":{"tf":1.0},"225":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.23606797749979},"163":{"tf":4.795831523312719},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":2.8284271247461903},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":1.7320508075688772},"143":{"tf":4.0},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.23606797749979},"95":{"tf":2.0},"96":{"tf":6.082762530298219},"97":{"tf":1.4142135623730951},"98":{"tf":2.8284271247461903},"99":{"tf":3.605551275463989}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.477225575051661}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"132":{"tf":1.0},"149":{"tf":1.0},"17":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"27":{"tf":1.0},"5":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":4.898979485566356},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.449489742783178}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":2.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":50,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.449489742783178},"36":{"tf":4.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":3.3166247903554},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":2.8284271247461903},"117":{"tf":1.7320508075688772},"120":{"tf":2.0},"121":{"tf":3.4641016151377544},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":16,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.8284271247461903},"241":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"64":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.0},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.1622776601683795}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.1622776601683795},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.0},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.3166247903554},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.0},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":2.6457513110645907},"123":{"tf":3.605551275463989},"124":{"tf":2.449489742783178},"125":{"tf":3.3166247903554},"126":{"tf":2.449489742783178},"127":{"tf":1.0},"128":{"tf":3.3166247903554},"129":{"tf":2.449489742783178},"130":{"tf":3.0},"131":{"tf":2.449489742783178},"132":{"tf":2.0},"133":{"tf":3.3166247903554},"134":{"tf":2.8284271247461903},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.23606797749979},"158":{"tf":1.0},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.6457513110645907},"169":{"tf":2.23606797749979},"177":{"tf":3.872983346207417},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.0},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.23606797749979},"47":{"tf":3.1622776601683795}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":44,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"200":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"211":{"tf":1.7320508075688772},"212":{"tf":1.7320508075688772},"214":{"tf":1.0},"215":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":2.8284271247461903},"227":{"tf":4.358898943540674},"229":{"tf":2.449489742783178},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":3.3166247903554},"233":{"tf":2.0},"234":{"tf":3.605551275463989},"235":{"tf":4.0},"236":{"tf":2.23606797749979},"237":{"tf":2.6457513110645907},"238":{"tf":5.830951894845301},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"53":{"tf":1.0},"63":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"43":{"tf":3.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"5":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":119,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.449489742783178},"100":{"tf":4.242640687119285},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"119":{"tf":1.0},"12":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.449489742783178},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.4142135623730951},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.4142135623730951},"160":{"tf":3.0},"161":{"tf":2.6457513110645907},"162":{"tf":2.6457513110645907},"163":{"tf":5.291502622129181},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.1622776601683795},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.23606797749979},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"178":{"tf":4.358898943540674},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"210":{"tf":3.0},"211":{"tf":3.3166247903554},"212":{"tf":3.3166247903554},"228":{"tf":1.0},"23":{"tf":1.7320508075688772},"233":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.6457513110645907},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.7320508075688772},"39":{"tf":2.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":2.449489742783178},"52":{"tf":1.0},"54":{"tf":2.8284271247461903},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.0},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.23606797749979},"72":{"tf":2.6457513110645907},"73":{"tf":2.449489742783178},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":2.23606797749979},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.6457513110645907},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":20,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.23606797749979},"184":{"tf":5.0990195135927845},"185":{"tf":1.7320508075688772},"186":{"tf":3.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.656854249492381},"2":{"tf":1.4142135623730951},"200":{"tf":4.58257569495584},"201":{"tf":2.8284271247461903},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.449489742783178},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.0},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.7320508075688772},"60":{"tf":2.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"68":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.605551275463989},"143":{"tf":4.0},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":28,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":1.4142135623730951},"29":{"tf":3.1622776601683795},"30":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.449489742783178},"34":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.23606797749979},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.449489742783178},"124":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.23606797749979}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.0},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{")":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}},".":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":79,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"104":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.6457513110645907},"169":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":2.8284271247461903},"207":{"tf":3.3166247903554},"208":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":2.0},"55":{"tf":1.4142135623730951},"56":{"tf":2.6457513110645907},"59":{"tf":1.0},"6":{"tf":2.6457513110645907},"60":{"tf":1.4142135623730951},"62":{"tf":3.1622776601683795},"63":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"66":{"tf":3.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"72":{"tf":2.23606797749979},"73":{"tf":1.7320508075688772},"74":{"tf":2.6457513110645907},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"81":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"94":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":1,"docs":{"26":{"tf":1.0}}},"a":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"4":{"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":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"s":{"2":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"215":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0}}},"1":{"0":{"0":{"df":1,"docs":{"29":{"tf":1.0}}},"1":{"0":{"1":{"0":{"1":{"0":{"1":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"_":{"4":{"5":{"6":{"a":{"_":{"b":{"c":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"215":{"tf":1.7320508075688772},"234":{"tf":1.0},"26":{"tf":1.0},"46":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}}},"2":{":":{":":{"a":{"df":1,"docs":{"242":{"tf":2.0}}},"b":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"c":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"80":{"tf":1.4142135623730951}},"e":{":":{":":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"25":{"tf":1.0}}},"3":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"80":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{":":{":":{"a":{"df":2,"docs":{"241":{"tf":2.0},"242":{"tf":2.0}}},"b":{"df":1,"docs":{"241":{"tf":2.0}}},"c":{"df":1,"docs":{"241":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"df":1,"docs":{"242":{"tf":2.23606797749979}}},"n":{"df":1,"docs":{"242":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"147":{"tf":1.0},"26":{"tf":1.0},"44":{"tf":1.0},"69":{"tf":1.4142135623730951}}},"3":{":":{":":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"d":{"d":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"1":{"1":{"c":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"_":{"c":{"d":{"_":{"1":{"2":{"_":{"3":{"5":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"c":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"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":{}},"c":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"219":{"tf":1.0},"3":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":3,"docs":{"217":{"tf":1.4142135623730951},"24":{"tf":1.0},"8":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"8":{"0":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"26":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"7":{"tf":1.0}}}}}},"1":{".":{"2":{"1":{".":{"0":{"df":1,"docs":{"225":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"0":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"233":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":4,"docs":{"134":{"tf":2.6457513110645907},"151":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}},"u":{"6":{"4":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"0":{"0":{"0":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"151":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":3.3166247903554},"92":{"tf":2.449489742783178}},"u":{"8":{"df":1,"docs":{"83":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"3":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"df":1,"docs":{"39":{"tf":1.4142135623730951}}},"3":{"3":{"_":{"8":{"7":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"4":{"_":{"3":{"2":{"2":{"_":{"9":{"7":{"3":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"39":{"tf":1.0}}},"6":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"_":{"0":{"0":{"0":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":67,"docs":{"100":{"tf":2.23606797749979},"101":{"tf":3.605551275463989},"102":{"tf":3.1622776601683795},"103":{"tf":1.4142135623730951},"104":{"tf":3.3166247903554},"105":{"tf":2.8284271247461903},"107":{"tf":2.0},"108":{"tf":2.8284271247461903},"11":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":3.605551275463989},"169":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.449489742783178},"227":{"tf":1.4142135623730951},"229":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":2.0},"47":{"tf":1.0},"51":{"tf":2.0},"54":{"tf":1.7320508075688772},"56":{"tf":2.6457513110645907},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"59":{"tf":1.0},"6":{"tf":2.449489742783178},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"64":{"tf":2.23606797749979},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.0},"98":{"tf":2.0},"99":{"tf":1.4142135623730951}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"29":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"0":{"2":{"4":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"142":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":1,"docs":{"238":{"tf":1.0}}},"2":{"5":{"6":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":1,"docs":{"104":{"tf":1.0}}},"6":{"df":6,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"223":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"6":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"6":{"tf":1.0}}},"df":37,"docs":{"100":{"tf":1.0},"101":{"tf":3.7416573867739413},"102":{"tf":2.8284271247461903},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"116":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"30":{"tf":1.0},"39":{"tf":1.7320508075688772},"46":{"tf":1.0},"56":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.23606797749979},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.449489742783178}},"u":{"1":{"2":{"8":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":2,"docs":{"15":{"tf":1.0},"29":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"2":{"df":5,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"6":{"tf":1.0}}},"3":{"df":1,"docs":{"238":{"tf":1.0}}},"4":{"0":{"2":{"8":{"2":{"3":{"6":{"6":{"9":{"2":{"0":{"9":{"3":{"8":{"4":{"6":{"3":{"4":{"6":{"3":{"3":{"7":{"4":{"6":{"0":{"7":{"4":{"3":{"1":{"7":{"6":{"8":{"2":{"1":{"1":{"4":{"5":{"4":{"df":1,"docs":{"161":{"tf":1.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"238":{"tf":1.0}}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":26,"docs":{"101":{"tf":3.1622776601683795},"102":{"tf":3.1622776601683795},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"129":{"tf":3.1622776601683795},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"15":{"tf":1.0},"151":{"tf":1.0},"199":{"tf":1.0},"206":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"30":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"56":{"tf":1.0},"8":{"tf":1.0},"94":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"98":{"tf":2.0}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"/":{"2":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"2":{"_":{"0":{"0":{"0":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":20,"docs":{"131":{"tf":1.0},"132":{"tf":2.8284271247461903},"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"24":{"tf":1.0},"32":{"tf":2.0},"38":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903},"76":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}},"df":8,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":2.0},"104":{"tf":1.0},"108":{"tf":1.0},"151":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"46":{"tf":1.0},"58":{"tf":1.0}}},"5":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"7":{"8":{"9":{"6":{"0":{"4":{"4":{"6":{"1":{"8":{"6":{"5":{"8":{"0":{"9":{"7":{"7":{"1":{"1":{"7":{"8":{"5":{"4":{"9":{"2":{"5":{"0":{"4":{"3":{"4":{"3":{"9":{"5":{"3":{"9":{"2":{"6":{"6":{"3":{"4":{"9":{"9":{"2":{"3":{"3":{"2":{"8":{"2":{"0":{"2":{"8":{"2":{"0":{"1":{"9":{"7":{"2":{"8":{"7":{"9":{"2":{"0":{"0":{"3":{"9":{"5":{"6":{"5":{"6":{"4":{"8":{"1":{"9":{"9":{"6":{"8":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"196":{"tf":1.0},"233":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"92":{"tf":2.0}}},"6":{"2":{"df":1,"docs":{"132":{"tf":2.0}}},"4":{"df":3,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"6":{"tf":1.0}}},"5":{"4":{"3":{"2":{"1":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"df":3,"docs":{"101":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"98":{"tf":1.0}}},"7":{"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":4,"docs":{"101":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"8":{"0":{"df":1,"docs":{"98":{"tf":1.0}}},"7":{"3":{"df":0,"docs":{},"u":{"1":{"6":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"12":{"tf":1.0},"15":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0}}},"9":{"df":7,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"53":{"tf":1.0}}},"_":{"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":23,"docs":{"100":{"tf":1.0},"101":{"tf":2.23606797749979},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"113":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"217":{"tf":1.0},"219":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"96":{"tf":2.6457513110645907},"98":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":2,"docs":{"203":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}},"v":{"1":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"53":{"tf":1.0}}},"y":{"df":1,"docs":{"59":{"tf":1.0}}}},"a":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"b":{".":{"c":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"b":{"2":{"c":{"3":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"26":{"tf":1.0}}},"2":{"df":1,"docs":{"26":{"tf":1.0}}},"3":{"df":1,"docs":{"26":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"26":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"26":{"tf":1.0}}},"7":{"df":1,"docs":{"26":{"tf":1.0}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{":":{":":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":10,"docs":{"115":{"tf":1.0},"119":{"tf":1.4142135623730951},"146":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"39":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"i":{"d":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"0":{"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":{}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"0":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"119":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"_":{"4":{"2":{"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":{}}}},"m":{":":{":":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":2.0}}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":5,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"133":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":19,"docs":{"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"123":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":1.7320508075688772},"198":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"df":4,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"169":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"200":{"tf":1.0},"204":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"(":{"a":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":1.4142135623730951}}},"df":2,"docs":{"168":{"tf":1.0},"169":{"tf":2.0}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"214":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"b":{"c":{"df":1,"docs":{"234":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":38,"docs":{"103":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"125":{"tf":3.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":2.8284271247461903},"143":{"tf":1.0},"144":{"tf":1.0},"163":{"tf":3.872983346207417},"164":{"tf":1.0},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"170":{"tf":2.449489742783178},"171":{"tf":2.6457513110645907},"172":{"tf":2.0},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":2.0},"176":{"tf":1.7320508075688772},"177":{"tf":3.7416573867739413},"178":{"tf":3.7416573867739413},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"65":{"tf":1.7320508075688772},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"75":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.0},"12":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"227":{"tf":2.0},"229":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.7320508075688772},"77":{"tf":2.0},"78":{"tf":3.7416573867739413},"79":{"tf":2.0},"80":{"tf":3.1622776601683795},"81":{"tf":2.6457513110645907},"92":{"tf":1.0}}}},"v":{"df":31,"docs":{"119":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.7320508075688772},"192":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"225":{"tf":1.0},"233":{"tf":1.0},"238":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.4142135623730951},"130":{"tf":2.449489742783178},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"170":{"tf":1.0},"203":{"tf":1.4142135623730951},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"205":{"tf":1.0},"210":{"tf":1.7320508075688772}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"169":{"tf":1.0},"23":{"tf":1.4142135623730951},"242":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"222":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"142":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"136":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"170":{"tf":1.0},"216":{"tf":1.0},"38":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"78":{"tf":1.0},"80":{"tf":1.0}}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"115":{"tf":1.0},"120":{"tf":1.0}}}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"97":{"tf":1.0}}},"2":{"df":1,"docs":{"97":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"105":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.4142135623730951},"88":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"139":{"tf":1.0},"151":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"225":{"tf":1.0},"63":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0}}}}}}},"r":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":2.449489742783178},"218":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"69":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},">":{":":{":":{"<":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":2.0},"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"4":{"2":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":27,"docs":{"111":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"182":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"215":{"tf":4.242640687119285},"216":{"tf":2.6457513110645907},"217":{"tf":4.47213595499958},"218":{"tf":3.7416573867739413},"219":{"tf":3.4641016151377544},"23":{"tf":3.7416573867739413},"234":{"tf":1.0},"24":{"tf":3.7416573867739413},"242":{"tf":1.4142135623730951},"25":{"tf":3.0},"26":{"tf":3.4641016151377544},"3":{"tf":2.8284271247461903},"44":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}}},"df":19,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"124":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.0},"225":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.23606797749979},"62":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.0}}}}}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"212":{"tf":1.0},"73":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"143":{"tf":1.0},"212":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}}}}}},"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":{"69":{"tf":1.0}}}}}}}}},"i":{"a":{"df":14,"docs":{"119":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.8284271247461903},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.0},"241":{"tf":1.7320508075688772}},"s":{"df":16,"docs":{"183":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":1.7320508075688772},"187":{"tf":2.0},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":47,"docs":{"0":{"tf":1.0},"102":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"137":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":3.1622776601683795},"171":{"tf":2.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"25":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"41":{"tf":2.0},"42":{"tf":1.0},"54":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"170":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1":{"tf":1.0},"235":{"tf":1.0},"47":{"tf":1.0},"82":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"210":{"tf":1.0},"242":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"23":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":19,"docs":{"12":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"219":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.4142135623730951},"62":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0}},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"195":{"tf":1.0},"238":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":25,"docs":{"115":{"tf":1.0},"125":{"tf":1.4142135623730951},"131":{"tf":1.0},"139":{"tf":1.4142135623730951},"154":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.7320508075688772},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":3.1622776601683795},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.0},"33":{"tf":1.0},"54":{"tf":2.6457513110645907},"55":{"tf":3.0},"57":{"tf":1.0},"60":{"tf":1.7320508075688772},"65":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":13,"docs":{"111":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"171":{"tf":1.0},"200":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"184":{"tf":1.0},"210":{"tf":1.0},"241":{"tf":1.0},"39":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":1,"docs":{"133":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"214":{"tf":1.0},"222":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.0},"174":{"tf":1.0},"176":{"tf":1.0},"4":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":9,"docs":{"107":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"57":{"tf":1.0},"60":{"tf":1.0},"73":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"197":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"75":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"10":{"tf":1.0},"108":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"168":{"tf":1.0},"178":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"218":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"10":{"tf":2.0},"151":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"79":{"tf":1.4142135623730951}}}}}},"i":{"df":4,"docs":{"104":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"96":{"tf":2.0}}}}},"m":{"(":{"df":1,"docs":{"143":{"tf":1.0}}},"df":9,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":2.8284271247461903},"94":{"tf":1.0},"95":{"tf":2.449489742783178},"97":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"60":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"143":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"213":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"163":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"&":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"v":{"1":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"*":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"58":{"tf":1.0}}},"df":1,"docs":{"58":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":2,"docs":{"32":{"tf":1.4142135623730951},"63":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"4":{"8":{"\\":{"df":0,"docs":{},"x":{"6":{"5":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"c":{"\\":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"f":{"\\":{"df":0,"docs":{},"x":{"2":{"1":{"\\":{"df":0,"docs":{},"x":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"79":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"57":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"62":{"tf":1.0}}},"i":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}},"j":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"80":{"tf":1.0}}},"m":{"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"n":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"x":{"1":{"df":1,"docs":{"59":{"tf":1.0}}},"df":5,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.7320508075688772},"66":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":6,"docs":{"30":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":3.1622776601683795},"80":{"tf":1.0},"81":{"tf":1.0}}}},"t":{"df":5,"docs":{"0":{"tf":2.0},"122":{"tf":1.0},"134":{"tf":1.0},"37":{"tf":1.0},"75":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":16,"docs":{"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"150":{"tf":1.0},"173":{"tf":1.0},"217":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"62":{"tf":3.3166247903554},"63":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"164":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"209":{"tf":1.0},"44":{"tf":1.0},"7":{"tf":1.0},"76":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"158":{"tf":1.0},"234":{"tf":1.4142135623730951}}},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"190":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"148":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"166":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":2.0},"74":{"tf":2.23606797749979},"75":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"105":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"64":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"163":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"b":{"\"":{"1":{"df":1,"docs":{"46":{"tf":1.0}}},"\\":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\\":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"!":{"\\":{"\"":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"b":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"!":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"150":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":2.0},"69":{"tf":1.0},"72":{"tf":1.0}}}}}}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0}},"e":{":":{":":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"201":{"tf":1.0},"202":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"168":{"tf":1.0}}},"df":1,"docs":{"168":{"tf":1.0}}}},"_":{"a":{"_":{"df":0,"docs":{},"z":{"_":{"4":{"_":{"2":{"df":2,"docs":{"126":{"tf":1.0},"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}},"s":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"(":{"_":{"df":1,"docs":{"202":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":3,"docs":{"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":3.1622776601683795}}}}}},".":{"0":{".":{"df":0,"docs":{},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":1,"docs":{"132":{"tf":2.23606797749979}}},"df":0,"docs":{}},"<":{"a":{"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":2,"docs":{"155":{"tf":1.0},"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"4":{"2":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":3.3166247903554},"137":{"tf":1.4142135623730951},"140":{"tf":1.0},"158":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"222":{"tf":1.0},"42":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}},"i":{"c":{"df":2,"docs":{"170":{"tf":1.0},"5":{"tf":1.0}}},"df":0,"docs":{}}},"z":{".":{"0":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"1":{"9":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"123":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":2.23606797749979},"137":{"tf":1.0}}}},"df":17,"docs":{"123":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"224":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"81":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"217":{"tf":1.0}}}}},"df":14,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"24":{"tf":1.7320508075688772},"41":{"tf":1.0},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"143":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":2.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"108":{"tf":1.4142135623730951},"146":{"tf":1.0},"190":{"tf":1.0},"241":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":4,"docs":{"10":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"109":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"33":{"tf":1.0},"58":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":7,"docs":{"111":{"tf":1.0},"117":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"51":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"205":{"tf":1.0},"208":{"tf":1.0}}}}},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"147":{"tf":1.0},"209":{"tf":1.0},"218":{"tf":2.0},"222":{"tf":1.0},"41":{"tf":1.0},"62":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"209":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}}},"d":{"df":14,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"143":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":3.7416573867739413},"62":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":2.449489742783178},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":7,"docs":{"11":{"tf":2.0},"12":{"tf":2.8284271247461903},"160":{"tf":1.0},"178":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.4142135623730951},"6":{"tf":2.449489742783178}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"11":{"tf":2.6457513110645907},"12":{"tf":1.0},"151":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"117":{"tf":1.4142135623730951},"120":{"tf":2.0},"183":{"tf":1.0},"190":{"tf":2.449489742783178},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"199":{"tf":1.0},"241":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":3.1622776601683795},"82":{"tf":1.0},"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":13,"docs":{"110":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"154":{"tf":1.0},"163":{"tf":1.0},"65":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":42,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":3.0},"128":{"tf":1.4142135623730951},"129":{"tf":2.449489742783178},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.0},"137":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"17":{"tf":2.0},"176":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":2.0},"215":{"tf":2.0},"22":{"tf":1.0},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"5":{"tf":1.0},"55":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"11":{"tf":1.7320508075688772},"143":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.4142135623730951}}}}}}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"u":{"6":{"4":{"(":{"df":1,"docs":{"210":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{">":{"(":{"df":1,"docs":{"206":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"u":{">":{"(":{"df":1,"docs":{"212":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"206":{"tf":1.0},"210":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":19,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":2.23606797749979},"132":{"tf":1.7320508075688772},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"51":{"tf":1.0},"58":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"87":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":37,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"153":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"201":{"tf":1.0},"203":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"40":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"105":{"tf":1.0},"129":{"tf":1.0},"208":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":2.0},"25":{"tf":1.0},"31":{"tf":2.23606797749979},"42":{"tf":1.4142135623730951},"58":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"x":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"200":{"tf":1.7320508075688772}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"157":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":12,"docs":{"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"75":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.0},"89":{"tf":2.23606797749979},"90":{"tf":2.6457513110645907},"91":{"tf":1.4142135623730951},"92":{"tf":3.7416573867739413},"93":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"143":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"188":{"tf":1.0},"218":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"221":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"16":{"tf":1.0},"214":{"tf":1.4142135623730951},"22":{"tf":1.0},"222":{"tf":1.4142135623730951},"23":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"(":{"_":{"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":2,"docs":{"199":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"170":{"tf":1.4142135623730951},"221":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.4142135623730951},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"221":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"150":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":2.6457513110645907}}}}}},"c":{".":{"0":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"75":{"tf":2.0}}},"2":{"df":1,"docs":{"75":{"tf":2.6457513110645907}}},":":{":":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.0},"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":1,"docs":{"180":{"tf":1.4142135623730951}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951}},"n":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}},"s":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":0,"docs":{}},"x":{"2":{"df":1,"docs":{"179":{"tf":1.0}}},"df":1,"docs":{"179":{"tf":1.0}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":28,"docs":{"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"112":{"tf":1.4142135623730951},"119":{"tf":2.449489742783178},"128":{"tf":1.0},"157":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"195":{"tf":3.1622776601683795},"196":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"164":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0}}}}},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":2,"docs":{"111":{"tf":2.0},"112":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"132":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"151":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"102":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":1,"docs":{"43":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.4142135623730951},"112":{"tf":1.0},"132":{"tf":1.0},"147":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"52":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"t":{"df":4,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":2.6457513110645907}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.0},"87":{"tf":1.0}}}}},"d":{"df":1,"docs":{"236":{"tf":1.0}}},"df":9,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":2.0},"46":{"tf":2.0},"47":{"tf":1.0},"55":{"tf":1.0},"96":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"134":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"83":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"195":{"tf":1.0},"204":{"tf":2.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":13,"docs":{"0":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0},"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"24":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"i":{"df":1,"docs":{"143":{"tf":1.0}}},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":15,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"143":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"68":{"tf":1.0},"72":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"88":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"163":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":1,"docs":{"134":{"tf":1.0}}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"186":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":3,"docs":{"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":33,"docs":{"118":{"tf":1.7320508075688772},"134":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"195":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.7320508075688772},"3":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":2.0},"80":{"tf":2.449489742783178},"83":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}},"<":{"a":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951}}},"b":{"df":2,"docs":{"162":{"tf":1.4142135623730951},"163":{"tf":1.0}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"162":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"236":{"tf":2.0},"238":{"tf":1.4142135623730951},"37":{"tf":2.23606797749979},"65":{"tf":1.0},"66":{"tf":2.0},"69":{"tf":2.6457513110645907},"75":{"tf":2.8284271247461903}},"s":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"177":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"112":{"tf":1.0},"169":{"tf":1.0},"60":{"tf":1.0},"98":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"190":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}}},"m":{"a":{"df":5,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0}},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":5,"docs":{"220":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.7320508075688772},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"115":{"tf":1.0},"160":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"30":{"tf":1.4142135623730951},"42":{"tf":1.0},"65":{"tf":1.0},"82":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"150":{"tf":1.0},"152":{"tf":1.0},"3":{"tf":1.0},"55":{"tf":1.0},"65":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":2.0}}}}}}},"t":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":44,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"160":{"tf":2.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"197":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.4142135623730951},"95":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":2.0}}},"df":0,"docs":{}}},"df":7,"docs":{"151":{"tf":1.7320508075688772},"169":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"162":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"39":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"162":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"60":{"tf":1.0}}}}}},"d":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"93":{"tf":1.0}}},"2":{"df":1,"docs":{"93":{"tf":1.0}}},"df":6,"docs":{"46":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":19,"docs":{"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":3.0},"84":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"99":{"tf":1.0}}}}},"df":1,"docs":{"137":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"222":{"tf":1.0},"235":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"215":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"178":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"200":{"tf":1.0},"5":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"134":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"136":{"tf":1.0},"143":{"tf":1.0},"163":{"tf":1.7320508075688772},"169":{"tf":1.0},"178":{"tf":1.4142135623730951},"206":{"tf":1.0},"214":{"tf":1.4142135623730951},"241":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"143":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"95":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"145":{"tf":1.4142135623730951},"151":{"tf":1.0}}},"df":17,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":2.23606797749979},"191":{"tf":1.0},"2":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":2.449489742783178},"234":{"tf":1.0},"4":{"tf":1.0},"96":{"tf":2.0}}}}},"df":13,"docs":{"101":{"tf":1.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":1.0},"150":{"tf":2.23606797749979},"151":{"tf":3.605551275463989},"191":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":1.0},"4":{"tf":1.0},"80":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}},"t":{"]":{",":{"*":{">":{"(":{"[":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.4142135623730951},"130":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":2.449489742783178},"164":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"177":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.7320508075688772},"212":{"tf":2.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"129":{"tf":1.0},"158":{"tf":1.4142135623730951},"21":{"tf":1.0},"241":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"96":{"tf":2.449489742783178},"99":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"143":{"tf":1.7320508075688772},"238":{"tf":1.0},"75":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":35,"docs":{"113":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"168":{"tf":1.7320508075688772},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":2.449489742783178},"215":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.7320508075688772},"42":{"tf":1.0},"53":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"92":{"tf":1.4142135623730951},"97":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":7,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":1.7320508075688772},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":6,"docs":{"85":{"tf":1.0},"88":{"tf":2.23606797749979},"89":{"tf":1.0},"91":{"tf":2.23606797749979},"92":{"tf":1.4142135623730951},"93":{"tf":2.23606797749979}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"160":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":40,"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},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.7320508075688772},"222":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.8284271247461903},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.0}}},"t":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"104":{"tf":1.0},"200":{"tf":1.0}}},"t":{"df":1,"docs":{"36":{"tf":1.4142135623730951}}}},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":43,"docs":{"114":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"130":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":3.0},"137":{"tf":1.0},"139":{"tf":2.449489742783178},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"163":{"tf":2.6457513110645907},"165":{"tf":1.7320508075688772},"166":{"tf":3.0},"171":{"tf":1.4142135623730951},"172":{"tf":3.0},"176":{"tf":2.23606797749979},"177":{"tf":3.605551275463989},"178":{"tf":2.449489742783178},"179":{"tf":4.242640687119285},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.6457513110645907},"204":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.4142135623730951},"3":{"tf":1.0},"33":{"tf":3.1622776601683795},"34":{"tf":2.0},"37":{"tf":2.0},"40":{"tf":1.7320508075688772},"48":{"tf":1.0},"67":{"tf":4.0},"69":{"tf":3.4641016151377544},"72":{"tf":1.0},"76":{"tf":2.6457513110645907}}},"y":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"223":{"tf":1.0},"41":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"222":{"tf":1.0},"30":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"104":{"tf":1.0},"115":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"115":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"104":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"115":{"tf":1.0},"124":{"tf":1.0},"128":{"tf":2.23606797749979},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"142":{"tf":2.23606797749979},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"221":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"36":{"tf":2.449489742783178},"37":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"238":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"0":{"tf":1.0}}},"p":{"(":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.4142135623730951}}}},".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"200":{"tf":1.0}}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"180":{"tf":2.0}}}}}},"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":2.0}}}}}},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"199":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"u":{"6":{"4":{">":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"179":{"tf":1.4142135623730951},"181":{"tf":2.0},"199":{"tf":2.449489742783178},"200":{"tf":1.7320508075688772},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":3,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0}}},"r":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"0":{"tf":1.0},"162":{"tf":3.0},"163":{"tf":1.0}},"y":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":20,"docs":{"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"177":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":2.0},"215":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"39":{"tf":1.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"205":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"199":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"151":{"tf":1.0},"168":{"tf":1.0},"242":{"tf":1.7320508075688772}},"i":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"(":{"d":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"a":{"df":11,"docs":{"107":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"152":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":4,"docs":{"177":{"tf":1.0},"205":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"46":{"tf":2.0},"47":{"tf":1.0}},"e":{"a":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}},"g":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772},"111":{"tf":1.0},"115":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":2.449489742783178},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"142":{"tf":1.0},"146":{"tf":1.7320508075688772},"148":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"163":{"tf":2.8284271247461903},"165":{"tf":1.7320508075688772},"177":{"tf":2.23606797749979},"178":{"tf":2.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.0},"192":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"210":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"217":{"tf":2.8284271247461903},"218":{"tf":2.23606797749979},"234":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":3.1622776601683795},"242":{"tf":3.1622776601683795},"25":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":2.0},"64":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"161":{"tf":1.4142135623730951},"208":{"tf":2.0},"211":{"tf":1.0},"215":{"tf":1.0},"235":{"tf":1.0},"51":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":44,"docs":{"1":{"tf":1.7320508075688772},"104":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"125":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"123":{"tf":2.0},"128":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"168":{"tf":1.0},"187":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"241":{"tf":1.0},"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"31":{"tf":1.0},"33":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"101":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"131":{"tf":1.0},"164":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":2.8284271247461903}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"214":{"tf":2.0},"215":{"tf":4.0},"218":{"tf":2.23606797749979},"221":{"tf":2.0},"223":{"tf":2.8284271247461903},"224":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"24":{"tf":1.0},"242":{"tf":2.0},"33":{"tf":1.0},"6":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":7,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"23":{"tf":1.4142135623730951},"78":{"tf":1.0},"80":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":3,"docs":{"111":{"tf":1.0},"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"34":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"132":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"178":{"tf":1.0},"190":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"233":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"11":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"43":{"tf":1.0},"71":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"209":{"tf":1.4142135623730951}}}},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"b":{"a":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"124":{"tf":1.0},"129":{"tf":1.7320508075688772},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"173":{"tf":1.0},"33":{"tf":2.0},"37":{"tf":1.0},"41":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"1":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":1,"docs":{"134":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.4142135623730951},"37":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"143":{"tf":2.6457513110645907},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":21,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"215":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"211":{"tf":1.0},"80":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"235":{"tf":1.4142135623730951}}}}}}}}}}},"v":{"df":3,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":3.0},"219":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":32,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"13":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"168":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":2.0},"214":{"tf":1.0},"217":{"tf":1.4142135623730951},"219":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"60":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"23":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0},"7":{"tf":1.0}}}}},"r":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":11,"docs":{"132":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"222":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0},"75":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"214":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"143":{"tf":1.0},"211":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"134":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}}}}},"v":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"55":{"tf":1.0}}}}},"i":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.4142135623730951},"230":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.4142135623730951}}}}}}}},"o":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"214":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"221":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}}},"df":2,"docs":{"69":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":6,"docs":{"128":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"178":{"tf":1.0},"236":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"195":{"tf":1.0},"218":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0}}}},"t":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":2.0},"143":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}},"e":{"(":{"&":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{">":{"(":{"df":0,"docs":{},"r":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"166":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"d":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}},"x":{"df":1,"docs":{"120":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"143":{"tf":1.0},"160":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"c":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}},"df":1,"docs":{"212":{"tf":1.0}},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"y":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":45,"docs":{"103":{"tf":2.449489742783178},"108":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":3.1622776601683795},"128":{"tf":1.7320508075688772},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"14":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"171":{"tf":1.0},"173":{"tf":2.6457513110645907},"176":{"tf":2.23606797749979},"177":{"tf":3.4641016151377544},"178":{"tf":2.0},"179":{"tf":1.4142135623730951},"180":{"tf":3.4641016151377544},"181":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"208":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":2.0},"76":{"tf":1.4142135623730951},"98":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"139":{"tf":1.0},"192":{"tf":1.4142135623730951},"210":{"tf":1.0},"242":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.449489742783178},"143":{"tf":2.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"174":{"tf":1.0},"57":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":2.449489742783178}}},"g":{".":{",":{"1":{"1":{"2":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"_":{"2":{"3":{"4":{"_":{"5":{"6":{"7":{"8":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"10":{"tf":1.0},"125":{"tf":1.0},"131":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"215":{"tf":2.6457513110645907},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.4142135623730951},"5":{"tf":1.0},"7":{"tf":1.4142135623730951},"96":{"tf":3.0}}}},"/":{"df":0,"docs":{},"f":{"df":1,"docs":{"224":{"tf":1.0}}}},"1":{"df":3,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"173":{"tf":1.0},"37":{"tf":1.7320508075688772}}},"_":{"df":0,"docs":{},"i":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":33,"docs":{"10":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":2.0},"112":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"192":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"30":{"tf":1.7320508075688772},"58":{"tf":1.0},"73":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"236":{"tf":2.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"215":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"74":{"tf":1.0}}}}},"df":16,"docs":{"147":{"tf":1.0},"15":{"tf":2.0},"172":{"tf":1.0},"197":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":3.3166247903554},"37":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"47":{"tf":1.0},"53":{"tf":2.8284271247461903},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"131":{"tf":1.0},"173":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"80":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"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":12,"docs":{"160":{"tf":1.0},"178":{"tf":1.7320508075688772},"205":{"tf":1.0},"210":{"tf":2.0},"215":{"tf":1.0},"25":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"33":{"tf":2.23606797749979},"34":{"tf":1.0},"43":{"tf":2.23606797749979},"93":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"223":{"tf":1.4142135623730951},"236":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.0},"95":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"147":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"112":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"128":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"220":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"d":{"df":2,"docs":{"24":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"d":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":13,"docs":{"104":{"tf":1.0},"108":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"190":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"204":{"tf":1.0},"215":{"tf":1.4142135623730951},"27":{"tf":1.0},"31":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"75":{"tf":1.0},"77":{"tf":1.0}}},"df":2,"docs":{"29":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":5,"docs":{"134":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"35":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"143":{"tf":1.0},"163":{"tf":1.0},"210":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"214":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"40":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":2.23606797749979},"112":{"tf":3.3166247903554},"208":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"'":{"df":2,"docs":{"139":{"tf":1.0},"142":{"tf":1.0}}},"df":15,"docs":{"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"136":{"tf":3.0},"137":{"tf":4.69041575982343},"138":{"tf":2.449489742783178},"139":{"tf":2.8284271247461903},"140":{"tf":2.6457513110645907},"141":{"tf":1.7320508075688772},"142":{"tf":2.6457513110645907},"143":{"tf":3.3166247903554},"144":{"tf":2.449489742783178},"177":{"tf":3.4641016151377544},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"136":{"tf":1.7320508075688772}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"118":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"41":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"101":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"14":{"tf":2.8284271247461903},"151":{"tf":1.4142135623730951},"37":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.23606797749979},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":20,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"142":{"tf":1.0},"184":{"tf":1.4142135623730951},"186":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"200":{"tf":1.0},"201":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"[":{"df":0,"docs":{},"e":{"1":{"1":{"0":{"0":{"1":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"100":{"tf":2.23606797749979},"103":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"123":{"tf":1.7320508075688772},"125":{"tf":2.0},"128":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.0},"137":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"151":{"tf":2.449489742783178},"159":{"tf":2.0},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"166":{"tf":2.23606797749979},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"177":{"tf":2.0},"190":{"tf":2.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"198":{"tf":1.0},"199":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"219":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":2.449489742783178},"33":{"tf":1.7320508075688772},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.449489742783178},"47":{"tf":1.0},"52":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":2.449489742783178},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":2.0},"83":{"tf":1.4142135623730951},"95":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"30":{"tf":2.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}},"t":{"c":{"df":3,"docs":{"162":{"tf":1.0},"230":{"tf":1.0},"241":{"tf":1.0}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":9,"docs":{"105":{"tf":2.449489742783178},"121":{"tf":1.0},"143":{"tf":1.0},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"88":{"tf":2.23606797749979},"91":{"tf":2.0}}}}}},"df":13,"docs":{"105":{"tf":1.0},"147":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"217":{"tf":1.0},"222":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"212":{"tf":1.7320508075688772},"217":{"tf":1.0},"56":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"101":{"tf":1.0},"215":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":98,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"146":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.0},"2":{"tf":2.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":2.6457513110645907},"30":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"e":{"(":{"c":{"_":{"df":0,"docs":{},"x":{"df":1,"docs":{"179":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"201":{"tf":1.0}}},"df":1,"docs":{"188":{"tf":1.0}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"198":{"tf":1.0},"202":{"tf":1.0}}}},".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{":":{"1":{"1":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{":":{"9":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"1":{"df":1,"docs":{"193":{"tf":1.0}}},"2":{"df":1,"docs":{"193":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"119":{"tf":1.0}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"114":{"tf":1.0}}},"df":1,"docs":{"200":{"tf":1.0}}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"129":{"tf":1.0}}},"z":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"217":{"tf":2.0},"218":{"tf":1.0},"219":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"151":{"tf":1.0},"177":{"tf":1.0},"212":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"109":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"116":{"tf":1.0},"122":{"tf":1.0},"143":{"tf":1.4142135623730951},"173":{"tf":1.0},"235":{"tf":1.0},"41":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"104":{"tf":3.7416573867739413},"105":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":14,"docs":{"116":{"tf":1.0},"129":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"48":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0}}}},"t":{"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"108":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"103":{"tf":1.0},"163":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"238":{"tf":2.0},"38":{"tf":1.0},"42":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":2.6457513110645907},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":2.0},"236":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"227":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":2.23606797749979},"231":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":2.6457513110645907}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"33":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"8":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"0":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.4142135623730951},"73":{"tf":1.0},"8":{"tf":1.0},"96":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"111":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"195":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.4142135623730951},"218":{"tf":1.0}}}},"s":{"df":3,"docs":{"112":{"tf":1.0},"219":{"tf":1.0},"55":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":56,"docs":{"100":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":2.6457513110645907},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"143":{"tf":2.0},"146":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":1.0},"151":{"tf":2.0},"178":{"tf":1.0},"183":{"tf":1.0},"190":{"tf":2.23606797749979},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"211":{"tf":1.0},"24":{"tf":2.0},"241":{"tf":1.0},"26":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.7320508075688772},"64":{"tf":1.4142135623730951},"65":{"tf":4.123105625617661},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"83":{"tf":3.7416573867739413},"84":{"tf":2.23606797749979},"86":{"tf":1.4142135623730951},"89":{"tf":2.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":2.23606797749979},"95":{"tf":2.23606797749979},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"4":{"df":1,"docs":{"95":{"tf":1.0}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"131":{"tf":1.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":2,"docs":{"208":{"tf":1.0},"40":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"215":{"tf":1.0},"225":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":2,"docs":{"178":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"y":{"df":1,"docs":{"41":{"tf":1.0}}}},"f":{"(":{"a":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"102":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951}}}},"1":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":3,"docs":{"121":{"tf":1.0},"57":{"tf":1.7320508075688772},"58":{"tf":3.1622776601683795}}},"2":{"df":5,"docs":{"121":{"tf":1.0},"133":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":3.3166247903554}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"36":{"tf":1.0}}},"2":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":2.0},"229":{"tf":1.4142135623730951},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"235":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":2.449489742783178}},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":27,"docs":{"102":{"tf":1.0},"104":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"129":{"tf":3.0},"132":{"tf":2.449489742783178},"147":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":2.23606797749979},"86":{"tf":1.0},"87":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"134":{"tf":1.0},"142":{"tf":1.0},"40":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":14,"docs":{"134":{"tf":1.0},"163":{"tf":2.449489742783178},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"202":{"tf":1.0},"36":{"tf":1.7320508075688772},"47":{"tf":1.0},"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":2.449489742783178},"69":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.0},"170":{"tf":1.0},"199":{"tf":1.0},"204":{"tf":1.0},"236":{"tf":1.0},"240":{"tf":1.0},"25":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"205":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0}}}},"w":{"df":3,"docs":{"101":{"tf":1.0},"38":{"tf":1.0},"60":{"tf":1.0}}}},"f":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"'":{"df":3,"docs":{"130":{"tf":1.0},"132":{"tf":1.0},"96":{"tf":1.0}}},"df":36,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":3.3166247903554},"130":{"tf":3.0},"131":{"tf":2.8284271247461903},"132":{"tf":3.1622776601683795},"133":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"142":{"tf":3.3166247903554},"143":{"tf":2.23606797749979},"155":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":3.3166247903554},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"207":{"tf":1.0},"215":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.4142135623730951},"60":{"tf":3.605551275463989},"96":{"tf":2.449489742783178}},"s":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"214":{"tf":2.6457513110645907},"215":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":3.605551275463989},"223":{"tf":2.6457513110645907},"224":{"tf":2.0},"225":{"tf":1.4142135623730951},"3":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"236":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"102":{"tf":1.0},"110":{"tf":1.0},"120":{"tf":1.4142135623730951},"36":{"tf":1.0},"65":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"170":{"tf":1.0},"235":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":31,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"x":{"df":2,"docs":{"134":{"tf":1.0},"214":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":7,"docs":{"147":{"tf":1.0},"191":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"220":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"208":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":34,"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},"121":{"tf":1.0},"169":{"tf":1.0},"21":{"tf":1.7320508075688772},"217":{"tf":2.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":2.449489742783178},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772},"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.7320508075688772},"93":{"tf":2.449489742783178},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":58,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":2.0},"146":{"tf":1.0},"154":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":2.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"3":{"tf":1.4142135623730951},"31":{"tf":1.0},"39":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"96":{"tf":1.0},"99":{"tf":1.0}}}}}},"o":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}}}},"_":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"51":{"tf":1.0}}},"x":{"df":1,"docs":{"198":{"tf":1.0}}}},".":{"df":0,"docs":{},"i":{"df":2,"docs":{"130":{"tf":1.0},"132":{"tf":2.449489742783178}}},"x":{"df":5,"docs":{"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0}}}},"2":{"df":2,"docs":{"132":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"df":1,"docs":{"132":{"tf":1.0}}},"<":{"a":{"<":{"a":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"169":{"tf":1.0}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"169":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"169":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"158":{"tf":1.4142135623730951},"159":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"1":{"df":2,"docs":{"110":{"tf":1.0},"169":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"169":{"tf":1.0}}},">":{"(":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"155":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":3.0}}},"u":{"6":{"4":{"df":1,"docs":{"168":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}},"y":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"i":{"df":1,"docs":{"131":{"tf":1.0}}},"x":{"df":2,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951}}}},"df":3,"docs":{"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}}}},"b":{"a":{"df":0,"docs":{},"r":{"_":{"1":{"2":{"3":{"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":34,"docs":{"111":{"tf":2.8284271247461903},"112":{"tf":2.0},"113":{"tf":1.0},"121":{"tf":1.4142135623730951},"123":{"tf":2.23606797749979},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":4.358898943540674},"130":{"tf":1.7320508075688772},"131":{"tf":3.1622776601683795},"132":{"tf":5.196152422706632},"133":{"tf":2.8284271247461903},"134":{"tf":4.795831523312719},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":2.0},"160":{"tf":2.6457513110645907},"162":{"tf":1.0},"166":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"192":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.4142135623730951},"69":{"tf":2.0},"76":{"tf":2.23606797749979},"86":{"tf":1.0},"89":{"tf":1.0}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"215":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"163":{"tf":1.0}}},"t":{"df":4,"docs":{"215":{"tf":1.4142135623730951},"224":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}},"df":11,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"197":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"57":{"tf":1.0},"85":{"tf":1.0},"93":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"112":{"tf":1.0},"220":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"165":{"tf":1.0},"171":{"tf":1.7320508075688772}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"234":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":3,"docs":{"38":{"tf":2.23606797749979},"39":{"tf":1.0},"73":{"tf":1.0}},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":1,"docs":{"36":{"tf":1.0}},"m":{"df":1,"docs":{"73":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"111":{"tf":1.0},"240":{"tf":2.0},"241":{"tf":4.47213595499958},"242":{"tf":5.744562646538029},"3":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"184":{"tf":1.0},"220":{"tf":1.0}},"i":{"df":9,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"119":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"42":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":4,"docs":{"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"157":{"tf":1.0}}},"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"110":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":2.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":73,"docs":{"1":{"tf":1.7320508075688772},"101":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":3.4641016151377544},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.449489742783178},"117":{"tf":2.0},"118":{"tf":3.0},"119":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"121":{"tf":2.8284271247461903},"124":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":2.449489742783178},"157":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"190":{"tf":1.0},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":2.23606797749979},"199":{"tf":2.6457513110645907},"2":{"tf":1.0},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.0},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"46":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":2.0},"66":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"4":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"101":{"tf":2.23606797749979},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":2.0},"107":{"tf":2.0},"108":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.449489742783178},"128":{"tf":1.0},"129":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":2.449489742783178},"142":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"146":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"162":{"tf":1.7320508075688772},"166":{"tf":2.449489742783178},"169":{"tf":2.449489742783178},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":6.164414002968976},"2":{"tf":1.0},"200":{"tf":4.69041575982343},"201":{"tf":2.23606797749979},"202":{"tf":2.449489742783178},"203":{"tf":3.605551275463989},"204":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.6457513110645907},"229":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":2.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"44":{"tf":2.23606797749979},"46":{"tf":2.23606797749979},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"59":{"tf":1.0},"62":{"tf":1.4142135623730951},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"118":{"tf":1.0},"57":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"48":{"tf":1.0}}}}}}},"g":{"a":{"df":2,"docs":{"231":{"tf":1.0},"238":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"136":{"tf":1.0},"143":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"238":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"170":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":4,"docs":{"54":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":38,"docs":{"0":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":2.449489742783178},"153":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":2.0},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"213":{"tf":1.0},"214":{"tf":2.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"29":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":2.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":3.3166247903554},"224":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":10,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"145":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"200":{"tf":1.0},"57":{"tf":1.0}},"n":{"df":14,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"232":{"tf":1.0},"42":{"tf":1.0},"69":{"tf":2.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":4,"docs":{"143":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"41":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"66":{"tf":1.0}}}},"o":{"d":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"60":{"tf":2.23606797749979},"84":{"tf":1.4142135623730951},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"12":{"tf":1.7320508075688772},"13":{"tf":1.4142135623730951},"209":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"205":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"w":{"df":1,"docs":{"27":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":6,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}}},"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"104":{"tf":1.0},"105":{"tf":3.0},"143":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"200":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"n":{"d":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"134":{"tf":1.0},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":2,"docs":{"143":{"tf":2.449489742783178},"78":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"227":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":3,"docs":{"215":{"tf":1.7320508075688772},"223":{"tf":2.449489742783178},"30":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"112":{"tf":1.0},"163":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"30":{"tf":1.0},"80":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"200":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"p":{"df":9,"docs":{"178":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"220":{"tf":1.0},"235":{"tf":1.7320508075688772},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"n":{"c":{"df":2,"docs":{"0":{"tf":1.0},"176":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":18,"docs":{"112":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.4142135623730951},"137":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"162":{"tf":1.0},"178":{"tf":1.0},"212":{"tf":1.4142135623730951},"215":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"57":{"tf":1.0},"67":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"x":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":2.449489742783178}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":5,"docs":{"215":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":2.449489742783178},"7":{"tf":1.0},"8":{"tf":1.0}}}},"h":{"df":1,"docs":{"30":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"89":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"178":{"tf":1.0},"214":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"o":{"d":{"df":2,"docs":{"23":{"tf":1.0},"38":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"/":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{".":{"df":5,"docs":{"139":{"tf":1.0},"163":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":1,"docs":{"212":{"tf":1.0}}}},"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"157":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":3,"docs":{"114":{"tf":1.0},"119":{"tf":1.0},"154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"6":{"4":{">":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"170":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"154":{"tf":1.0},"209":{"tf":1.4142135623730951},"212":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"196":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"57":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{">":{"<":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"173":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"180":{"tf":1.0},"59":{"tf":2.0}},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"178":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"212":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"38":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":17,"docs":{"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"143":{"tf":1.7320508075688772},"176":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.6457513110645907},"212":{"tf":2.23606797749979},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"94":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"152":{"tf":1.0},"170":{"tf":1.0},"208":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"116":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"33":{"tf":1.0},"44":{"tf":1.0},"65":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"134":{"tf":1.0},"16":{"tf":1.0},"205":{"tf":1.0},"22":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}}}},"df":1,"docs":{"83":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"136":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"195":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":2.23606797749979},"218":{"tf":2.8284271247461903},"66":{"tf":1.0},"80":{"tf":1.0}}}},"s":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":20,"docs":{"102":{"tf":1.0},"104":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"173":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"219":{"tf":1.0},"221":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"159":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"2":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"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":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"204":{"tf":1.0}}}},"d":{"df":2,"docs":{"233":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":2.23606797749979}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"121":{"tf":1.0},"205":{"tf":2.449489742783178},"206":{"tf":1.7320508075688772},"207":{"tf":2.0},"208":{"tf":2.8284271247461903},"209":{"tf":1.7320508075688772},"210":{"tf":3.3166247903554},"211":{"tf":2.23606797749979},"212":{"tf":2.0},"31":{"tf":1.7320508075688772},"90":{"tf":1.0}}}},"i":{"c":{"df":10,"docs":{"116":{"tf":1.0},"128":{"tf":1.0},"142":{"tf":1.0},"170":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"11":{"tf":1.0},"112":{"tf":1.0},"30":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":14,"docs":{"119":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":3.4641016151377544},"161":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"38":{"tf":3.1622776601683795},"39":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":2.8284271247461903},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.7320508075688772},"8":{"tf":2.449489742783178}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"169":{"tf":2.0},"86":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":12,"docs":{"117":{"tf":1.4142135623730951},"130":{"tf":1.0},"143":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0}}}}}},"g":{"df":1,"docs":{"134":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":2.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"131":{"tf":1.0},"178":{"tf":1.7320508075688772},"181":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":2.449489742783178}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"df":0,"docs":{},"v":{"[":{"0":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}}},"df":3,"docs":{"152":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}}}}}},"df":4,"docs":{"108":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"109":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.7320508075688772},"145":{"tf":1.0},"154":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"215":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":7,"docs":{"1":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"199":{"tf":1.4142135623730951},"214":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":13,"docs":{"162":{"tf":1.0},"163":{"tf":2.0},"166":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"216":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":2.0},"27":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":18,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"11":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"216":{"tf":1.0},"233":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"170":{"tf":1.7320508075688772},"22":{"tf":1.0},"235":{"tf":1.0},"38":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":18,"docs":{"10":{"tf":2.23606797749979},"100":{"tf":1.0},"11":{"tf":1.7320508075688772},"12":{"tf":2.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.7320508075688772},"15":{"tf":2.449489742783178},"16":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":3.1622776601683795},"7":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0}}},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"33":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1":{"tf":1.0},"201":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"c":{"df":4,"docs":{"208":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"207":{"tf":1.0}}}}},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"138":{"tf":1.0}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":15,"docs":{"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.4142135623730951},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"241":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.0},"217":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":15,"docs":{"105":{"tf":1.4142135623730951},"123":{"tf":1.0},"125":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"39":{"tf":2.8284271247461903},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"92":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":5,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}}}}},"t":{"'":{"df":2,"docs":{"222":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":11,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":2.6457513110645907},"181":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"234":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"60":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"r":{"df":4,"docs":{"121":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"h":{"df":1,"docs":{"31":{"tf":1.7320508075688772}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":8,"docs":{"176":{"tf":1.0},"177":{"tf":1.0},"186":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.7320508075688772},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"j":{"df":6,"docs":{"206":{"tf":3.3166247903554},"210":{"tf":1.4142135623730951},"212":{"tf":2.6457513110645907},"31":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"93":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"e":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"215":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"@":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"31":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"k":{"df":1,"docs":{"80":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"41":{"tf":1.0},"66":{"tf":1.0}}}},"y":{">":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"135":{"tf":1.0},"136":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":2.6457513110645907},"176":{"tf":1.0},"177":{"tf":2.23606797749979},"178":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"182":{"tf":2.6457513110645907},"208":{"tf":2.449489742783178},"30":{"tf":1.0}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"110":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"163":{"tf":1.0},"4":{"tf":1.4142135623730951},"49":{"tf":1.0}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"145":{"tf":1.0},"147":{"tf":1.0},"242":{"tf":1.0}}}}}}},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"204":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"203":{"tf":1.0},"214":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":3.3166247903554}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":20,"docs":{"0":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"22":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.23606797749979},"5":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"10":{"tf":1.7320508075688772},"121":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":2.0},"33":{"tf":1.0},"7":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"117":{"tf":1.0},"183":{"tf":1.0},"31":{"tf":1.4142135623730951},"65":{"tf":1.0},"90":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"126":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"217":{"tf":1.0},"51":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"222":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"221":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"163":{"tf":1.0},"24":{"tf":1.0}}},"df":0,"docs":{},"f":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"180":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":7,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"137":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"<":{"df":0,"docs":{},"e":{"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":0,"docs":{},"v":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"29":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"10":{"tf":1.0},"13":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"101":{"tf":1.0},"143":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"113":{"tf":1.7320508075688772},"126":{"tf":2.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"3":{"tf":2.23606797749979},"53":{"tf":2.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"136":{"tf":1.0},"169":{"tf":1.7320508075688772},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":2.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"79":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"118":{"tf":1.4142135623730951},"152":{"tf":1.0},"206":{"tf":1.0},"215":{"tf":1.4142135623730951},"31":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":8,"docs":{"106":{"tf":1.4142135623730951},"111":{"tf":1.0},"149":{"tf":1.0},"167":{"tf":1.4142135623730951},"208":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"99":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.4142135623730951},"170":{"tf":1.0}}}},"df":7,"docs":{"201":{"tf":1.0},"204":{"tf":2.0},"215":{"tf":1.4142135623730951},"220":{"tf":1.0},"222":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0}}},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"111":{"tf":1.0},"137":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"4":{"tf":1.0},"43":{"tf":1.0},"60":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":2.0},"30":{"tf":2.449489742783178},"43":{"tf":1.4142135623730951},"7":{"tf":2.8284271247461903},"8":{"tf":2.0},"94":{"tf":1.0},"96":{"tf":2.0}}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"1":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"2":{"df":2,"docs":{"57":{"tf":2.0},"58":{"tf":2.449489742783178}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":35,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"215":{"tf":3.4641016151377544},"218":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.449489742783178},"50":{"tf":1.7320508075688772},"51":{"tf":2.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.7320508075688772},"56":{"tf":2.23606797749979},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.6457513110645907},"65":{"tf":1.0},"66":{"tf":2.8284271247461903},"67":{"tf":2.8284271247461903},"68":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"t":{"df":9,"docs":{"136":{"tf":1.0},"173":{"tf":1.0},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"230":{"tf":3.3166247903554},"231":{"tf":3.3166247903554},"232":{"tf":3.7416573867739413},"235":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":3,"docs":{"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"101":{"tf":1.0},"109":{"tf":1.0},"20":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"219":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"58":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"160":{"tf":1.0},"205":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}}},"p":{"df":13,"docs":{"231":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"55":{"tf":2.0},"82":{"tf":1.7320508075688772},"85":{"tf":2.449489742783178},"86":{"tf":2.23606797749979},"87":{"tf":2.6457513110645907},"88":{"tf":2.449489742783178},"89":{"tf":3.3166247903554},"90":{"tf":3.0},"91":{"tf":2.449489742783178},"92":{"tf":4.123105625617661},"93":{"tf":3.1622776601683795}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"134":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"140":{"tf":1.0},"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":1,"docs":{"205":{"tf":1.0}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"m":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{",":{"df":0,"docs":{},"j":{"df":2,"docs":{"205":{"tf":1.0},"206":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"0":{"_":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"79":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"69":{"tf":1.0},"78":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.0},"215":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":2.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}},"s":{"2":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"195":{"tf":1.7320508075688772},"212":{"tf":1.0},"214":{"tf":1.0},"30":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"0":{"tf":1.0},"222":{"tf":1.4142135623730951},"225":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":8,"docs":{"12":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":2.449489742783178},"187":{"tf":1.0},"190":{"tf":1.0},"235":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"223":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"214":{"tf":2.0},"215":{"tf":2.0},"216":{"tf":1.4142135623730951},"219":{"tf":1.0},"222":{"tf":1.4142135623730951}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"134":{"tf":1.0},"160":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"197":{"tf":1.4142135623730951},"221":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"118":{"tf":1.0},"163":{"tf":1.4142135623730951},"211":{"tf":1.0},"215":{"tf":1.0},"226":{"tf":1.7320508075688772},"227":{"tf":1.7320508075688772},"235":{"tf":1.0},"49":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"211":{"tf":1.0}}}}}},"t":{"[":{"0":{"df":1,"docs":{"207":{"tf":2.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"'":{"df":2,"docs":{"104":{"tf":1.0},"143":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"104":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":28,"docs":{"100":{"tf":2.6457513110645907},"101":{"tf":4.58257569495584},"102":{"tf":3.3166247903554},"103":{"tf":3.0},"104":{"tf":5.385164807134504},"105":{"tf":3.4641016151377544},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"108":{"tf":2.0},"12":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":5.830951894845301},"209":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.0},"3":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":3.872983346207417},"96":{"tf":3.3166247903554},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.7320508075688772}}}},"df":1,"docs":{"207":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":3,"docs":{"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":3,"docs":{"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"212":{"tf":1.7320508075688772}}}},"df":4,"docs":{"205":{"tf":1.0},"206":{"tf":2.0},"210":{"tf":1.0},"212":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"235":{"tf":1.0},"6":{"tf":1.0},"83":{"tf":2.449489742783178}}}}}}}},"d":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}},"df":2,"docs":{"206":{"tf":1.0},"73":{"tf":2.8284271247461903}},"e":{"a":{"df":0,"docs":{},"n":{"df":29,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"203":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"95":{"tf":1.0}},"t":{"df":1,"docs":{"218":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":2.0},"186":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"226":{"tf":1.4142135623730951},"234":{"tf":1.0},"25":{"tf":1.0},"4":{"tf":2.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"105":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"125":{"tf":1.0},"134":{"tf":1.0},"177":{"tf":1.0},"225":{"tf":1.0},"34":{"tf":1.0},"48":{"tf":1.0},"69":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"214":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"78":{"tf":1.0},"88":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":19,"docs":{"195":{"tf":2.0},"196":{"tf":1.4142135623730951},"197":{"tf":2.6457513110645907},"198":{"tf":1.7320508075688772},"199":{"tf":2.449489742783178},"200":{"tf":2.6457513110645907},"201":{"tf":1.7320508075688772},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":2.0},"212":{"tf":1.7320508075688772},"217":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"108":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"0":{"tf":1.0},"112":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"232":{"tf":2.23606797749979}}}},"t":{"_":{"a":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"<":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"y":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"162":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"108":{"tf":1.0},"125":{"tf":1.4142135623730951},"139":{"tf":1.0}}}},"t":{"df":1,"docs":{"215":{"tf":1.0}}},"x":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"182":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"214":{"tf":2.449489742783178},"215":{"tf":2.0},"219":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951}},"l":{"df":2,"docs":{"134":{"tf":1.0},"162":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"35":{"tf":1.0},"63":{"tf":1.0}},"i":{"df":17,"docs":{"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"23":{"tf":1.0},"35":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":2.23606797749979},"65":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"99":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":87,"docs":{"1":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"111":{"tf":4.242640687119285},"112":{"tf":2.8284271247461903},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":2.6457513110645907},"134":{"tf":2.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"160":{"tf":1.4142135623730951},"162":{"tf":1.0},"169":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"189":{"tf":2.6457513110645907},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.449489742783178},"2":{"tf":2.0},"200":{"tf":3.605551275463989},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.0},"229":{"tf":2.23606797749979},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"234":{"tf":2.0},"236":{"tf":1.7320508075688772},"240":{"tf":2.0},"241":{"tf":3.605551275463989},"242":{"tf":5.0},"25":{"tf":1.7320508075688772},"26":{"tf":1.7320508075688772},"3":{"tf":3.3166247903554},"31":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.7320508075688772},"80":{"tf":2.8284271247461903}},"e":{"'":{"df":3,"docs":{"192":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"134":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":47,"docs":{"103":{"tf":1.0},"111":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"119":{"tf":1.0},"121":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":2.23606797749979},"242":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"63":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.4142135623730951},"92":{"tf":1.0}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"163":{"tf":1.0},"205":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":16,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0}}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"214":{"tf":1.7320508075688772},"222":{"tf":3.0},"223":{"tf":1.4142135623730951},"224":{"tf":2.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":2.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":5,"docs":{"214":{"tf":1.7320508075688772},"215":{"tf":2.23606797749979},"216":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"142":{"tf":1.0}}}}},"df":88,"docs":{"0":{"tf":3.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"112":{"tf":2.0},"114":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":2.23606797749979},"144":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.4142135623730951},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":2.23606797749979},"214":{"tf":2.6457513110645907},"215":{"tf":2.0},"216":{"tf":2.0},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":2.23606797749979},"221":{"tf":2.0},"222":{"tf":2.0},"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"23":{"tf":2.449489742783178},"234":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.8284271247461903},"239":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"27":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":2.23606797749979},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.4142135623730951},"6":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":3.7416573867739413},"68":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.449489742783178},"82":{"tf":1.0},"85":{"tf":1.7320508075688772},"87":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"215":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"124":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"104":{"tf":1.0},"96":{"tf":2.0}},"p":{"df":0,"docs":{},"l":{"df":20,"docs":{"10":{"tf":1.0},"104":{"tf":1.4142135623730951},"116":{"tf":1.0},"152":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"200":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":29,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":2.0},"176":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"207":{"tf":1.0},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":2.449489742783178},"212":{"tf":2.6457513110645907},"31":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":2.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"107":{"tf":1.4142135623730951},"129":{"tf":1.0},"37":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772}}}},"df":62,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":2.6457513110645907},"129":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"132":{"tf":3.0},"134":{"tf":1.0},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"193":{"tf":2.0},"199":{"tf":1.7320508075688772},"203":{"tf":2.449489742783178},"206":{"tf":2.449489742783178},"207":{"tf":1.4142135623730951},"208":{"tf":2.23606797749979},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":3.1622776601683795},"236":{"tf":1.4142135623730951},"238":{"tf":1.0},"31":{"tf":3.0},"32":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":2.449489742783178},"37":{"tf":1.7320508075688772},"38":{"tf":2.6457513110645907},"39":{"tf":4.0},"40":{"tf":1.4142135623730951},"46":{"tf":3.4641016151377544},"47":{"tf":3.605551275463989},"49":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.23606797749979},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":2.449489742783178},"62":{"tf":2.6457513110645907},"63":{"tf":3.1622776601683795},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"221":{"tf":1.7320508075688772}}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"25":{"tf":1.0}}}}},"m":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"@":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"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":4,"docs":{"215":{"tf":1.0},"234":{"tf":1.0},"25":{"tf":1.4142135623730951},"3":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"146":{"tf":1.4142135623730951},"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"3":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}}}},"df":1,"docs":{"112":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"101":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":2.0}}}},"t":{"df":1,"docs":{"182":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"177":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"_":{"df":4,"docs":{"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"102":{"tf":2.0},"104":{"tf":1.4142135623730951},"96":{"tf":2.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"df":5,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"_":{"df":2,"docs":{"104":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":3,"docs":{"100":{"tf":1.0},"102":{"tf":2.23606797749979},"96":{"tf":3.605551275463989}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"100":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"96":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":2.23606797749979}}},"_":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}},"u":{"6":{"4":{"df":2,"docs":{"107":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"108":{"tf":2.23606797749979}}},"df":5,"docs":{"100":{"tf":2.23606797749979},"107":{"tf":2.0},"108":{"tf":2.0},"96":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"177":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"177":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"2":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}},":":{":":{"a":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{">":{":":{":":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"184":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"185":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"217":{"tf":3.0},"218":{"tf":1.0},"219":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":54,"docs":{"0":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"119":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":2.0},"128":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"140":{"tf":2.0},"142":{"tf":2.449489742783178},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":2.0},"188":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":3.4641016151377544},"216":{"tf":2.6457513110645907},"217":{"tf":4.0},"218":{"tf":3.7416573867739413},"219":{"tf":3.0},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"235":{"tf":1.0},"238":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.7320508075688772},"3":{"tf":3.7416573867739413},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":2.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"66":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":2,"docs":{"24":{"tf":1.0},"26":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":5,"docs":{"118":{"tf":2.6457513110645907},"182":{"tf":1.0},"205":{"tf":1.0},"210":{"tf":1.4142135623730951},"23":{"tf":1.0}},"e":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":13,"docs":{"121":{"tf":1.4142135623730951},"169":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"218":{"tf":4.123105625617661},"29":{"tf":2.0},"30":{"tf":1.0},"43":{"tf":2.23606797749979},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":2.6457513110645907},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"241":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"163":{"tf":1.0},"177":{"tf":1.0},"55":{"tf":1.4142135623730951},"59":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"174":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":35,"docs":{"10":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"12":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"171":{"tf":1.0},"181":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}},"g":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"20":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"102":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"177":{"tf":1.0},"188":{"tf":1.4142135623730951},"58":{"tf":1.0},"64":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"31":{"tf":2.6457513110645907},"41":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}}}}},"w":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"39":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"c":{"df":5,"docs":{"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"x":{"df":3,"docs":{"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772}}}},"df":15,"docs":{"115":{"tf":1.0},"118":{"tf":1.0},"129":{"tf":2.23606797749979},"132":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"199":{"tf":2.0},"236":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"236":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"o":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":2.8284271247461903},"177":{"tf":2.8284271247461903},"179":{"tf":1.4142135623730951},"180":{"tf":2.0},"182":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}},"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}},"8":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"103":{"tf":2.0}}}}}},"df":16,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"163":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":7,"docs":{"176":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"3":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":41,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"151":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.4142135623730951},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"190":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"33":{"tf":1.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"95":{"tf":1.0}}},"h":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"33":{"tf":1.0},"78":{"tf":1.0}}},"i":{"c":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"143":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"193":{"tf":1.7320508075688772},"199":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"\\":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"30":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":2.0},"136":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"212":{"tf":2.23606797749979},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":2.0},"91":{"tf":1.7320508075688772},"93":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"11":{"tf":1.0},"161":{"tf":1.0},"24":{"tf":2.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.0},"3":{"tf":1.7320508075688772},"30":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"(":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"184":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"125":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"177":{"tf":1.0},"23":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"184":{"tf":2.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"164":{"tf":1.0},"82":{"tf":1.0}}}}}},"k":{"df":7,"docs":{"103":{"tf":1.0},"108":{"tf":1.7320508075688772},"143":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"n":{"c":{"df":12,"docs":{"108":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"165":{"tf":1.0},"185":{"tf":1.0},"218":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"df":47,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":2.0},"125":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"227":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"23":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"11":{"tf":1.7320508075688772},"12":{"tf":1.7320508075688772},"122":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":1.7320508075688772},"136":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":2.23606797749979},"164":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":2.0},"210":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.0},"31":{"tf":2.0},"36":{"tf":2.0},"37":{"tf":1.0},"45":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":1.0},"74":{"tf":1.0},"79":{"tf":1.7320508075688772},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"94":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"3":{"tf":1.0},"30":{"tf":1.0},"94":{"tf":1.0}}}}},"t":{"df":2,"docs":{"60":{"tf":2.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":3,"docs":{"121":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":15,"docs":{"121":{"tf":1.0},"131":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"186":{"tf":1.7320508075688772},"214":{"tf":2.0},"215":{"tf":2.23606797749979},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":2.0},"7":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"128":{"tf":2.0},"142":{"tf":2.0},"175":{"tf":1.0},"189":{"tf":1.0},"235":{"tf":1.0},"31":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"42":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"b":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"1":{"0":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"142":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"229":{"tf":1.0},"31":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":16,"docs":{"102":{"tf":1.0},"128":{"tf":1.0},"160":{"tf":1.0},"172":{"tf":1.0},"200":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"31":{"tf":1.7320508075688772},"55":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"192":{"tf":1.0},"193":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":3.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"0":{"tf":1.0},"133":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"200":{"tf":1.4142135623730951},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"229":{"tf":1.0},"234":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":10,"docs":{"10":{"tf":1.0},"152":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.0},"31":{"tf":1.0},"72":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"10":{"tf":1.0},"230":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"215":{"tf":3.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"144":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"215":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"144":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":11,"docs":{"122":{"tf":1.0},"134":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"40":{"tf":2.0},"48":{"tf":1.4142135623730951},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0}}}}}}}}}}},"p":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}},"x":{"df":1,"docs":{"204":{"tf":1.0}}}},"1":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"218":{"tf":1.7320508075688772}}}},"2":{"df":3,"docs":{"101":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"_":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"111":{"tf":1.4142135623730951},"2":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":3.1622776601683795},"214":{"tf":3.605551275463989},"215":{"tf":3.605551275463989},"216":{"tf":2.449489742783178},"217":{"tf":3.4641016151377544},"218":{"tf":4.123105625617661},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"222":{"tf":3.4641016151377544},"223":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"229":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.4142135623730951}},"e":{"'":{"df":2,"docs":{"216":{"tf":1.0},"224":{"tf":1.0}}},"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"104":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"104":{"tf":2.0}}}}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"104":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"153":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.4142135623730951},"212":{"tf":1.0},"30":{"tf":1.4142135623730951},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":28,"docs":{"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.0},"116":{"tf":1.0},"119":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.7320508075688772},"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":2.449489742783178},"163":{"tf":4.898979485566356},"164":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"178":{"tf":2.0},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"212":{"tf":2.449489742783178},"227":{"tf":1.0},"232":{"tf":1.0},"39":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"152":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0}}}},"r":{"df":1,"docs":{"152":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"128":{"tf":1.0},"142":{"tf":1.0},"43":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"190":{"tf":1.0}}},"t":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"23":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"163":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"177":{"tf":1.0},"217":{"tf":1.0},"220":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"222":{"tf":1.4142135623730951}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":8,"docs":{"227":{"tf":1.7320508075688772},"229":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"25":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"215":{"tf":1.0}}}}},"df":7,"docs":{"199":{"tf":1.0},"215":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"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},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}},"n":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"3":{"df":1,"docs":{"95":{"tf":1.0}}},"df":21,"docs":{"100":{"tf":3.0},"101":{"tf":3.4641016151377544},"102":{"tf":2.6457513110645907},"104":{"tf":2.23606797749979},"105":{"tf":2.23606797749979},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":3.605551275463989},"129":{"tf":2.0},"143":{"tf":4.123105625617661},"54":{"tf":1.0},"56":{"tf":1.0},"60":{"tf":4.58257569495584},"62":{"tf":1.0},"82":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178},"95":{"tf":2.0},"96":{"tf":6.164414002968976},"97":{"tf":1.7320508075688772},"98":{"tf":3.0},"99":{"tf":3.7416573867739413}}}}}}},"u":{"df":0,"docs":{},"s":{"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}}},"y":{"(":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"112":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":4,"docs":{"20":{"tf":2.449489742783178},"218":{"tf":3.4641016151377544},"57":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"135":{"tf":1.0},"175":{"tf":1.0},"205":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"76":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.7320508075688772},"122":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"164":{"tf":1.0},"177":{"tf":1.0},"216":{"tf":1.0},"64":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"170":{"tf":1.0},"40":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"178":{"tf":1.0}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":5.5677643628300215}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"g":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"229":{"tf":1.4142135623730951},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"234":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":16,"docs":{"107":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"208":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"31":{"tf":1.0},"41":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"124":{"tf":1.0}}},"y":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"164":{"tf":1.0}}}}},"o":{"df":1,"docs":{"128":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"109":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"204":{"tf":2.6457513110645907},"37":{"tf":1.0},"48":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"152":{"tf":1.0},"210":{"tf":1.0}}}}}}}}},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"31":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"d":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"171":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{".":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"123":{"tf":1.0}}},"z":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"123":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"(":{"3":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"123":{"tf":1.0},"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"104":{"tf":1.0},"108":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"160":{"tf":1.0},"163":{"tf":2.23606797749979},"207":{"tf":1.0},"212":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0},"87":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"0":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"6":{"4":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"104":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"152":{"tf":1.0},"163":{"tf":1.4142135623730951},"235":{"tf":1.0},"60":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"94":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"204":{"tf":1.0},"222":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"62":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"178":{"tf":1.0},"208":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"30":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"125":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"104":{"tf":1.4142135623730951},"200":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.4142135623730951},"219":{"tf":1.0},"223":{"tf":1.7320508075688772},"65":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"218":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"52":{"tf":1.0},"68":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":6,"docs":{"102":{"tf":1.0},"190":{"tf":1.0},"212":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":1.0},"91":{"tf":1.0}},"s":{"df":3,"docs":{"105":{"tf":1.0},"177":{"tf":1.0},"37":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":48,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":2.449489742783178},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"2":{"tf":1.0}}}},"df":1,"docs":{"3":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"101":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"163":{"tf":1.0},"55":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1":{"tf":1.0},"214":{"tf":1.4142135623730951},"222":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":6,"docs":{"211":{"tf":1.0},"37":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"122":{"tf":1.0}}},"df":14,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"134":{"tf":1.0},"173":{"tf":1.0},"212":{"tf":1.0},"41":{"tf":1.7320508075688772},"51":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":6,"docs":{"118":{"tf":1.0},"205":{"tf":1.0},"213":{"tf":1.4142135623730951},"40":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"213":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"143":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"164":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"161":{"tf":1.0},"188":{"tf":1.0},"205":{"tf":1.4142135623730951},"208":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"232":{"tf":1.0},"27":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"51":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"240":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"111":{"tf":2.449489742783178},"124":{"tf":1.0},"148":{"tf":1.0},"240":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"112":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":2.449489742783178},"123":{"tf":3.1622776601683795},"124":{"tf":1.0},"125":{"tf":3.0},"126":{"tf":2.0},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":1.4142135623730951},"133":{"tf":2.449489742783178},"134":{"tf":2.8284271247461903},"136":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.0},"139":{"tf":2.23606797749979},"140":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":3.0},"144":{"tf":1.4142135623730951},"146":{"tf":1.0},"148":{"tf":1.0},"155":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":3.3166247903554},"166":{"tf":2.23606797749979},"168":{"tf":2.0},"169":{"tf":2.0},"177":{"tf":3.4641016151377544},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":3.3166247903554},"2":{"tf":1.4142135623730951},"200":{"tf":5.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":3.872983346207417},"204":{"tf":2.6457513110645907},"206":{"tf":2.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"227":{"tf":2.23606797749979},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"36":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":2.0},"58":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"80":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"102":{"tf":1.0}}}},"n":{"df":2,"docs":{"128":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"105":{"tf":1.0},"242":{"tf":1.0},"30":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"185":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"190":{"tf":2.449489742783178},"193":{"tf":2.449489742783178}}}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":4,"docs":{"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"190":{"tf":1.0},"193":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"42":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"t":{"df":4,"docs":{"163":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.0}}}}},"q":{"df":2,"docs":{"20":{"tf":2.0},"56":{"tf":1.0}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"184":{"tf":1.0}},"i":{"df":4,"docs":{"119":{"tf":1.0},"142":{"tf":1.0},"238":{"tf":1.0},"241":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}}},"x":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"104":{"tf":1.0},"143":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"95":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"30":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"df":4,"docs":{"166":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"63":{"tf":2.23606797749979},"74":{"tf":2.23606797749979}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"80":{"tf":1.0}}}},"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}}}},"x":{"df":1,"docs":{"39":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"195":{"tf":1.0},"204":{"tf":1.0},"241":{"tf":1.0},"30":{"tf":1.0},"54":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":2.0},"210":{"tf":1.4142135623730951},"222":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907}}},"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"121":{"tf":1.0},"48":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"212":{"tf":1.0},"216":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.0},"204":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"222":{"tf":1.0},"229":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.7320508075688772}},"e":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"200":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"200":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"123":{"tf":2.0},"137":{"tf":2.8284271247461903},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.23606797749979},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":2,"docs":{"151":{"tf":1.0},"195":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"193":{"tf":1.7320508075688772},"213":{"tf":1.0},"51":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"37":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":51,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"122":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":2.23606797749979},"132":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"143":{"tf":2.0},"151":{"tf":1.0},"152":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":2.449489742783178},"186":{"tf":1.0},"193":{"tf":1.7320508075688772},"197":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.449489742783178},"211":{"tf":2.0},"218":{"tf":1.7320508075688772},"229":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"36":{"tf":4.242640687119285},"37":{"tf":3.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":3.605551275463989},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"5":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.7320508075688772},"63":{"tf":2.0},"69":{"tf":1.4142135623730951},"73":{"tf":2.449489742783178},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"105":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.0},"227":{"tf":1.0},"64":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"221":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"242":{"tf":1.7320508075688772}}}}}}}}}},"x":{"df":3,"docs":{"122":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}},"df":1,"docs":{"215":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"210":{"tf":1.0},"222":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"85":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"66":{"tf":1.0},"76":{"tf":1.0}}}}},"df":2,"docs":{"151":{"tf":1.0},"200":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"b":{"df":2,"docs":{"65":{"tf":1.0},"66":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"215":{"tf":1.0},"224":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":5,"docs":{"126":{"tf":1.0},"178":{"tf":1.0},"190":{"tf":1.0},"31":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":3.0},"219":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":4,"docs":{"197":{"tf":1.4142135623730951},"65":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"a":{"df":1,"docs":{"222":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":1,"docs":{"215":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"235":{"tf":1.0},"238":{"tf":1.0},"7":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"215":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"15":{"tf":1.0},"206":{"tf":1.0},"23":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"42":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":13,"docs":{"134":{"tf":2.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"210":{"tf":1.0},"214":{"tf":2.23606797749979},"42":{"tf":1.0},"48":{"tf":1.0},"55":{"tf":1.4142135623730951},"85":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}}},"v":{"df":10,"docs":{"197":{"tf":1.4142135623730951},"199":{"tf":2.449489742783178},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"215":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.7320508075688772}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":4,"docs":{"0":{"tf":1.0},"122":{"tf":1.4142135623730951},"37":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"12":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":3,"docs":{"147":{"tf":1.0},"208":{"tf":1.0},"66":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"103":{"tf":1.0},"106":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"24":{"tf":1.0},"42":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"190":{"tf":2.6457513110645907},"194":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0},"83":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":38,"docs":{"101":{"tf":4.0},"102":{"tf":3.605551275463989},"105":{"tf":1.4142135623730951},"107":{"tf":2.23606797749979},"110":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":3.0},"117":{"tf":1.7320508075688772},"120":{"tf":2.23606797749979},"121":{"tf":3.605551275463989},"134":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"160":{"tf":1.0},"180":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":2.6457513110645907},"38":{"tf":1.0},"42":{"tf":2.6457513110645907},"44":{"tf":1.0},"55":{"tf":1.7320508075688772},"62":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.7320508075688772},"92":{"tf":2.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979}},"s":{"_":{"2":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"3":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"4":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"0":{"df":1,"docs":{"46":{"tf":1.0}}},"1":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":2,"docs":{"44":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"1":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"46":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"109":{"tf":1.0},"152":{"tf":1.0}}}},"v":{"=":{"<":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":1.7320508075688772},"224":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"31":{"tf":1.0}}},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"79":{"tf":1.0},"91":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.0},"12":{"tf":1.0},"137":{"tf":1.0},"143":{"tf":1.0},"54":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0}}},"t":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":15,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":2.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.7320508075688772},"203":{"tf":1.0},"209":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.7320508075688772},"37":{"tf":1.4142135623730951}}}},"n":{"(":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"1":{"df":1,"docs":{"94":{"tf":1.0}}},"2":{"df":1,"docs":{"94":{"tf":1.0}}},"3":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":10,"docs":{"105":{"tf":1.0},"134":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":2.0},"238":{"tf":2.8284271247461903},"89":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"151":{"tf":1.0},"169":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.4142135623730951},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"40":{"tf":1.0}}},"df":2,"docs":{"0":{"tf":1.0},"41":{"tf":1.0}}}}}},"s":{"(":{"0":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"f":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}},"t":{"df":2,"docs":{"29":{"tf":1.0},"43":{"tf":1.0}}},"v":{"df":1,"docs":{"206":{"tf":1.0}}}},"1":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"76":{"tf":1.7320508075688772}}},"2":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}},"df":2,"docs":{"69":{"tf":1.0},"76":{"tf":2.449489742783178}}},"3":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"1":{"df":1,"docs":{"163":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"1":{"df":1,"docs":{"40":{"tf":1.0}}},"2":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{"df":0,"docs":{},"f":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":1,"docs":{"36":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"178":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"41":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"75":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"108":{"tf":1.4142135623730951},"111":{"tf":2.449489742783178},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"14":{"tf":1.0},"144":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.7320508075688772},"215":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"222":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.0},"8":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"152":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.4142135623730951}}}}}}},"w":{"df":1,"docs":{"93":{"tf":1.0}}},"y":{"df":2,"docs":{"102":{"tf":1.0},"203":{"tf":1.0}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"16":{"tf":1.0},"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"160":{"tf":1.0},"164":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1":{"tf":1.0},"122":{"tf":1.0},"135":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":34,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":3.0},"241":{"tf":1.4142135623730951},"49":{"tf":2.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":3.1622776601683795},"65":{"tf":1.0},"66":{"tf":2.449489742783178},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"df":14,"docs":{"163":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"184":{"tf":2.0},"185":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.7320508075688772},"238":{"tf":1.7320508075688772},"36":{"tf":2.0},"40":{"tf":1.7320508075688772},"54":{"tf":2.0},"69":{"tf":1.4142135623730951},"72":{"tf":3.4641016151377544},"73":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"102":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":23,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"166":{"tf":1.0},"190":{"tf":1.0},"197":{"tf":1.0},"215":{"tf":3.3166247903554},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"240":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"77":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"0":{"tf":1.4142135623730951},"163":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"189":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"33":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}},"n":{"df":1,"docs":{"147":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"f":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":7,"docs":{"186":{"tf":2.0},"188":{"tf":1.0},"215":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"242":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"103":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"125":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"200":{"tf":1.0},"47":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"178":{"tf":1.0},"43":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"117":{"tf":1.0},"120":{"tf":1.0},"173":{"tf":1.0},"30":{"tf":2.0},"65":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"104":{"tf":1.0},"11":{"tf":1.0},"65":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.7320508075688772}}},"v":{"df":7,"docs":{"112":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"200":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0}}}},"t":{"df":9,"docs":{"10":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"238":{"tf":1.0},"3":{"tf":1.4142135623730951},"57":{"tf":1.0},"87":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"184":{"tf":1.0},"21":{"tf":1.0}}}}}},"h":{"a":{"3":{"df":1,"docs":{"223":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"192":{"tf":1.0},"193":{"tf":2.23606797749979},"201":{"tf":1.0},"49":{"tf":1.0},"66":{"tf":3.3166247903554}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"143":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"145":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"12":{"tf":3.3166247903554},"31":{"tf":1.0},"8":{"tf":1.0}},"i":{"df":1,"docs":{"151":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"195":{"tf":1.0},"20":{"tf":1.4142135623730951},"41":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"190":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"121":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"142":{"tf":1.0},"26":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"w":{"df":1,"docs":{"163":{"tf":1.0}},"n":{"df":5,"docs":{"111":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"10":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"143":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"37":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"210":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"179":{"tf":1.0},"55":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"175":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":8,"docs":{"12":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.0},"166":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.4142135623730951},"200":{"tf":1.0},"204":{"tf":1.0},"33":{"tf":1.0},"42":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":11,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"150":{"tf":1.0},"184":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"69":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"86":{"tf":1.0},"94":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"(":{"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"143":{"tf":2.0}}}}}}},"i":{"df":2,"docs":{"204":{"tf":1.0},"29":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":13,"docs":{"143":{"tf":1.0},"186":{"tf":1.0},"200":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"235":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"166":{"tf":1.0},"169":{"tf":1.0},"217":{"tf":2.0}}},"u":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"190":{"tf":1.0},"81":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"6":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":12,"docs":{"10":{"tf":1.0},"12":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"31":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"85":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"206":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"215":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}},"v":{"df":2,"docs":{"163":{"tf":1.0},"219":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"0":{"df":3,"docs":{"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"194":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"218":{"tf":1.0}}},"2":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"134":{"tf":1.0},"41":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":7,"docs":{"111":{"tf":1.0},"128":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"23":{"tf":1.0},"43":{"tf":1.0},"57":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"152":{"tf":1.0},"175":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"63":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":11,"docs":{"118":{"tf":1.0},"214":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951}},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"236":{"tf":1.0}},"e":{":":{"2":{"2":{":":{"2":{"7":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"4":{":":{"3":{"1":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"204":{"tf":1.0},"210":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":20,"docs":{"101":{"tf":1.0},"106":{"tf":1.4142135623730951},"112":{"tf":1.0},"136":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"201":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"23":{"tf":1.4142135623730951},"232":{"tf":1.0},"238":{"tf":1.4142135623730951},"30":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"df":34,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"15":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":2.6457513110645907},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.0},"67":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"78":{"tf":1.0},"83":{"tf":1.7320508075688772},"93":{"tf":1.0}},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"215":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"u":{"6":{"4":{">":{"(":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"163":{"tf":2.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":14,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"126":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"218":{"tf":1.0},"3":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"59":{"tf":1.0},"74":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":5,"docs":{"0":{"tf":1.0},"133":{"tf":1.0},"143":{"tf":1.0},"217":{"tf":1.0},"78":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"120":{"tf":1.0},"143":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"241":{"tf":1.7320508075688772},"60":{"tf":1.0},"65":{"tf":2.0}}}}}}},"i":{"c":{"df":8,"docs":{"105":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"195":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"200":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":2.0}}}}},"u":{"df":1,"docs":{"232":{"tf":2.23606797749979}}}}},"d":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"184":{"tf":1.0},"190":{"tf":1.0},"192":{"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":0,"docs":{},"u":{"8":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"192":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"192":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"121":{"tf":1.0},"186":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"185":{"tf":1.0},"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"184":{"tf":2.0},"186":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"26":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"193":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"193":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":12,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"184":{"tf":2.6457513110645907},"189":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.4142135623730951},"26":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"188":{"tf":1.0},"215":{"tf":2.0},"26":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"41":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"112":{"tf":1.0},"124":{"tf":1.0},"134":{"tf":1.0},"169":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"40":{"tf":1.0},"55":{"tf":1.0},"66":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"136":{"tf":1.4142135623730951},"142":{"tf":2.0},"143":{"tf":1.4142135623730951}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"135":{"tf":1.7320508075688772},"163":{"tf":1.4142135623730951},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"182":{"tf":1.0},"23":{"tf":1.4142135623730951},"41":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":36,"docs":{"1":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"125":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":2.0},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":2.0},"177":{"tf":3.605551275463989},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":3.4641016151377544},"198":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"224":{"tf":1.0},"3":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":3.1622776601683795},"42":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951}}}}},"r":{":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"188":{"tf":1.0},"238":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":6,"docs":{"188":{"tf":1.0},"208":{"tf":1.0},"215":{"tf":4.242640687119285},"223":{"tf":2.0},"225":{"tf":1.7320508075688772},"30":{"tf":3.1622776601683795}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"177":{"tf":1.0},"23":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"'":{"df":4,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":1.7320508075688772},"158":{"tf":1.0}}},"df":76,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":3.0},"123":{"tf":3.872983346207417},"124":{"tf":2.6457513110645907},"125":{"tf":3.4641016151377544},"126":{"tf":2.6457513110645907},"127":{"tf":1.7320508075688772},"128":{"tf":3.605551275463989},"129":{"tf":2.8284271247461903},"130":{"tf":3.3166247903554},"131":{"tf":2.8284271247461903},"132":{"tf":2.23606797749979},"133":{"tf":3.605551275463989},"134":{"tf":3.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":2.449489742783178},"158":{"tf":1.4142135623730951},"162":{"tf":2.6457513110645907},"163":{"tf":4.58257569495584},"166":{"tf":2.23606797749979},"168":{"tf":2.8284271247461903},"169":{"tf":2.23606797749979},"177":{"tf":4.0},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.23606797749979},"204":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"241":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":2.449489742783178},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":3.1622776601683795},"58":{"tf":2.8284271247461903},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.7320508075688772},"72":{"tf":1.0},"75":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"102":{"tf":1.0},"115":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"208":{"tf":1.0},"60":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}}}},"’":{"df":1,"docs":{"177":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"147":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"97":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"=":{"<":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"215":{"tf":2.0},"224":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":3,"docs":{"104":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"103":{"tf":1.0},"130":{"tf":1.0},"190":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"212":{"tf":1.4142135623730951},"242":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"31":{"tf":1.0},"64":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"25":{"tf":1.0},"3":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"121":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":2.449489742783178},"47":{"tf":3.3166247903554}},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"78":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":23,"docs":{"0":{"tf":1.0},"118":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.0},"214":{"tf":1.0},"22":{"tf":1.0},"30":{"tf":1.0},"48":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":2,"docs":{"161":{"tf":1.0},"7":{"tf":1.0}}}}}},"i":{"'":{"df":1,"docs":{"239":{"tf":1.0}}},":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":15,"docs":{"112":{"tf":1.0},"135":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"215":{"tf":1.0},"220":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.8284271247461903},"78":{"tf":1.0}}},"m":{"(":{"df":0,"docs":{},"n":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":5,"docs":{"2":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.0},"89":{"tf":3.0},"93":{"tf":3.4641016151377544}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"240":{"tf":1.0},"4":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"142":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"215":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":16,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"14":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"6":{"tf":1.0},"70":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"40":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"64":{"tf":1.0}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"1":{"df":1,"docs":{"75":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"31":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":6,"docs":{"206":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.23606797749979},"211":{"tf":2.0},"212":{"tf":2.449489742783178}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"14":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"161":{"tf":1.0},"165":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.0},"185":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":2.23606797749979},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":2.8284271247461903},"211":{"tf":2.0},"212":{"tf":2.0},"214":{"tf":1.4142135623730951},"215":{"tf":1.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.4142135623730951},"4":{"tf":1.0},"43":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"71":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":18,"docs":{"134":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0}}}}}}}},"t":{"'":{"df":1,"docs":{"27":{"tf":1.0}}},"1":{"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"155":{"tf":1.0},"163":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"43":{"tf":1.0}}},"2":{">":{"(":{"df":0,"docs":{},"x":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":2.0},"168":{"tf":1.0},"169":{"tf":2.0}}},"a":{"b":{"df":1,"docs":{"30":{"tf":1.0}},"l":{"df":2,"docs":{"208":{"tf":1.0},"93":{"tf":1.0}},"e":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"215":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"137":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":19,"docs":{"0":{"tf":1.0},"102":{"tf":1.0},"143":{"tf":1.4142135623730951},"153":{"tf":1.0},"154":{"tf":1.0},"169":{"tf":1.0},"178":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":2.0},"227":{"tf":1.0},"24":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0}},"n":{"df":2,"docs":{"136":{"tf":1.0},"161":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"119":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"111":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"87":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":3,"docs":{"121":{"tf":1.4142135623730951},"199":{"tf":1.0},"87":{"tf":1.0}}}}}}},"df":41,"docs":{"104":{"tf":1.0},"114":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":2.0},"154":{"tf":2.0},"155":{"tf":1.0},"163":{"tf":2.449489742783178},"165":{"tf":2.23606797749979},"166":{"tf":2.8284271247461903},"176":{"tf":1.0},"178":{"tf":2.23606797749979},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"199":{"tf":2.6457513110645907},"200":{"tf":2.449489742783178},"201":{"tf":1.0},"206":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"27":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":3.872983346207417},"33":{"tf":1.4142135623730951},"36":{"tf":3.7416573867739413},"37":{"tf":2.23606797749979},"39":{"tf":2.449489742783178},"43":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":3.4641016151377544},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"60":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"125":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.0},"41":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{":":{":":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"3":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.7320508075688772}},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"234":{"tf":2.8284271247461903},"236":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"234":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"5":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"7":{"0":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"3":{"df":1,"docs":{"98":{"tf":1.0}}},"8":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"x":{"df":2,"docs":{"101":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"df":1,"docs":{"101":{"tf":1.0}}},"2":{"df":1,"docs":{"101":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"233":{"tf":1.0}}},"df":1,"docs":{"229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"230":{"tf":1.0}}},"2":{"df":2,"docs":{"230":{"tf":1.0},"233":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"231":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"231":{"tf":1.0}}},"2":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":19,"docs":{"112":{"tf":1.7320508075688772},"148":{"tf":1.0},"214":{"tf":3.0},"215":{"tf":2.23606797749979},"226":{"tf":3.1622776601683795},"227":{"tf":4.58257569495584},"228":{"tf":1.0},"229":{"tf":2.6457513110645907},"230":{"tf":2.449489742783178},"231":{"tf":2.449489742783178},"232":{"tf":3.4641016151377544},"233":{"tf":2.23606797749979},"234":{"tf":3.872983346207417},"235":{"tf":4.242640687119285},"236":{"tf":2.449489742783178},"237":{"tf":3.0},"238":{"tf":6.0},"3":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"1":{"tf":1.0},"234":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"101":{"tf":1.0}}},"k":{"df":5,"docs":{"178":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"24":{"tf":1.0}}}},"r":{"d":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"227":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"227":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"122":{"tf":1.0},"212":{"tf":1.0},"93":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":8,"docs":{"112":{"tf":1.0},"147":{"tf":1.0},"151":{"tf":1.0},"163":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"78":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":4,"docs":{"20":{"tf":1.0},"226":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":2.0}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"93":{"tf":2.6457513110645907}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"119":{"tf":1.0},"121":{"tf":1.0},"143":{"tf":1.0},"203":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"53":{"tf":1.0},"63":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}}}}}}},"u":{"df":4,"docs":{"163":{"tf":1.0},"200":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}}}},"i":{"df":1,"docs":{"43":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":11,"docs":{"145":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0},"164":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"31":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"235":{"tf":1.0},"238":{"tf":1.0}}}}}}}},"n":{"df":1,"docs":{"43":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"222":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"222":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"215":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0}}}},"p":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"136":{"tf":1.0},"143":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"177":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"85":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"237":{"tf":1.0},"238":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"41":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"65":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"77":{"tf":1.0},"78":{"tf":2.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":10,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"75":{"tf":1.0},"93":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"218":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"11":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":5,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":2.0},"7":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":33,"docs":{"100":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":2.8284271247461903},"104":{"tf":2.6457513110645907},"105":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"132":{"tf":3.872983346207417},"143":{"tf":1.0},"151":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"73":{"tf":2.0},"74":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"86":{"tf":1.0},"87":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":2.0}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"10":{"tf":1.0},"15":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"240":{"tf":1.4142135623730951},"4":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"235":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":16,"docs":{"116":{"tf":1.7320508075688772},"122":{"tf":1.0},"136":{"tf":1.0},"211":{"tf":1.4142135623730951},"39":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":3.4641016151377544},"43":{"tf":3.1622776601683795},"44":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"48":{"tf":1.7320508075688772},"5":{"tf":1.0},"56":{"tf":2.23606797749979},"57":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"214":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":19,"docs":{"121":{"tf":1.7320508075688772},"129":{"tf":2.0},"143":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"93":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"197":{"tf":1.0},"210":{"tf":1.0}}},">":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":141,"docs":{"0":{"tf":1.0},"1":{"tf":2.0},"10":{"tf":2.6457513110645907},"100":{"tf":4.358898943540674},"104":{"tf":2.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.7320508075688772},"112":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"119":{"tf":1.0},"12":{"tf":2.0},"122":{"tf":1.4142135623730951},"124":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"133":{"tf":2.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.0},"14":{"tf":2.23606797749979},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"15":{"tf":2.6457513110645907},"150":{"tf":1.0},"152":{"tf":2.23606797749979},"153":{"tf":1.7320508075688772},"154":{"tf":2.449489742783178},"155":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":2.6457513110645907},"159":{"tf":1.7320508075688772},"16":{"tf":1.0},"160":{"tf":3.1622776601683795},"161":{"tf":2.6457513110645907},"162":{"tf":2.8284271247461903},"163":{"tf":5.385164807134504},"164":{"tf":2.8284271247461903},"165":{"tf":2.0},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":3.3166247903554},"17":{"tf":1.4142135623730951},"170":{"tf":2.23606797749979},"171":{"tf":2.449489742783178},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":2.0},"176":{"tf":2.449489742783178},"177":{"tf":1.0},"178":{"tf":4.58257569495584},"179":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":2.23606797749979},"205":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":3.3166247903554},"21":{"tf":1.0},"210":{"tf":3.0},"211":{"tf":3.4641016151377544},"212":{"tf":3.4641016151377544},"22":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":2.0},"233":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":2.8284271247461903},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":2.0},"34":{"tf":1.0},"35":{"tf":1.7320508075688772},"36":{"tf":2.23606797749979},"37":{"tf":2.0},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":2.449489742783178},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"5":{"tf":2.8284271247461903},"52":{"tf":1.0},"54":{"tf":3.0},"55":{"tf":4.123105625617661},"56":{"tf":1.0},"6":{"tf":2.23606797749979},"60":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"65":{"tf":2.23606797749979},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":2.449489742783178},"72":{"tf":2.8284271247461903},"73":{"tf":2.6457513110645907},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"81":{"tf":2.449489742783178},"83":{"tf":2.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":2.8284271247461903},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":10,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"44":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"df":8,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":9,"docs":{"12":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"24":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":11,"docs":{"12":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"176":{"tf":1.0},"212":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}}},"df":97,"docs":{"100":{"tf":1.0},"101":{"tf":3.1622776601683795},"104":{"tf":1.0},"105":{"tf":2.6457513110645907},"107":{"tf":1.7320508075688772},"108":{"tf":2.6457513110645907},"110":{"tf":1.4142135623730951},"111":{"tf":3.1622776601683795},"112":{"tf":2.449489742783178},"115":{"tf":2.23606797749979},"116":{"tf":2.449489742783178},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":3.3166247903554},"12":{"tf":1.0},"120":{"tf":2.449489742783178},"121":{"tf":2.449489742783178},"123":{"tf":1.0},"125":{"tf":3.0},"128":{"tf":1.0},"129":{"tf":2.6457513110645907},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":2.6457513110645907},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"162":{"tf":2.23606797749979},"163":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.7320508075688772},"200":{"tf":2.6457513110645907},"204":{"tf":2.449489742783178},"206":{"tf":2.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":2.6457513110645907},"211":{"tf":2.23606797749979},"212":{"tf":3.4641016151377544},"227":{"tf":1.0},"229":{"tf":1.4142135623730951},"236":{"tf":1.0},"31":{"tf":2.6457513110645907},"36":{"tf":2.449489742783178},"38":{"tf":2.449489742783178},"39":{"tf":3.3166247903554},"44":{"tf":1.7320508075688772},"46":{"tf":1.7320508075688772},"47":{"tf":5.0990195135927845},"54":{"tf":2.8284271247461903},"57":{"tf":2.6457513110645907},"58":{"tf":2.8284271247461903},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"79":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"83":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":2.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"8":{"df":19,"docs":{"101":{"tf":1.0},"104":{"tf":2.23606797749979},"12":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"161":{"tf":2.0},"166":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"30":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.0},"6":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.449489742783178}}},">":{"(":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"212":{"tf":1.7320508075688772},"54":{"tf":1.0}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"212":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"151":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"217":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"67":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"190":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"23":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0},"93":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"104":{"tf":1.0},"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.4142135623730951},"3":{"tf":1.0},"53":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"178":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"55":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":6,"docs":{"170":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"192":{"tf":1.7320508075688772},"242":{"tf":1.0},"40":{"tf":1.0}}}},"t":{"df":31,"docs":{"1":{"tf":1.0},"116":{"tf":1.4142135623730951},"148":{"tf":1.0},"170":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":2.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":2.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":2.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"65":{"tf":1.4142135623730951},"83":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"164":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"218":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"33":{"tf":1.4142135623730951},"67":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":6,"docs":{"12":{"tf":1.0},"200":{"tf":1.0},"222":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0},"90":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"154":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"103":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"163":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"55":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"164":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"166":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"6":{"tf":2.6457513110645907}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"86":{"tf":1.0},"89":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":8,"docs":{"162":{"tf":2.0},"163":{"tf":1.4142135623730951},"180":{"tf":1.0},"194":{"tf":2.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"143":{"tf":1.0},"37":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"214":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"147":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.4142135623730951}}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"189":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"102":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"161":{"tf":1.0},"207":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.4142135623730951},"217":{"tf":1.0},"220":{"tf":1.4142135623730951},"238":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"99":{"tf":1.0}}}},"df":143,"docs":{"0":{"tf":2.0},"103":{"tf":1.7320508075688772},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":2.8284271247461903},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"121":{"tf":2.0},"122":{"tf":1.0},"125":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"143":{"tf":2.23606797749979},"145":{"tf":1.0},"147":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"162":{"tf":1.0},"163":{"tf":2.6457513110645907},"164":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":2.23606797749979},"171":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"183":{"tf":2.6457513110645907},"184":{"tf":5.196152422706632},"185":{"tf":2.0},"186":{"tf":3.1622776601683795},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":2.23606797749979},"190":{"tf":3.605551275463989},"191":{"tf":1.4142135623730951},"192":{"tf":2.6457513110645907},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":1.4142135623730951},"197":{"tf":1.0},"199":{"tf":5.744562646538029},"2":{"tf":1.4142135623730951},"200":{"tf":4.69041575982343},"201":{"tf":3.0},"202":{"tf":2.449489742783178},"204":{"tf":1.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.23606797749979},"215":{"tf":2.6457513110645907},"217":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.23606797749979},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.0},"24":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":2.449489742783178},"242":{"tf":2.0},"25":{"tf":2.23606797749979},"26":{"tf":2.23606797749979},"3":{"tf":1.7320508075688772},"30":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"5":{"tf":2.0},"51":{"tf":1.4142135623730951},"52":{"tf":2.0},"54":{"tf":1.0},"56":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.0},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":2.0},"79":{"tf":2.449489742783178},"80":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":2.0},"91":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":2.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":2.449489742783178}},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"r":{"df":7,"docs":{"122":{"tf":1.0},"136":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.0},"72":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"163":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"31":{"tf":1.0},"76":{"tf":1.7320508075688772}}},"2":{"df":3,"docs":{"31":{"tf":1.4142135623730951},"55":{"tf":1.0},"76":{"tf":2.449489742783178}}},"_":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"0":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":{"93":{"tf":1.7320508075688772}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"182":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":32,"docs":{"111":{"tf":2.23606797749979},"112":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"24":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"39":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"64":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"134":{"tf":1.0}}}},"df":0,"docs":{}},"df":112,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":3.4641016151377544},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"107":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":2.0},"117":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"121":{"tf":2.0},"122":{"tf":2.449489742783178},"125":{"tf":1.0},"128":{"tf":1.7320508075688772},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":2.0},"139":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":5.291502622129181},"144":{"tf":2.23606797749979},"145":{"tf":2.0},"146":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"171":{"tf":2.6457513110645907},"172":{"tf":2.449489742783178},"173":{"tf":3.1622776601683795},"174":{"tf":2.6457513110645907},"175":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"21":{"tf":1.0},"211":{"tf":1.0},"215":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"219":{"tf":2.0},"22":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"24":{"tf":1.7320508075688772},"25":{"tf":2.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":2.6457513110645907},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"42":{"tf":3.1622776601683795},"44":{"tf":1.0},"48":{"tf":1.0},"51":{"tf":2.23606797749979},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":3.4641016151377544},"66":{"tf":2.6457513110645907},"67":{"tf":1.7320508075688772},"68":{"tf":1.4142135623730951},"69":{"tf":2.449489742783178},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"75":{"tf":2.6457513110645907},"76":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":2.0},"90":{"tf":2.23606797749979},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"95":{"tf":1.0},"96":{"tf":2.6457513110645907}},"e":{"'":{"df":1,"docs":{"67":{"tf":1.0}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.7320508075688772},"107":{"tf":2.23606797749979},"115":{"tf":1.0},"117":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":2.23606797749979},"50":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"52":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":2.6457513110645907},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":3.0},"97":{"tf":2.0},"99":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":2,"docs":{"104":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"177":{"tf":1.4142135623730951}}},"2":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"177":{"tf":1.4142135623730951}}}},"u":{"6":{"4":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"104":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":3.1622776601683795},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"140":{"tf":1.7320508075688772},"142":{"tf":3.7416573867739413},"143":{"tf":4.123105625617661},"177":{"tf":2.6457513110645907},"96":{"tf":2.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"120":{"tf":1.0}}}}}}},"df":17,"docs":{"160":{"tf":2.0},"184":{"tf":2.8284271247461903},"185":{"tf":2.0},"187":{"tf":2.0},"188":{"tf":2.0},"189":{"tf":2.0},"190":{"tf":3.4641016151377544},"193":{"tf":2.0},"199":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"31":{"tf":3.3166247903554},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"37":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":2.6457513110645907}},"e":{"c":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"[":{"df":0,"docs":{},"i":{"df":1,"docs":{"211":{"tf":1.4142135623730951}}}},"df":4,"docs":{"188":{"tf":1.0},"193":{"tf":3.0},"33":{"tf":1.0},"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"29":{"tf":1.0}}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":3,"docs":{"121":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"v":{"df":2,"docs":{"206":{"tf":1.0},"212":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"y":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}},"u":{"6":{"4":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":4,"docs":{"121":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}},"e":{"c":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"160":{"tf":1.0},"184":{"tf":2.0},"189":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"63":{"tf":1.0},"65":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":2,"docs":{"31":{"tf":1.0},"80":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"80":{"tf":1.4142135623730951}}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"188":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"<":{"0":{"df":0,"docs":{},"x":{"4":{"2":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{">":{"[":{"@":{"0":{"df":0,"docs":{},"x":{"4":{"2":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"27":{"tf":1.0},"29":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"29":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"118":{"tf":1.0},"210":{"tf":1.4142135623730951}}}},"o":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":3,"docs":{"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"184":{"tf":1.0},"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"2":{"df":1,"docs":{"155":{"tf":1.0}}},">":{"[":{"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"27":{"tf":1.7320508075688772},"29":{"tf":2.23606797749979},"31":{"tf":3.872983346207417},"33":{"tf":2.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{">":{"[":{"]":{"[":{"1":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"160":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"27":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":10,"docs":{"150":{"tf":1.4142135623730951},"158":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":2.23606797749979},"44":{"tf":1.0},"46":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.4142135623730951},"76":{"tf":2.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"207":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"u":{"6":{"4":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"27":{"tf":1.0},"65":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"0":{"df":1,"docs":{"206":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"29":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"33":{"tf":1.4142135623730951}}},"df":1,"docs":{"206":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"1":{"df":1,"docs":{"29":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"232":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"232":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":30,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"132":{"tf":1.0},"152":{"tf":1.0},"160":{"tf":1.7320508075688772},"178":{"tf":2.449489742783178},"184":{"tf":2.23606797749979},"185":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":2.0},"193":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"232":{"tf":2.0},"27":{"tf":2.0},"28":{"tf":1.0},"29":{"tf":3.4641016151377544},"30":{"tf":1.7320508075688772},"31":{"tf":3.4641016151377544},"32":{"tf":1.0},"33":{"tf":2.8284271247461903},"34":{"tf":1.4142135623730951},"5":{"tf":1.0},"55":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"93":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"178":{"tf":1.0},"42":{"tf":1.0},"51":{"tf":1.0}},"f":{"df":1,"docs":{"225":{"tf":1.0}},"i":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"209":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"223":{"tf":2.0},"225":{"tf":2.449489742783178},"44":{"tf":1.0}}}}},"u":{"df":2,"docs":{"211":{"tf":1.0},"212":{"tf":1.0}}}}}},"i":{"a":{"df":15,"docs":{"129":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"23":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.4142135623730951},"31":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":4,"docs":{"200":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"39":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"163":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":11,"docs":{"110":{"tf":1.0},"111":{"tf":2.6457513110645907},"124":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"148":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"240":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"169":{"tf":1.0},"80":{"tf":2.449489742783178}}},"s":{"df":1,"docs":{"207":{"tf":1.7320508075688772}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"163":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"178":{"tf":2.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"238":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"177":{"tf":1.0}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"177":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"163":{"tf":1.0},"194":{"tf":1.4142135623730951},"59":{"tf":1.4142135623730951}}}},"y":{"df":17,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"145":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"233":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":1,"docs":{"108":{"tf":1.4142135623730951}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"163":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"170":{"tf":1.0},"222":{"tf":1.0},"36":{"tf":1.0},"94":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"201":{"tf":1.0},"226":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"134":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"197":{"tf":1.0},"67":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"211":{"tf":1.0},"238":{"tf":1.0},"76":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"2":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"108":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"/":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"101":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"101":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"108":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"96":{"tf":3.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"_":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"231":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"217":{"tf":1.0},"219":{"tf":1.0},"58":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"108":{"tf":2.0},"111":{"tf":1.0},"121":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.4142135623730951},"151":{"tf":1.0},"189":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"242":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":26,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.0},"16":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"210":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.0},"24":{"tf":1.0},"41":{"tf":1.0},"51":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"74":{"tf":1.0},"75":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":6,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.0},"33":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":13,"docs":{"132":{"tf":1.0},"152":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"203":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"42":{"tf":1.0},"58":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"134":{"tf":1.0},"150":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"217":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"164":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"193":{"tf":2.8284271247461903}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"(":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"236":{"tf":1.0}}},"df":1,"docs":{"236":{"tf":1.0}}},"3":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}},"5":{"df":1,"docs":{"97":{"tf":1.0}}},"_":{"df":1,"docs":{"236":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"u":{"6":{"4":{"df":2,"docs":{"236":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"133":{"tf":1.4142135623730951},"23":{"tf":1.0},"236":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":20,"docs":{"0":{"tf":1.0},"130":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.4142135623730951},"173":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"224":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":2.23606797749979},"40":{"tf":1.0},"42":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"121":{"tf":1.0},"162":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"37":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"229":{"tf":1.0},"232":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"0":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"0":{"9":{"7":{"7":{"6":{"df":0,"docs":{},"f":{"7":{"2":{"6":{"c":{"6":{"4":{"2":{"1":{"2":{"2":{"0":{"a":{"2":{"0":{"0":{"d":{"2":{"0":{"5":{"c":{"4":{"df":0,"docs":{},"e":{"7":{"5":{"6":{"c":{"6":{"c":{"3":{"d":{"0":{"0":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"8":{"6":{"5":{"6":{"c":{"6":{"c":{"6":{"df":0,"docs":{},"f":{"2":{"1":{"0":{"a":{"df":1,"docs":{"30":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"(":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{},"f":{"1":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"2":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"p":{"df":1,"docs":{"204":{"tf":1.0}}},"u":{"6":{"4":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"0":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"b":{"a":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":1,"docs":{"202":{"tf":2.449489742783178}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"(":{"df":1,"docs":{"197":{"tf":1.4142135623730951}}},"df":1,"docs":{"198":{"tf":1.0}}}}},"m":{"df":1,"docs":{"199":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}},"r":{"df":1,"docs":{"199":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.0}}}},"0":{"df":2,"docs":{"53":{"tf":1.0},"56":{"tf":1.0}}},"1":{"2":{"8":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":3.4641016151377544},"58":{"tf":2.0},"59":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"f":{"df":2,"docs":{"57":{"tf":1.0},"58":{"tf":1.0}}}},"5":{"6":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"df":4,"docs":{"57":{"tf":3.3166247903554},"58":{"tf":2.0},"59":{"tf":1.4142135623730951},"69":{"tf":1.0}}},"3":{"2":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"161":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"161":{"tf":1.0}}},":":{":":{"a":{"(":{"1":{"0":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"(":{"2":{"0":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"2":{"df":1,"docs":{"69":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"131":{"tf":2.0},"69":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"l":{"df":1,"docs":{"204":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"a":{"df":1,"docs":{"53":{"tf":1.0}}},"df":84,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.8284271247461903},"102":{"tf":1.7320508075688772},"103":{"tf":2.23606797749979},"104":{"tf":2.0},"105":{"tf":3.3166247903554},"107":{"tf":2.449489742783178},"108":{"tf":2.23606797749979},"110":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"117":{"tf":2.23606797749979},"119":{"tf":2.0},"120":{"tf":1.7320508075688772},"121":{"tf":2.0},"123":{"tf":1.4142135623730951},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.795831523312719},"130":{"tf":2.449489742783178},"131":{"tf":1.7320508075688772},"132":{"tf":4.898979485566356},"133":{"tf":1.7320508075688772},"134":{"tf":3.605551275463989},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":4.123105625617661},"144":{"tf":2.23606797749979},"15":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":2.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.7320508075688772},"161":{"tf":1.7320508075688772},"166":{"tf":3.0},"168":{"tf":2.0},"177":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":2.8284271247461903},"2":{"tf":1.0},"202":{"tf":2.0},"203":{"tf":4.898979485566356},"204":{"tf":1.4142135623730951},"211":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":2.6457513110645907},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":3.3166247903554},"39":{"tf":2.0},"44":{"tf":1.0},"46":{"tf":2.23606797749979},"47":{"tf":1.7320508075688772},"51":{"tf":3.605551275463989},"52":{"tf":3.7416573867739413},"53":{"tf":1.4142135623730951},"54":{"tf":2.23606797749979},"55":{"tf":1.0},"56":{"tf":2.449489742783178},"57":{"tf":2.23606797749979},"58":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"62":{"tf":4.123105625617661},"63":{"tf":2.449489742783178},"64":{"tf":3.0},"65":{"tf":4.358898943540674},"66":{"tf":3.605551275463989},"67":{"tf":2.6457513110645907},"69":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"83":{"tf":3.872983346207417},"92":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"96":{"tf":3.7416573867739413},"97":{"tf":1.7320508075688772},"98":{"tf":1.0},"99":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"h":{"df":1,"docs":{"30":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"11":{"tf":1.0}}}}},"y":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"204":{"tf":1.0}}}},".":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.4142135623730951}}}},"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":1,"docs":{"56":{"tf":1.0}}},"2":{"df":1,"docs":{"56":{"tf":1.0}}},"df":51,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":2.23606797749979},"107":{"tf":3.4641016151377544},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"119":{"tf":2.0},"120":{"tf":2.23606797749979},"121":{"tf":2.23606797749979},"123":{"tf":1.0},"125":{"tf":2.23606797749979},"128":{"tf":1.4142135623730951},"129":{"tf":4.47213595499958},"130":{"tf":2.449489742783178},"131":{"tf":2.0},"132":{"tf":4.69041575982343},"136":{"tf":1.0},"137":{"tf":1.0},"142":{"tf":1.4142135623730951},"143":{"tf":2.0},"15":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":3.1622776601683795},"204":{"tf":1.0},"33":{"tf":2.0},"36":{"tf":1.4142135623730951},"38":{"tf":2.6457513110645907},"39":{"tf":2.8284271247461903},"46":{"tf":2.0},"47":{"tf":2.23606797749979},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":3.1622776601683795},"58":{"tf":2.6457513110645907},"59":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"65":{"tf":2.23606797749979},"67":{"tf":1.7320508075688772},"81":{"tf":1.0},"83":{"tf":3.7416573867739413},"96":{"tf":2.23606797749979},"97":{"tf":1.4142135623730951}},"e":{"df":1,"docs":{"181":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"0":{"df":1,"docs":{"56":{"tf":1.0}}},"1":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.7320508075688772}}},"2":{"df":2,"docs":{"56":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"56":{"tf":1.0}}},"df":19,"docs":{"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"113":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"126":{"tf":2.0},"137":{"tf":1.0},"140":{"tf":2.0},"147":{"tf":2.449489742783178},"191":{"tf":1.0},"3":{"tf":2.0},"33":{"tf":2.0},"36":{"tf":1.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"56":{"tf":1.0},"67":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"119":{"tf":1.7320508075688772},"230":{"tf":1.0},"33":{"tf":1.0}}}}}}}},"title":{"root":{"1":{"df":1,"docs":{"229":{"tf":1.0}}},"2":{"df":1,"docs":{"230":{"tf":1.0}}},"3":{"df":1,"docs":{"231":{"tf":1.0}}},"4":{"df":1,"docs":{"232":{"tf":1.0}}},"5":{"df":1,"docs":{"233":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"103":{"tf":1.0},"125":{"tf":1.0},"139":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"178":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"58":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"194":{"tf":1.0}},"s":{"df":7,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"177":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"156":{"tf":1.0},"159":{"tf":1.0},"208":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"220":{"tf":1.0},"221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"77":{"tf":1.0},"79":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"52":{"tf":1.0},"62":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"12":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"11":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"117":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"131":{"tf":1.0},"203":{"tf":1.0},"74":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"87":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"176":{"tf":1.0}}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"119":{"tf":1.0},"157":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"15":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"239":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"212":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"216":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"229":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"103":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"88":{"tf":1.0},"91":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":5,"docs":{"172":{"tf":1.0},"179":{"tf":1.0},"33":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.0},"142":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":11,"docs":{"110":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.0},"165":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"50":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"123":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"209":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"187":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"129":{"tf":1.0},"33":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"143":{"tf":1.0},"46":{"tf":1.0},"58":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"173":{"tf":1.0},"180":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"216":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"177":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"14":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"236":{"tf":1.0},"26":{"tf":1.0},"32":{"tf":1.0},"44":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"104":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"233":{"tf":1.0}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"229":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"230":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"231":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"232":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"121":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"190":{"tf":1.0},"65":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"208":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"21":{"tf":1.0},"82":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"171":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"38":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"109":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}}}},"df":2,"docs":{"199":{"tf":1.0},"200":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"152":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"178":{"tf":1.0},"29":{"tf":1.0},"60":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"60":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"205":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"38":{"tf":1.0},"69":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"189":{"tf":1.0},"190":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":2,"docs":{"161":{"tf":1.0},"6":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"175":{"tf":1.0},"182":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"169":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"106":{"tf":1.0},"167":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"18":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"43":{"tf":1.0},"7":{"tf":1.0}}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"49":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"230":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"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}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"232":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"112":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"1":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"222":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"215":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"0":{"tf":1.0},"223":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":4,"docs":{"185":{"tf":1.0},"187":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"61":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":12,"docs":{"113":{"tf":1.0},"126":{"tf":1.0},"140":{"tf":1.0},"147":{"tf":1.0},"191":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"3":{"tf":1.0},"53":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"118":{"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":{"55":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"188":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"133":{"tf":1.0},"19":{"tf":1.0},"31":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"71":{"tf":1.0},"9":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"206":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"134":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"213":{"tf":1.0},"214":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.0},"115":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"129":{"tf":1.0},"143":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"0":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"41":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"73":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"122":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"75":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"191":{"tf":1.0},"242":{"tf":1.0}}}},"n":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"187":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":4,"docs":{"202":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"186":{"tf":1.0}}}}},"h":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"193":{"tf":1.0},"66":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"106":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"135":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"174":{"tf":1.0},"181":{"tf":1.0},"41":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"122":{"tf":1.0},"123":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"39":{"tf":1.0},"47":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":9,"docs":{"184":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"24":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"37":{"tf":1.0},"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"169":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"56":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":20,"docs":{"100":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"u":{"6":{"4":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"232":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}},"t":{"df":3,"docs":{"226":{"tf":1.0},"235":{"tf":1.0},"42":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"162":{"tf":1.0},"194":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0}}}},"df":14,"docs":{"127":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"183":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.0},"52":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"149":{"tf":1.0},"53":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":5,"docs":{"120":{"tf":1.0},"144":{"tf":1.0},"150":{"tf":1.0},"59":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"142":{"tf":1.0},"143":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"27":{"tf":1.0},"29":{"tf":1.0},"33":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"225":{"tf":1.0}}}}}}}},"i":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"124":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":1,"docs":{"80":{"tf":1.0}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file diff --git a/reference/variables.html b/reference/variables.html index b97902e..722f3dd 100644 --- a/reference/variables.html +++ b/reference/variables.html @@ -325,7 +325,7 @@

Multiple declarations with structs

-

let can also introduce more than one local at a time when destructuring (or matching against) a +

let can also introduce more than one local variables at a time when destructuring (or matching against) a struct. In this form, the let creates a set of local variables that are initialized to the values of the fields from a struct. The syntax looks like this:

public struct T { f1: u64, f2: u64 }
@@ -338,7 +338,7 @@ 

public struct P(u64, u64)

and

-
let P(local1, local2) = T { f1: 1, f2: 2 };
+
let P (local1, local2) = P ( 1, 2 );
 // local1: u64
 // local2: u64
 
diff --git a/searchindex.js b/searchindex.js index f795d2d..d29c78a 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["index.html#the-move-book","foreword.html#foreword","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#install-using-chocolatey-windows","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#create-a-new-package","your-first-move/hello-world.html#directory-structure","your-first-move/hello-world.html#manifest","your-first-move/hello-world.html#sources","your-first-move/hello-world.html#tests","your-first-move/hello-world.html#other-folders","your-first-move/hello-world.html#compiling-the-package","your-first-move/hello-world.html#running-tests","your-first-move/hello-world.html#next-steps","your-first-move/hello-world.html#further-reading","your-first-move/hello-sui.html#hello-sui","your-first-move/hello-sui.html#create-a-new-package","your-first-move/hello-sui.html#add-the-code","your-first-move/hello-sui.html#build-the-package","your-first-move/hello-sui.html#set-up-an-account","your-first-move/hello-sui.html#requesting-coins","your-first-move/hello-sui.html#publish","your-first-move/hello-sui.html#transaction-data","your-first-move/hello-sui.html#transaction-effects","your-first-move/hello-sui.html#events","your-first-move/hello-sui.html#object-changes","your-first-move/hello-sui.html#balance-changes","your-first-move/hello-sui.html#alternative-output","your-first-move/hello-sui.html#using-the-results","your-first-move/hello-sui.html#sending-transactions","your-first-move/hello-sui.html#prepare-the-variables","your-first-move/hello-sui.html#building-the-transaction-in-cli","your-first-move/hello-sui.html#passing-objects-to-functions","your-first-move/hello-sui.html#chaining-commands","your-first-move/hello-sui.html#conclusion","concepts/index.html#concepts","concepts/packages.html#package","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#further-reading","concepts/address.html#address","concepts/address.html#further-reading","concepts/what-is-an-account.html#account","concepts/what-is-an-account.html#further-reading","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/what-is-a-transaction.html#commands","concepts/what-is-a-transaction.html#transaction-effects","move-basics/index.html#move-basics","move-basics/module.html#module","move-basics/module.html#module-declaration","move-basics/module.html#address--named-address","move-basics/module.html#module-members","move-basics/module.html#further-reading","move-basics/comments.html#comments","move-basics/comments.html#line-comment","move-basics/comments.html#block-comment","move-basics/comments.html#doc-comment","move-basics/primitive-types.html#primitive-types","move-basics/primitive-types.html#variables-and-assignment","move-basics/primitive-types.html#booleans","move-basics/primitive-types.html#integer-types","move-basics/primitive-types.html#operations","move-basics/primitive-types.html#casting-with-as","move-basics/primitive-types.html#overflow","move-basics/primitive-types.html#further-reading","move-basics/address.html#address-type","move-basics/address.html#conversion","move-basics/address.html#further-reading","move-basics/expression.html#expression","move-basics/expression.html#literals","move-basics/expression.html#operators","move-basics/expression.html#blocks","move-basics/expression.html#function-calls","move-basics/expression.html#control-flow-expressions","move-basics/struct.html#custom-types-with-struct","move-basics/struct.html#struct","move-basics/struct.html#create-and-use-an-instance","move-basics/struct.html#unpacking-a-struct","move-basics/struct.html#further-reading","move-basics/abilities-introduction.html#abilities-introduction","move-basics/abilities-introduction.html#what-are-abilities","move-basics/abilities-introduction.html#abilities-syntax","move-basics/abilities-introduction.html#overview","move-basics/abilities-introduction.html#no-abilities","move-basics/abilities-introduction.html#further-reading","move-basics/drop-ability.html#abilities-drop","move-basics/drop-ability.html#types-with-the-drop-ability","move-basics/drop-ability.html#further-reading","move-basics/importing-modules.html#importing-modules","move-basics/importing-modules.html#importing-a-module","move-basics/importing-modules.html#importing-members","move-basics/importing-modules.html#grouping-imports","move-basics/importing-modules.html#resolving-name-conflicts","move-basics/importing-modules.html#adding-an-external-dependency","move-basics/importing-modules.html#importing-a-module-from-another-package","move-basics/standard-library.html#standard-library","move-basics/standard-library.html#most-common-modules","move-basics/standard-library.html#exported-addresses","move-basics/standard-library.html#implicit-imports","move-basics/standard-library.html#importing-std-without-sui-framework","move-basics/standard-library.html#source-code","move-basics/vector.html#vector","move-basics/vector.html#vector-syntax","move-basics/vector.html#vector-operations","move-basics/vector.html#destroying-a-vector-of-non-droppable-types","move-basics/vector.html#further-reading","move-basics/option.html#option","move-basics/option.html#in-practice","move-basics/option.html#using-option","move-basics/string.html#string","move-basics/string.html#strings-are-bytes","move-basics/string.html#working-with-utf-8-strings","move-basics/string.html#definition","move-basics/string.html#creating-a-string","move-basics/string.html#common-operations","move-basics/string.html#safe-utf-8-operations","move-basics/string.html#utf-8-limitations","move-basics/string.html#ascii-strings","move-basics/control-flow.html#control-flow","move-basics/control-flow.html#conditional-statements","move-basics/control-flow.html#repeating-statements-with-loops","move-basics/control-flow.html#the-while-loop","move-basics/control-flow.html#infinite-loop","move-basics/control-flow.html#exiting-a-loop-early","move-basics/control-flow.html#skipping-an-iteration","move-basics/control-flow.html#early-return","move-basics/constants.html#constants","move-basics/constants.html#naming-convention","move-basics/constants.html#constants-are-immutable","move-basics/constants.html#using-config-pattern","move-basics/constants.html#links","move-basics/assert-and-abort.html#aborting-execution","move-basics/assert-and-abort.html#abort","move-basics/assert-and-abort.html#assert","move-basics/assert-and-abort.html#error-constants","move-basics/assert-and-abort.html#further-reading","move-basics/function.html#function","move-basics/function.html#function-declaration","move-basics/function.html#accessing-functions","move-basics/function.html#multiple-return-values","move-basics/function.html#further-reading","move-basics/struct-methods.html#struct-methods","move-basics/struct-methods.html#method-syntax","move-basics/struct-methods.html#method-aliases","move-basics/struct-methods.html#aliasing-an-external-modules-method","move-basics/struct-methods.html#further-reading","move-basics/visibility.html#visibility-modifiers","move-basics/visibility.html#internal-visibility","move-basics/visibility.html#public-visibility","move-basics/visibility.html#package-visibility","move-basics/ownership-and-scope.html#ownership-and-scope","move-basics/ownership-and-scope.html#ownership","move-basics/ownership-and-scope.html#returning-a-value","move-basics/ownership-and-scope.html#passing-by-value","move-basics/ownership-and-scope.html#scopes-with-blocks","move-basics/ownership-and-scope.html#copyable-types","move-basics/ownership-and-scope.html#further-reading","move-basics/copy-ability.html#abilities-copy","move-basics/copy-ability.html#copying-and-drop","move-basics/copy-ability.html#types-with-the-copy-ability","move-basics/copy-ability.html#further-reading","move-basics/references.html#references","move-basics/references.html#layout","move-basics/references.html#reference","move-basics/references.html#mutable-reference","move-basics/references.html#passing-by-value","move-basics/references.html#full-example","move-basics/generics.html#generics","move-basics/generics.html#in-the-standard-library","move-basics/generics.html#generic-syntax","move-basics/generics.html#multiple-type-parameters","move-basics/generics.html#why-generics","move-basics/generics.html#phantom-type-parameters","move-basics/generics.html#constraints-on-type-parameters","move-basics/generics.html#further-reading","move-basics/type-reflection.html#type-reflection","move-basics/type-reflection.html#in-practice","move-basics/type-reflection.html#further-reading","move-basics/testing.html#testing","move-basics/testing.html#the-test-attribute","move-basics/testing.html#running-tests","move-basics/testing.html#test-fail-cases-with-expected_failure","move-basics/testing.html#utilities-with-test_only","move-basics/testing.html#further-reading","object/index.html#object-model","object/digital-assets.html#move---language-for-digital-assets","object/digital-assets.html#summary","object/digital-assets.html#further-reading","object/evolution-of-move.html#evolution-of-move","object/evolution-of-move.html#summary","object/evolution-of-move.html#further-reading","object/object-model.html#what-is-an-object","object/object-model.html#summary","object/object-model.html#further-reading","object/ownership.html#ownership","object/ownership.html#account-owner-or-single-owner","object/ownership.html#shared-state","object/ownership.html#immutable-frozen-state","object/ownership.html#object-owner","object/ownership.html#summary","object/ownership.html#next-steps","object/fast-path-and-consensus.html#fast-path--consensus","object/fast-path-and-consensus.html#concurrency-challenge","object/fast-path-and-consensus.html#fast-path","object/fast-path-and-consensus.html#consensus-path","object/fast-path-and-consensus.html#objects-owned-by-objects","object/fast-path-and-consensus.html#summary","storage/index.html#using-objects","storage/key-ability.html#the-key-ability","storage/key-ability.html#object-definition","storage/key-ability.html#types-with-the-key-ability","storage/key-ability.html#next-steps","storage/key-ability.html#further-reading","storage/storage-functions.html#storage-functions","storage/storage-functions.html#overview","storage/storage-functions.html#ownership-and-references-a-quick-recap","storage/storage-functions.html#transfer","storage/storage-functions.html#freeze","storage/storage-functions.html#owned---frozen","storage/storage-functions.html#share","storage/storage-functions.html#special-case-shared-object-deletion","storage/storage-functions.html#next-steps","storage/store-ability.html#ability-store","storage/store-ability.html#definition","storage/store-ability.html#example","storage/store-ability.html#types-with-the-store-ability","storage/store-ability.html#further-reading","storage/uid-and-id.html#uid-and-id","storage/uid-and-id.html#fresh-uid-generation","storage/uid-and-id.html#uid-lifecycle","storage/uid-and-id.html#keeping-the-uid","storage/uid-and-id.html#proof-of-deletion","storage/uid-and-id.html#id","storage/uid-and-id.html#fresh_object_address","storage/transfer-restrictions.html#restricted-and-public-transfer","storage/transfer-restrictions.html#public-storage-operations","storage/transfer-restrictions.html#implications-of-store","programmability/index.html#advanced-programmability","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/module-initializer.html#module-initializer","programmability/module-initializer.html#init-features","programmability/module-initializer.html#trust-and-security","programmability/module-initializer.html#next-steps","programmability/capability.html#pattern-capability","programmability/capability.html#capability-is-an-object","programmability/capability.html#using-init-for-admin-capability","programmability/capability.html#address-check-vs-capability","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/collections.html#collections","programmability/collections.html#vector","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/collections.html#limitations","programmability/collections.html#summary","programmability/collections.html#next-steps","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#definition","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#foreign-types-as-dynamic-fields","programmability/dynamic-fields.html#orphaned-dynamic-fields","programmability/dynamic-fields.html#custom-type-as-a-field-name","programmability/dynamic-fields.html#exposing-uid","programmability/dynamic-fields.html#dynamic-fields-vs-fields","programmability/dynamic-fields.html#limits","programmability/dynamic-fields.html#applications","programmability/dynamic-fields.html#next-steps","programmability/dynamic-object-fields.html#dynamic-object-fields","programmability/dynamic-object-fields.html#definition","programmability/dynamic-object-fields.html#usage--differences-with-dynamic-fields","programmability/dynamic-object-fields.html#pricing-differences","programmability/dynamic-object-fields.html#next-steps","programmability/dynamic-collections.html#dynamic-collections","programmability/dynamic-collections.html#common-concepts","programmability/dynamic-collections.html#bag","programmability/dynamic-collections.html#objectbag","programmability/dynamic-collections.html#table","programmability/dynamic-collections.html#objecttable","programmability/dynamic-collections.html#summary","programmability/dynamic-collections.html#linkedtable","programmability/witness-pattern.html#pattern-witness","programmability/witness-pattern.html#witness-in-move","programmability/witness-pattern.html#instantiating-a-generic-type","programmability/witness-pattern.html#one-time-witness","programmability/witness-pattern.html#summary","programmability/witness-pattern.html#next-steps","programmability/one-time-witness.html#one-time-witness","programmability/one-time-witness.html#definition","programmability/one-time-witness.html#enforcing-the-otw","programmability/one-time-witness.html#summary","programmability/publisher.html#publisher-authority","programmability/publisher.html#definition","programmability/publisher.html#usage","programmability/publisher.html#publisher-as-admin-role","programmability/publisher.html#role-on-sui","programmability/publisher.html#next-steps","programmability/display.html#object-display","programmability/display.html#background","programmability/display.html#object-display-1","programmability/display.html#creator-privilege","programmability/display.html#standard-fields","programmability/display.html#working-with-display","programmability/display.html#template-syntax","programmability/display.html#multiple-display-objects","programmability/display.html#further-reading","programmability/events.html#events","programmability/events.html#emitting-events","programmability/events.html#event-structure","programmability/sui-framework.html#sui-framework","programmability/sui-framework.html#core","programmability/sui-framework.html#collections","programmability/sui-framework.html#utilities","programmability/sui-framework.html#exported-addresses","programmability/sui-framework.html#implicit-imports","programmability/sui-framework.html#source-code","programmability/bcs.html#binary-canonical-serialization","programmability/bcs.html#format","programmability/bcs.html#using-bcs","programmability/bcs.html#encoding","programmability/bcs.html#encoding-a-struct","programmability/bcs.html#decoding","programmability/bcs.html#wrapper-api","programmability/bcs.html#decoding-vectors","programmability/bcs.html#decoding-option","programmability/bcs.html#decoding-structs","programmability/bcs.html#summary","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#migration-tool","guides/2024-migration-guide.html#mutable-bindings-with-let-mut","guides/2024-migration-guide.html#friends-are-deprecated","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#method-syntax","guides/2024-migration-guide.html#methods-for-built-in-types","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/upgradeability-practices.html#upgradeability-practices","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-dynamic-fields-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","guides/coding-conventions.html#coding-conventions","guides/coding-conventions.html#naming","guides/coding-conventions.html#module","guides/coding-conventions.html#constant","guides/coding-conventions.html#function","guides/coding-conventions.html#struct","guides/coding-conventions.html#struct-method","appendix/glossary.html#appendix-a-glossary","appendix/glossary.html#abilities","appendix/reserved-addresses.html#appendix-b-reserved-addresses","appendix/publications.html#appendix-c-publications","appendix/contributing.html#appendix-d-contributing","appendix/acknowledgements.html#appendix-e-acknowledgements"],"index":{"documentStore":{"docInfo":{"0":{"body":38,"breadcrumbs":4,"title":2},"1":{"body":288,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":3,"breadcrumbs":5,"title":2},"101":{"body":43,"breadcrumbs":6,"title":2},"102":{"body":14,"breadcrumbs":5,"title":1},"103":{"body":39,"breadcrumbs":6,"title":2},"104":{"body":65,"breadcrumbs":5,"title":1},"105":{"body":37,"breadcrumbs":5,"title":1},"106":{"body":4,"breadcrumbs":6,"title":2},"107":{"body":135,"breadcrumbs":6,"title":2},"108":{"body":22,"breadcrumbs":7,"title":3},"109":{"body":4,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":30,"breadcrumbs":6,"title":2},"111":{"body":72,"breadcrumbs":6,"title":2},"112":{"body":46,"breadcrumbs":6,"title":2},"113":{"body":109,"breadcrumbs":6,"title":2},"114":{"body":60,"breadcrumbs":7,"title":3},"115":{"body":87,"breadcrumbs":7,"title":3},"116":{"body":71,"breadcrumbs":8,"title":4},"117":{"body":24,"breadcrumbs":6,"title":2},"118":{"body":81,"breadcrumbs":6,"title":2},"119":{"body":11,"breadcrumbs":6,"title":2},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":16,"breadcrumbs":6,"title":2},"121":{"body":28,"breadcrumbs":9,"title":5},"122":{"body":8,"breadcrumbs":6,"title":2},"123":{"body":18,"breadcrumbs":4,"title":1},"124":{"body":78,"breadcrumbs":5,"title":2},"125":{"body":51,"breadcrumbs":5,"title":2},"126":{"body":50,"breadcrumbs":8,"title":5},"127":{"body":3,"breadcrumbs":5,"title":2},"128":{"body":95,"breadcrumbs":4,"title":1},"129":{"body":113,"breadcrumbs":4,"title":1},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":56,"breadcrumbs":5,"title":2},"131":{"body":45,"breadcrumbs":4,"title":1},"132":{"body":65,"breadcrumbs":5,"title":2},"133":{"body":22,"breadcrumbs":7,"title":4},"134":{"body":24,"breadcrumbs":4,"title":1},"135":{"body":45,"breadcrumbs":5,"title":2},"136":{"body":73,"breadcrumbs":5,"title":2},"137":{"body":71,"breadcrumbs":7,"title":4},"138":{"body":38,"breadcrumbs":6,"title":3},"139":{"body":3,"breadcrumbs":5,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":48,"breadcrumbs":6,"title":2},"141":{"body":131,"breadcrumbs":6,"title":2},"142":{"body":58,"breadcrumbs":7,"title":3},"143":{"body":106,"breadcrumbs":5,"title":1},"144":{"body":98,"breadcrumbs":6,"title":2},"145":{"body":99,"breadcrumbs":7,"title":3},"146":{"body":85,"breadcrumbs":6,"title":2},"147":{"body":89,"breadcrumbs":6,"title":2},"148":{"body":71,"breadcrumbs":4,"title":1},"149":{"body":47,"breadcrumbs":5,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":23,"breadcrumbs":5,"title":2},"151":{"body":82,"breadcrumbs":6,"title":3},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":42,"breadcrumbs":6,"title":2},"154":{"body":42,"breadcrumbs":5,"title":1},"155":{"body":46,"breadcrumbs":5,"title":1},"156":{"body":72,"breadcrumbs":6,"title":2},"157":{"body":16,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":4,"title":1},"159":{"body":56,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":5,"title":3},"160":{"body":40,"breadcrumbs":5,"title":2},"161":{"body":87,"breadcrumbs":6,"title":3},"162":{"body":3,"breadcrumbs":5,"title":2},"163":{"body":23,"breadcrumbs":6,"title":2},"164":{"body":112,"breadcrumbs":6,"title":2},"165":{"body":191,"breadcrumbs":6,"title":2},"166":{"body":91,"breadcrumbs":8,"title":4},"167":{"body":4,"breadcrumbs":6,"title":2},"168":{"body":34,"breadcrumbs":6,"title":2},"169":{"body":39,"breadcrumbs":6,"title":2},"17":{"body":21,"breadcrumbs":4,"title":2},"170":{"body":38,"breadcrumbs":6,"title":2},"171":{"body":41,"breadcrumbs":6,"title":2},"172":{"body":25,"breadcrumbs":6,"title":2},"173":{"body":58,"breadcrumbs":5,"title":1},"174":{"body":29,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":99,"breadcrumbs":6,"title":2},"177":{"body":31,"breadcrumbs":6,"title":2},"178":{"body":5,"breadcrumbs":6,"title":2},"179":{"body":103,"breadcrumbs":6,"title":2},"18":{"body":36,"breadcrumbs":3,"title":1},"180":{"body":49,"breadcrumbs":6,"title":2},"181":{"body":22,"breadcrumbs":7,"title":3},"182":{"body":4,"breadcrumbs":6,"title":2},"183":{"body":78,"breadcrumbs":4,"title":1},"184":{"body":62,"breadcrumbs":4,"title":1},"185":{"body":79,"breadcrumbs":4,"title":1},"186":{"body":49,"breadcrumbs":5,"title":2},"187":{"body":51,"breadcrumbs":5,"title":2},"188":{"body":43,"breadcrumbs":5,"title":2},"189":{"body":30,"breadcrumbs":4,"title":1},"19":{"body":78,"breadcrumbs":3,"title":1},"190":{"body":21,"breadcrumbs":5,"title":2},"191":{"body":127,"breadcrumbs":5,"title":2},"192":{"body":202,"breadcrumbs":6,"title":3},"193":{"body":102,"breadcrumbs":4,"title":1},"194":{"body":129,"breadcrumbs":6,"title":3},"195":{"body":92,"breadcrumbs":6,"title":3},"196":{"body":3,"breadcrumbs":5,"title":2},"197":{"body":49,"breadcrumbs":6,"title":2},"198":{"body":71,"breadcrumbs":5,"title":1},"199":{"body":10,"breadcrumbs":6,"title":2},"2":{"body":29,"breadcrumbs":4,"title":2},"20":{"body":89,"breadcrumbs":3,"title":1},"200":{"body":19,"breadcrumbs":4,"title":1},"201":{"body":69,"breadcrumbs":5,"title":2},"202":{"body":43,"breadcrumbs":5,"title":2},"203":{"body":89,"breadcrumbs":7,"title":4},"204":{"body":91,"breadcrumbs":5,"title":2},"205":{"body":4,"breadcrumbs":5,"title":2},"206":{"body":53,"breadcrumbs":4,"title":2},"207":{"body":199,"breadcrumbs":9,"title":4},"208":{"body":41,"breadcrumbs":6,"title":1},"209":{"body":31,"breadcrumbs":7,"title":2},"21":{"body":31,"breadcrumbs":3,"title":1},"210":{"body":105,"breadcrumbs":6,"title":2},"211":{"body":28,"breadcrumbs":5,"title":1},"212":{"body":5,"breadcrumbs":6,"title":2},"213":{"body":169,"breadcrumbs":4,"title":1},"214":{"body":26,"breadcrumbs":4,"title":1},"215":{"body":4,"breadcrumbs":5,"title":2},"216":{"body":30,"breadcrumbs":4,"title":1},"217":{"body":62,"breadcrumbs":7,"title":4},"218":{"body":96,"breadcrumbs":5,"title":2},"219":{"body":33,"breadcrumbs":6,"title":3},"22":{"body":144,"breadcrumbs":4,"title":2},"220":{"body":78,"breadcrumbs":5,"title":2},"221":{"body":41,"breadcrumbs":4,"title":1},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":30,"breadcrumbs":8,"title":3},"224":{"body":59,"breadcrumbs":7,"title":2},"225":{"body":65,"breadcrumbs":7,"title":2},"226":{"body":29,"breadcrumbs":7,"title":2},"227":{"body":24,"breadcrumbs":8,"title":3},"228":{"body":38,"breadcrumbs":6,"title":1},"229":{"body":33,"breadcrumbs":4,"title":2},"23":{"body":136,"breadcrumbs":4,"title":2},"230":{"body":54,"breadcrumbs":6,"title":2},"231":{"body":86,"breadcrumbs":6,"title":2},"232":{"body":21,"breadcrumbs":7,"title":3},"233":{"body":18,"breadcrumbs":6,"title":2},"234":{"body":4,"breadcrumbs":6,"title":2},"235":{"body":22,"breadcrumbs":6,"title":2},"236":{"body":64,"breadcrumbs":5,"title":1},"237":{"body":99,"breadcrumbs":8,"title":4},"238":{"body":276,"breadcrumbs":5,"title":1},"239":{"body":226,"breadcrumbs":5,"title":1},"24":{"body":18,"breadcrumbs":4,"title":2},"240":{"body":55,"breadcrumbs":6,"title":2},"241":{"body":40,"breadcrumbs":5,"title":1},"242":{"body":145,"breadcrumbs":9,"title":5},"243":{"body":40,"breadcrumbs":6,"title":2},"244":{"body":14,"breadcrumbs":6,"title":2},"245":{"body":36,"breadcrumbs":5,"title":1},"246":{"body":58,"breadcrumbs":5,"title":1},"247":{"body":24,"breadcrumbs":7,"title":3},"248":{"body":4,"breadcrumbs":6,"title":2},"249":{"body":44,"breadcrumbs":6,"title":2},"25":{"body":6,"breadcrumbs":4,"title":2},"250":{"body":79,"breadcrumbs":7,"title":3},"251":{"body":29,"breadcrumbs":6,"title":2},"252":{"body":23,"breadcrumbs":6,"title":2},"253":{"body":56,"breadcrumbs":6,"title":2},"254":{"body":39,"breadcrumbs":5,"title":1},"255":{"body":19,"breadcrumbs":5,"title":1},"256":{"body":49,"breadcrumbs":8,"title":3},"257":{"body":188,"breadcrumbs":8,"title":3},"258":{"body":34,"breadcrumbs":7,"title":2},"259":{"body":43,"breadcrumbs":4,"title":2},"26":{"body":26,"breadcrumbs":4,"title":2},"260":{"body":119,"breadcrumbs":6,"title":2},"261":{"body":27,"breadcrumbs":7,"title":3},"262":{"body":47,"breadcrumbs":5,"title":1},"263":{"body":57,"breadcrumbs":7,"title":3},"264":{"body":132,"breadcrumbs":6,"title":2},"265":{"body":68,"breadcrumbs":6,"title":2},"266":{"body":56,"breadcrumbs":6,"title":2},"267":{"body":36,"breadcrumbs":6,"title":2},"268":{"body":40,"breadcrumbs":6,"title":2},"269":{"body":132,"breadcrumbs":6,"title":2},"27":{"body":14,"breadcrumbs":5,"title":3},"270":{"body":52,"breadcrumbs":8,"title":4},"271":{"body":224,"breadcrumbs":8,"title":4},"272":{"body":28,"breadcrumbs":6,"title":2},"273":{"body":74,"breadcrumbs":5,"title":1},"274":{"body":135,"breadcrumbs":5,"title":1},"275":{"body":28,"breadcrumbs":4,"title":1},"276":{"body":48,"breadcrumbs":4,"title":1},"277":{"body":86,"breadcrumbs":4,"title":1},"278":{"body":103,"breadcrumbs":4,"title":1},"279":{"body":105,"breadcrumbs":4,"title":1},"28":{"body":120,"breadcrumbs":4,"title":2},"280":{"body":39,"breadcrumbs":4,"title":1},"281":{"body":20,"breadcrumbs":5,"title":2},"282":{"body":81,"breadcrumbs":6,"title":2},"283":{"body":99,"breadcrumbs":5,"title":1},"284":{"body":235,"breadcrumbs":5,"title":1},"285":{"body":90,"breadcrumbs":8,"title":4},"286":{"body":117,"breadcrumbs":7,"title":3},"287":{"body":154,"breadcrumbs":8,"title":4},"288":{"body":149,"breadcrumbs":6,"title":2},"289":{"body":25,"breadcrumbs":8,"title":4},"29":{"body":64,"breadcrumbs":4,"title":2},"290":{"body":22,"breadcrumbs":5,"title":1},"291":{"body":32,"breadcrumbs":5,"title":1},"292":{"body":12,"breadcrumbs":6,"title":2},"293":{"body":59,"breadcrumbs":8,"title":3},"294":{"body":202,"breadcrumbs":6,"title":1},"295":{"body":173,"breadcrumbs":9,"title":4},"296":{"body":30,"breadcrumbs":7,"title":2},"297":{"body":36,"breadcrumbs":7,"title":2},"298":{"body":46,"breadcrumbs":6,"title":2},"299":{"body":78,"breadcrumbs":6,"title":2},"3":{"body":20,"breadcrumbs":6,"title":2},"30":{"body":114,"breadcrumbs":5,"title":3},"300":{"body":122,"breadcrumbs":5,"title":1},"301":{"body":13,"breadcrumbs":5,"title":1},"302":{"body":126,"breadcrumbs":5,"title":1},"303":{"body":13,"breadcrumbs":5,"title":1},"304":{"body":23,"breadcrumbs":5,"title":1},"305":{"body":3,"breadcrumbs":5,"title":1},"306":{"body":19,"breadcrumbs":6,"title":2},"307":{"body":135,"breadcrumbs":6,"title":2},"308":{"body":126,"breadcrumbs":7,"title":3},"309":{"body":24,"breadcrumbs":7,"title":3},"31":{"body":105,"breadcrumbs":4,"title":2},"310":{"body":19,"breadcrumbs":5,"title":1},"311":{"body":7,"breadcrumbs":6,"title":2},"312":{"body":19,"breadcrumbs":8,"title":3},"313":{"body":81,"breadcrumbs":6,"title":1},"314":{"body":34,"breadcrumbs":7,"title":2},"315":{"body":42,"breadcrumbs":6,"title":1},"316":{"body":30,"breadcrumbs":6,"title":2},"317":{"body":106,"breadcrumbs":5,"title":1},"318":{"body":31,"breadcrumbs":5,"title":1},"319":{"body":76,"breadcrumbs":7,"title":3},"32":{"body":139,"breadcrumbs":3,"title":1},"320":{"body":20,"breadcrumbs":6,"title":2},"321":{"body":19,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":5,"title":2},"323":{"body":89,"breadcrumbs":4,"title":1},"324":{"body":152,"breadcrumbs":5,"title":2},"325":{"body":36,"breadcrumbs":5,"title":2},"326":{"body":82,"breadcrumbs":5,"title":2},"327":{"body":80,"breadcrumbs":5,"title":2},"328":{"body":70,"breadcrumbs":5,"title":2},"329":{"body":13,"breadcrumbs":6,"title":3},"33":{"body":84,"breadcrumbs":4,"title":2},"330":{"body":8,"breadcrumbs":5,"title":2},"331":{"body":79,"breadcrumbs":4,"title":1},"332":{"body":111,"breadcrumbs":5,"title":2},"333":{"body":33,"breadcrumbs":5,"title":2},"334":{"body":34,"breadcrumbs":6,"title":2},"335":{"body":89,"breadcrumbs":5,"title":1},"336":{"body":54,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":5,"title":1},"338":{"body":20,"breadcrumbs":6,"title":2},"339":{"body":22,"breadcrumbs":6,"title":2},"34":{"body":91,"breadcrumbs":4,"title":2},"340":{"body":7,"breadcrumbs":6,"title":2},"341":{"body":31,"breadcrumbs":6,"title":3},"342":{"body":93,"breadcrumbs":4,"title":1},"343":{"body":16,"breadcrumbs":5,"title":2},"344":{"body":68,"breadcrumbs":4,"title":1},"345":{"body":36,"breadcrumbs":5,"title":2},"346":{"body":19,"breadcrumbs":4,"title":1},"347":{"body":94,"breadcrumbs":5,"title":2},"348":{"body":74,"breadcrumbs":5,"title":2},"349":{"body":67,"breadcrumbs":5,"title":2},"35":{"body":12,"breadcrumbs":3,"title":1},"350":{"body":36,"breadcrumbs":5,"title":2},"351":{"body":25,"breadcrumbs":4,"title":1},"352":{"body":37,"breadcrumbs":7,"title":4},"353":{"body":21,"breadcrumbs":6,"title":3},"354":{"body":34,"breadcrumbs":5,"title":2},"355":{"body":102,"breadcrumbs":6,"title":3},"356":{"body":28,"breadcrumbs":5,"title":2},"357":{"body":19,"breadcrumbs":5,"title":2},"358":{"body":56,"breadcrumbs":5,"title":2},"359":{"body":46,"breadcrumbs":6,"title":3},"36":{"body":69,"breadcrumbs":4,"title":2},"360":{"body":74,"breadcrumbs":5,"title":2},"361":{"body":36,"breadcrumbs":5,"title":2},"362":{"body":133,"breadcrumbs":4,"title":2},"363":{"body":70,"breadcrumbs":4,"title":2},"364":{"body":64,"breadcrumbs":6,"title":4},"365":{"body":3,"breadcrumbs":4,"title":2},"366":{"body":45,"breadcrumbs":6,"title":3},"367":{"body":19,"breadcrumbs":5,"title":2},"368":{"body":32,"breadcrumbs":5,"title":2},"369":{"body":43,"breadcrumbs":7,"title":4},"37":{"body":28,"breadcrumbs":4,"title":2},"370":{"body":30,"breadcrumbs":7,"title":4},"371":{"body":17,"breadcrumbs":8,"title":5},"372":{"body":14,"breadcrumbs":6,"title":3},"373":{"body":101,"breadcrumbs":6,"title":3},"374":{"body":71,"breadcrumbs":8,"title":5},"375":{"body":82,"breadcrumbs":8,"title":5},"376":{"body":111,"breadcrumbs":9,"title":6},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":0,"breadcrumbs":3,"title":1},"379":{"body":11,"breadcrumbs":3,"title":1},"38":{"body":24,"breadcrumbs":4,"title":2},"380":{"body":13,"breadcrumbs":3,"title":1},"381":{"body":17,"breadcrumbs":3,"title":1},"382":{"body":25,"breadcrumbs":3,"title":1},"383":{"body":47,"breadcrumbs":4,"title":2},"384":{"body":47,"breadcrumbs":3,"title":2},"385":{"body":70,"breadcrumbs":2,"title":1},"386":{"body":46,"breadcrumbs":7,"title":4},"387":{"body":46,"breadcrumbs":5,"title":3},"388":{"body":16,"breadcrumbs":5,"title":3},"389":{"body":27,"breadcrumbs":5,"title":3},"39":{"body":39,"breadcrumbs":4,"title":2},"4":{"body":18,"breadcrumbs":6,"title":2},"40":{"body":32,"breadcrumbs":4,"title":2},"41":{"body":27,"breadcrumbs":4,"title":2},"42":{"body":446,"breadcrumbs":5,"title":3},"43":{"body":183,"breadcrumbs":5,"title":3},"44":{"body":133,"breadcrumbs":4,"title":2},"45":{"body":34,"breadcrumbs":3,"title":1},"46":{"body":30,"breadcrumbs":2,"title":1},"47":{"body":66,"breadcrumbs":3,"title":1},"48":{"body":52,"breadcrumbs":4,"title":2},"49":{"body":31,"breadcrumbs":4,"title":2},"5":{"body":9,"breadcrumbs":8,"title":4},"50":{"body":6,"breadcrumbs":3,"title":1},"51":{"body":42,"breadcrumbs":4,"title":2},"52":{"body":0,"breadcrumbs":3,"title":1},"53":{"body":36,"breadcrumbs":3,"title":1},"54":{"body":59,"breadcrumbs":3,"title":1},"55":{"body":45,"breadcrumbs":6,"title":4},"56":{"body":28,"breadcrumbs":4,"title":2},"57":{"body":21,"breadcrumbs":3,"title":1},"58":{"body":34,"breadcrumbs":4,"title":2},"59":{"body":56,"breadcrumbs":4,"title":2},"6":{"body":10,"breadcrumbs":8,"title":4},"60":{"body":3,"breadcrumbs":4,"title":2},"61":{"body":94,"breadcrumbs":3,"title":1},"62":{"body":3,"breadcrumbs":4,"title":2},"63":{"body":45,"breadcrumbs":3,"title":1},"64":{"body":11,"breadcrumbs":4,"title":2},"65":{"body":26,"breadcrumbs":3,"title":1},"66":{"body":41,"breadcrumbs":4,"title":2},"67":{"body":84,"breadcrumbs":3,"title":1},"68":{"body":90,"breadcrumbs":4,"title":2},"69":{"body":40,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":9,"title":5},"70":{"body":24,"breadcrumbs":4,"title":1},"71":{"body":69,"breadcrumbs":5,"title":2},"72":{"body":35,"breadcrumbs":6,"title":3},"73":{"body":41,"breadcrumbs":5,"title":2},"74":{"body":3,"breadcrumbs":5,"title":2},"75":{"body":36,"breadcrumbs":4,"title":1},"76":{"body":41,"breadcrumbs":5,"title":2},"77":{"body":61,"breadcrumbs":5,"title":2},"78":{"body":44,"breadcrumbs":5,"title":2},"79":{"body":30,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":56,"breadcrumbs":6,"title":2},"81":{"body":42,"breadcrumbs":5,"title":1},"82":{"body":75,"breadcrumbs":6,"title":2},"83":{"body":68,"breadcrumbs":5,"title":1},"84":{"body":49,"breadcrumbs":5,"title":1},"85":{"body":27,"breadcrumbs":5,"title":1},"86":{"body":6,"breadcrumbs":6,"title":2},"87":{"body":68,"breadcrumbs":6,"title":2},"88":{"body":59,"breadcrumbs":5,"title":1},"89":{"body":3,"breadcrumbs":6,"title":2},"9":{"body":39,"breadcrumbs":8,"title":3},"90":{"body":32,"breadcrumbs":4,"title":1},"91":{"body":83,"breadcrumbs":4,"title":1},"92":{"body":37,"breadcrumbs":4,"title":1},"93":{"body":60,"breadcrumbs":4,"title":1},"94":{"body":44,"breadcrumbs":5,"title":2},"95":{"body":43,"breadcrumbs":6,"title":3},"96":{"body":24,"breadcrumbs":6,"title":3},"97":{"body":156,"breadcrumbs":4,"title":1},"98":{"body":94,"breadcrumbs":6,"title":3},"99":{"body":73,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"This is the Move Book - a comprehensive guide to the Move programming language and the Sui blockchain. The book is intended for developers who are interested in learning about Move and building on Sui. The book is in active development and a work in progress. If you have any feedback or suggestions, feel free to open an issue or a pull request on the GitHub repository . If you're looking for The Move Reference, you can find it here .","breadcrumbs":"The Move Book » The Move Book","id":"0","title":"The Move Book"},"1":{"body":"This book is dedicated to Move, a smart contract language that captures the essence of safe programming with digital assets. Move is designed around the following values: Secure by default: Insecure languages are a serious barrier both to accessible smart contract development and to mainstream adoption of digital assets. The first duty of a smart contract language is to prevent as many potential safety issues as possible (e.g. re-entrancy, missing access control checks, arithmetic overflow, ...) by construction. Any changes to Move should preserve or enhance its existing security guarantees. Expressive by nature: Move must enable programmers to write any smart contract they can imagine. But we care as much about the way it feels to write Move as we do about what Move allows you to do - the language should be rich enough that the features needed for a task are available, and minimal enough that the choice is obvious. The Move toolchain should be a productivity enhancer and a thought partner. Intuitive for all: Smart contracts are only one part of a useful application. Move should understand the broader context of its usage and design with both the smart contract developer and the application developer in mind. It should be easy for developers to learn how to read Move-managed state, build Move powered transactions, and write new Move code. The core technical elements of Move are: Safe, familiar, and flexible abstractions for digital assets via programmable objects . A rich ability system (inspired by linear types) that gives programmers extreme control of how values are created, destroyed, stored, copied, and transferred. A module system with strong encapsulation features to enable code reuse while maintaining this control. Dynamic fields for creating hierarchical relationships between objects. Programmable transaction blocks (PTBs) to enable atomic client-side composition of Move-powered APIs. Move was born in 2018 as part of Facebook's Libra project. It was publicly revealed in 2019, the first Move-powered network launched in 2020. As of April 2024, there are numerous Move-powered chains in production with several more in the works. Move is an embedded language with a platform-agnostic core, which means it takes on a slightly different personality in each chain that uses it. Creating a new programming language and bootstrapping a community around it is an ambitious, long term project. A language has to be an order of magnitude better than alternatives in relevant ways to have a chance, but even then the quality of the community matters more than the technical fundamentals. Move is a young language, but it's off to a good start in terms of both differentiation and community. A small, but fanatical group of smart contract programmers and core contributors united by the Move values are pushing the boundaries of what smart contracts can do, the applications they can enable, and who can (safely) write them. If that inspires you, read on! — Sam Blackshear, creator of Move","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move (Extension) is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"Structs in the Move Reference.","breadcrumbs":"Move Basics » Struct » Further reading","id":"100","title":"Further reading"},"101":{"body":"Move has a unique type system which allows customizing type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . Throughout the book you will see chapters with name Ability: , where is the name of the ability. These chapters will cover the ability in detail, how it works, and how to use it in Move.","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities: Introduction","id":"101","title":"Abilities: Introduction"},"102":{"body":"Abilities are a way to allow certain behaviors for a type. They are a part of the struct declaration and define which behaviours are allowed for the instances of the struct.","breadcrumbs":"Move Basics » Abilities: Introduction » What are Abilities?","id":"102","title":"What are Abilities?"},"103":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store, each of them is used to define a specific behaviour for the struct instances. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities syntax","id":"103","title":"Abilities syntax"},"104":{"body":"A quick overview of the abilities: All of the built-in types, except references, have copy, drop and store abilities. References have copy and drop. copy - allows the struct to be copied . Explained in the Ability: Copy chapter. drop - allows the struct to be dropped or discarded . Explained in the Ability: Drop chapter. key - allows the struct to be used as a key in a storage. Explained in the Ability: Key chapter. store - allows the struct to be stored in structs with the key ability. Explained in the Ability: Store chapter. While it is important to mention them here, we will go in detail about each ability in the following chapters and give a proper context on how to use them.","breadcrumbs":"Move Basics » Abilities: Introduction » Overview","id":"104","title":"Overview"},"105":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it can only be passed around and requires special handling. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the Hot Potato chapter.","breadcrumbs":"Move Basics » Abilities: Introduction » No abilities","id":"105","title":"No abilities"},"106":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Abilities: Introduction » Further reading","id":"106","title":"Further reading"},"107":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. public struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. public struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Move Basics » Ability: Drop » Abilities: Drop","id":"107","title":"Abilities: Drop"},"108":{"body":"All native types in Move have the drop ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the drop ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Drop » Types with the drop Ability","id":"108","title":"Types with the drop Ability"},"109":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Drop » Further reading","id":"109","title":"Further reading"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Move Basics » Importing Modules » Importing Modules","id":"110","title":"Importing Modules"},"111":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} Another module defined in the same package can import the first module using the use keyword. // File: sources/module_two.move\nmodule book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module","id":"111","title":"Importing a Module"},"112":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing Members","id":"112","title":"Importing Members"},"113":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Grouping Imports","id":"113","title":"Grouping Imports"},"114":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Resolving Name Conflicts","id":"114","title":"Resolving Name Conflicts"},"115":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Move Basics » Importing Modules » Adding an External Dependency","id":"115","title":"Adding an External Dependency"},"116":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module from Another Package","id":"116","title":"Importing a Module from Another Package"},"117":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which do not interact with the storage, but provide basic tools for working and manipulating the data. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Move Basics » Standard Library » Standard Library","id":"117","title":"Standard Library"},"118":{"body":"In this book we go into detail about most of the modules in the Standard Library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements it. Module Description Chapter std::string Provides basic string operations String std::ascii Provides basic ASCII operations String std::option Implements an Option Option std::vector Native operations on the vector type Vector std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::type_name Allows runtime type reflection Type Reflection std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::debug Contains debugging functions, which are available in only in test mode Debugging std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Move Basics » Standard Library » Most Common Modules","id":"118","title":"Most Common Modules"},"119":{"body":"Standard Library exports one named address - std = 0x1. [addresses]\nstd = \"0x1\"","breadcrumbs":"Move Basics » Standard Library » Exported Addresses","id":"119","title":"Exported Addresses"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"Some of the modules are imported implicitly, and are available in the module without explicit use import. For Standard Library, these modules and types are: std::vector std::option std::option::Option","breadcrumbs":"Move Basics » Standard Library » Implicit Imports","id":"120","title":"Implicit Imports"},"121":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Move Basics » Standard Library » Importing std without Sui Framework","id":"121","title":"Importing std without Sui Framework"},"122":{"body":"The source code of the Move Standard Library is available in the Sui repository .","breadcrumbs":"Move Basics » Standard Library » Source Code","id":"122","title":"Source Code"},"123":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Move Basics » Vector » Vector","id":"123","title":"Vector"},"124":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). // An empty vector of bool elements.\nlet empty: vector = vector[]; // A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; // A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Move Basics » Vector » Vector syntax","id":"124","title":"Vector syntax"},"125":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0);\nassert!(!v.is_empty(), 1); v.push_back(40);\nlet last_value = v.pop_back(); assert!(last_value == 40, 2);","breadcrumbs":"Move Basics » Vector » Vector operations","id":"125","title":"Vector operations"},"126":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. /// A struct without `drop` ability. public struct NoDrop {} #[test] fun test_destroy_empty() { // Initialize a vector of `NoDrop` elements. let v = vector[]; // While we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }","breadcrumbs":"Move Basics » Vector » Destroying a Vector of non-droppable types","id":"126","title":"Destroying a Vector of non-droppable types"},"127":{"body":"Vector in the Move Reference.","breadcrumbs":"Move Basics » Vector » Further reading","id":"127","title":"Further reading"},"128":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library , and is defined as follows: File: move-stdlib/source/option.move // File: move-stdlib/source/option.move\n/// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The 'std::option' module is implicitly imported in every module, and you don't need to add an import. The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Move Basics » Option » Option","id":"128","title":"Option"},"129":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; /// A struct representing a user record. public struct User has drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Move Basics » Option » In Practice","id":"129","title":"In Practice"},"13":{"body":"The Web-based IDE from Github can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. // `option::some` creates an `Option` value with a value.\nlet mut opt = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(opt.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option, leaving the option empty.\nlet inner = opt.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt.is_none(), 2);","breadcrumbs":"Move Basics » Option » Using Option","id":"130","title":"Using Option"},"131":{"body":"While Move does not have a built-in type to represent strings, it does have two standard implementations for strings in the Standard Library . The std::string module defines a String type and methods for UTF-8 encoded strings, and the second module, std::ascii, provides an ASCII String type and its methods. Sui execution environment automatically converts bytevector into String in transaction inputs. So in many cases, a String does not need to be constructed in the Transaction Block .","breadcrumbs":"Move Basics » String » String","id":"131","title":"String"},"132":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide safety checks and methods to work with strings, but at the end of the day, they are just vectors of bytes. module book::custom_string { /// Anyone can implement a custom string-like type by wrapping a vector. public struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n}","breadcrumbs":"Move Basics » String » Strings are bytes","id":"132","title":"Strings are bytes"},"133":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module, which is fully implemented in Move.","breadcrumbs":"Move Basics » String » Working with UTF-8 Strings","id":"133","title":"Working with UTF-8 Strings"},"134":{"body":"The String type in the std::string module is defined as follows: // File: move-stdlib/sources/string.move\n/// A `String` holds a sequence of bytes which is guaranteed to be in utf8 format.\npublic struct String has copy, drop, store { bytes: vector,\n}","breadcrumbs":"Move Basics » String » Definition","id":"134","title":"Definition"},"135":{"body":"To create a new UTF-8 String instance, you can use the string::utf8 method. The Standard Library provides an alias .to_string() on the vector for convenience. // the module is `std::string` and the type is `String`\nuse std::string::{Self, String}; // strings are normally created using the `utf8` function\n// type declaration is not necessary, we put it here for clarity\nlet hello: String = string::utf8(b\"Hello\"); // The `.to_string()` alias on the `vector` is more convenient\nlet hello = b\"Hello\".to_string();","breadcrumbs":"Move Basics » String » Creating a String","id":"135","title":"Creating a String"},"136":{"body":"UTF8 String provides a number of methods to work with strings. The most common operations on strings are: concatenation, slicing, and getting the length. Additionally, for custom string operations, the bytes() method can be used to get the underlying byte vector. let mut str = b\"Hello,\".to_string();\nlet another = b\" World!\".to_string(); // append(String) adds the content to the end of the string\nstr.append(another); // `sub_string(start, end)` copies a slice of the string\nstr.sub_string(0, 5); // \"Hello\" // `length()` returns the number of bytes in the string\nstr.length(); // 12 (bytes) // methods can also be chained! Get a length of a substring\nstr.sub_string(0, 5).length(); // 5 (bytes) // whether the string is empty\nstr.is_empty(); // false // get the underlying byte vector for custom operations\nlet bytes: &vector = str.bytes();","breadcrumbs":"Move Basics » String » Common Operations","id":"136","title":"Common Operations"},"137":{"body":"The default utf8 method may abort if the bytes passed into it are not valid UTF-8. If you are not sure that the bytes you are passing are valid, you should use the try_utf8 method instead. It returns an Option, which contains no value if the bytes are not valid UTF-8, and a string otherwise. Hint: the name that starts with try_* indicates that the function returns an Option with the expected result or none if the operation fails. It is a common naming convention borrowed from Rust. // this is a valid UTF-8 string\nlet hello = b\"Hello\".try_to_string(); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string\nlet invalid = b\"\\xFF\".try_to_string(); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8","breadcrumbs":"Move Basics » String » Safe UTF-8 Operations","id":"137","title":"Safe UTF-8 Operations"},"138":{"body":"The string module does not provide a way to access individual characters in a string. This is because UTF-8 is a variable-length encoding, and the length of a character can be anywhere from 1 to 4 bytes. Similarly, the length() method returns the number of bytes in the string, not the number of characters. However, methods like sub_string and insert check character boundaries and will abort when the index is in the middle of a character.","breadcrumbs":"Move Basics » String » UTF-8 Limitations","id":"138","title":"UTF-8 Limitations"},"139":{"body":"This section is coming soon!","breadcrumbs":"Move Basics » String » ASCII Strings","id":"139","title":"ASCII Strings"},"14":{"body":"Move 2024 is the new edition of the Move language maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the changes and improvements in the new edition.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Move Basics » Control Flow » Control Flow","id":"140","title":"Control Flow"},"141":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; } Let's see how we can use if and else to assign a value to a variable: #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); } Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Move Basics » Control Flow » Conditional Statements","id":"141","title":"Conditional Statements"},"142":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Move Basics » Control Flow » Repeating Statements with Loops","id":"142","title":"Repeating Statements with Loops"},"143":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () { ; }; Here is an example of a while loop with a very simple condition: // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(mut x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; x = x + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }","breadcrumbs":"Move Basics » Control Flow » The while loop","id":"143","title":"The while loop"},"144":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop { ; }; Let's rewrite the previous example using loop instead of while: #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Move Basics » Control Flow » Infinite loop","id":"144","title":"Infinite loop"},"145":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is (without a semicolon): break The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break // Exit the loop. } }; assert!(x == 5, 0); } Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Move Basics » Control Flow » Exiting a Loop Early","id":"145","title":"Exiting a Loop Early"},"146":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is (without a semicolon): continue The example below skips odd numbers and prints only even numbers from 0 to 10: #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue // Skip the rest of the iteration. }; std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break // Exit the loop. } }; assert!(x == 10, 0); // 10 } break and continue statements can be used in both while and loop loops.","breadcrumbs":"Move Basics » Control Flow » Skipping an Iteration","id":"146","title":"Skipping an Iteration"},"147":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return Here is an example of a function that returns a value when a certain condition is met: /// This function returns `true` if `x` is greater than 0 and not 5, /// otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false }; if (x > 0) { return true }; false } #[test] fun test_return() { assert!(is_positive(5) == false, 0); assert!(is_positive(0) == false, 0); assert!(is_positive(1) == true, 0); } Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Move Basics » Control Flow » Early Return","id":"147","title":"Early Return"},"148":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to static values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are stored in the module's bytecode, and each time they are used, the value is copied. module book::shop_price { use sui::coin::Coin; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// The owner of the shop, an address. const SHOP_OWNER: address = @0xa11ce; /// An item sold in the shop. public struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); transfer::public_transfer(coin, SHOP_OWNER); Item { /* ... */ } }\n}","breadcrumbs":"Move Basics » Constants » Constants","id":"148","title":"Constants"},"149":{"body":"Constants must start with a capital letter - this is enforced at the compiler level. For constants used as a value, there's a convention to use uppercase letters and underscores to separate words. It's a way to make constants stand out from other identifiers in the code. One exception is made for error constants , which are written in ECamelCase. /// Price of the item used at the shop.\nconst ITEM_PRICE: u64 = 100; /// Error constant.\nconst EItemNotFound: u64 = 1;","breadcrumbs":"Move Basics » Constants » Naming Convention","id":"149","title":"Naming Convention"},"15":{"body":"In this chapter, you will learn how to create a new package, write a simple module, compile it, and run tests with the Move CLI. Make sure you have installed Sui and set up your IDE environment . Run the command below to test if Sui has been installed correctly. # It should print the client version. E.g. sui-client 1.22.0-036299745.\nsui client --version Move CLI is a command-line interface for the Move language; it is built into the Sui binary and provides a set of commands to manage packages, compile and test code. The structure of the chapter is as follows: Create a New Package Directory Structure Compiling the Package Running Tests","breadcrumbs":"Hello, World! » Hello, World!","id":"15","title":"Hello, World!"},"150":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Move Basics » Constants » Constants are Immutable","id":"150","title":"Constants are Immutable"},"151":{"body":"A common use case for an application is to define a set of constants that are used throughout the codebase. But due to constants being private to the module, they can't be accessed from other modules. One way to solve this is to define a \"config\" module that exports the constants. module book::config { const ITEM_PRICE: u64 = 100; const TAX_RATE: u64 = 10; const SHIPPING_COST: u64 = 5; /// Returns the price of an item. public fun item_price(): u64 { ITEM_PRICE } /// Returns the tax rate. public fun tax_rate(): u64 { TAX_RATE } /// Returns the shipping cost. public fun shipping_cost(): u64 { SHIPPING_COST }\n} This way other modules can import and read the constants, and the update process is simplified. If the constants need to be changed, only the config module needs to be updated during the package upgrade.","breadcrumbs":"Move Basics » Constants » Using Config Pattern","id":"151","title":"Using Config Pattern"},"152":{"body":"Constants in the Move Reference Coding conventions for constants","breadcrumbs":"Move Basics » Constants » Links","id":"152","title":"Links"},"153":{"body":"A transaction can either succeed or fail. Successful execution applies all the changes made to objects and on-chain data, and the transaction is committed to the blockchain. Alternatively, if a transaction aborts, the changes are not applied. The abort keyword is used to abort a transaction and revert the changes made so far. It is important to note that there is no catch mechanism in Move. If a transaction aborts, the changes made so far are reverted, and the transaction is considered failed.","breadcrumbs":"Move Basics » Aborting Execution » Aborting Execution","id":"153","title":"Aborting Execution"},"154":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(1)\n}; The code above will, of course, abort with abort code 1.","breadcrumbs":"Move Basics » Aborting Execution » Abort","id":"154","title":"Abort"},"155":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. The code argument is required and has to be a u64 value. // aborts if `user_has_access` is `false` with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Move Basics » Aborting Execution » assert!","id":"155","title":"assert!"},"156":{"body":"To make error codes more descriptive, it is a good practice to define error constants . Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constants are no different from other constants and don't have special handling, however, they are used to increase the readability of the code and make it easier to understand the abort scenarios. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; /// Updates a record.\npublic fun update_record(/* ... , */ user_has_access: bool, field_exists: bool) { // asserts are way more readable now assert!(user_has_access, ENoAccess); assert!(field_exists, ENoField); /* ... */\n}","breadcrumbs":"Move Basics » Aborting Execution » Error constants","id":"156","title":"Error constants"},"157":{"body":"Abort and Assert in the Move Reference. We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Move Basics » Aborting Execution » Further reading","id":"157","title":"Further reading"},"158":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Move Basics » Function » Function","id":"158","title":"Function"},"159":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Move Basics » Function » Function declaration","id":"159","title":"Function declaration"},"16":{"body":"To create a new program, we will use the sui move new command followed by the name of the application. Our first program will be called hello_world. Note: In this and other chapters, if you see code blocks with lines starting with $ (dollar sign), it means that the following command should be run in a terminal. The sign should not be included. It's a common way of showing commands in terminal environments. $ sui move new hello_world The sui move command gives access to the Move CLI - a built-in compiler, test runner and a utility for all things Move. The new command followed by the name of the package will create a new package in a new folder. In our case, the folder name is \"hello_world\". We can view the contents of the folder to see that the package was created successfully. $ ls -l hello_world\nMove.toml\nsources\ntests","breadcrumbs":"Hello, World! » Create a New Package","id":"16","title":"Create a New Package"},"160":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Move Basics » Function » Accessing functions","id":"160","title":"Accessing functions"},"161":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // Tuple must be destructured to access its elements.\n// Name and age are declared as immutable variables.\nlet (name, age) = get_name_and_age();\nassert!(name == b\"John\", 0);\nassert!(age == 25, 0); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, only use the age\nlet (_, age) = get_name_and_age();","breadcrumbs":"Move Basics » Function » Multiple return values","id":"161","title":"Multiple return values"},"162":{"body":"Functions in the Move Reference.","breadcrumbs":"Move Basics » Function » Further reading","id":"162","title":"Further reading"},"163":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Move Basics » Struct Methods » Struct Methods","id":"163","title":"Struct Methods"},"164":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Move Basics » Struct Methods » Method syntax","id":"164","title":"Method syntax"},"165":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun function_path as Type.method_name; // exported alias\npublic use fun function_path as Type.method_name; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. public struct Hero has drop { health: u8, } /// A struct representing a villain. public struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let hero = new_hero(); assert!(hero.health() == 100, 1); let villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Move Basics » Struct Methods » Method Aliases","id":"165","title":"Method Aliases"},"166":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. // TODO: better example (external module...)\nmodule book::hero_to_bytes { // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. // public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { // let mut hero = new(); // let serialized = hero.to_bytes(); // assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Move Basics » Struct Methods » Aliasing an external module's method","id":"166","title":"Aliasing an external module's method"},"167":{"body":"Method Syntax in the Move Reference.","breadcrumbs":"Move Basics » Struct Methods » Further reading","id":"167","title":"Further reading"},"168":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or public(package) - visible in the modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Move Basics » Visibility Modifiers » Visibility Modifiers","id":"168","title":"Visibility Modifiers"},"169":{"body":"A function or a struct defined in a module which has no visibility modifier is private to the module. It can't be called from other modules. module book::internal_visibility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} module book::try_calling_internal { use book::internal_visibility; // Different module -> can't call internal() fun try_calling_internal() { internal_visibility::internal(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Internal Visibility","id":"169","title":"Internal Visibility"},"17":{"body":"Move CLI will create a scaffold of the application and pre-create the directory structure and all necessary files. Let's see what's inside. hello_world\n├── Move.toml\n├── sources\n│ └── hello_world.move\n└── tests └── hello_world_tests.move","breadcrumbs":"Hello, World! » Directory Structure","id":"17","title":"Directory Structure"},"170":{"body":"A struct or a function can be made public by adding the public keyword before the fun or struct keyword. module book::public_visibility { // This function can be called from other modules public fun public() { /* ... */ }\n} A public function can be imported and called from other modules. The following code will compile: module book::try_calling_public { use book::public_visibility; // Different module -> can call public() fun try_calling_public() { public_visibility::public(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Public Visibility","id":"170","title":"Public Visibility"},"171":{"body":"Move 2024 introduces the package visibility modifier. A function with package visibility can be called from any module within the same package. It can't be called from other packages. module book::package_visibility { public(package) fun package_only() { /* ... */ }\n} A package function can be called from any module within the same package: module book::try_calling_package { use book::package_visibility; // Same package `book` -> can call package_only() fun try_calling_package() { package_visibility::package_only(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Package Visibility","id":"171","title":"Package Visibility"},"172":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership and Scope","id":"172","title":"Ownership and Scope"},"173":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here #[test] fun test_owner() { owner(); // a is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership","id":"173","title":"Ownership"},"174":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Move Basics » Ownership and Scope » Returning a Value","id":"174","title":"Returning a Value"},"175":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Passing by Value","id":"175","title":"Passing by Value"},"176":{"body":"Each function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Scopes with Blocks","id":"176","title":"Scopes with Blocks"},"177":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Move Basics » Ownership and Scope » Copyable Types","id":"177","title":"Copyable Types"},"178":{"body":"Local Variables and Scopes in the Move Reference.","breadcrumbs":"Move Basics » Ownership and Scope » Further reading","id":"178","title":"Further reading"},"179":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator let Copyable {} = a; // doesn't have `drop`\nlet Copyable {} = b; // doesn't have `drop`\nlet Copyable {} = c; // doesn't have `drop` In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Move Basics » Ability: Copy » Abilities: Copy","id":"179","title":"Abilities: Copy"},"18":{"body":"The Move.toml file, known as the package manifest , contains definitions and configuration settings for the package. It is used by the Move Compiler to manage package metadata, fetch dependencies, and register named addresses. We will explain it in detail in the Concepts chapter. By default, the package features one named address - the name of the package. [addresses]\nhello_world = \"0x0\"","breadcrumbs":"Hello, World! » Manifest","id":"18","title":"Manifest"},"180":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Move Basics » Ability: Copy » Copying and Drop","id":"180","title":"Copying and Drop"},"181":{"body":"All native types in Move have the copy ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the copy ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Copy » Types with the copy Ability","id":"181","title":"Types with the copy Ability"},"182":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Copy » Further reading","id":"182","title":"Further reading"},"183":{"body":"In the Ownership and Scope section, we explained that when a value is passed to a function, it is moved to the function's scope. This means that the function becomes the owner of the value, and the original scope (owner) can no longer use it. This is an important concept in Move, as it ensures that the value is not used in multiple places at the same time. However, there are use cases when we want to pass a value to a function but retain the ownership. This is where references come into play. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty","breadcrumbs":"Move Basics » References » References","id":"183","title":"References"},"184":{"body":"The initial layout of the metro pass application is simple. We define the Card type and the USES constant that represents the number of rides for a single card. We also add an error constant for the case when the card is empty. module book::metro_pass { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card public struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } }\n}","breadcrumbs":"Move Basics » References » Layout","id":"184","title":"Layout"},"185":{"body":"References are a way to show a value to a function without giving up the ownership. In our case, when we show the Card to the inspector, we don't want to give up the ownership of it, and we don't allow them to spend the rides. We just want to allow reading the value of the Card and prove its ownership. To do so, in the function signature, we use the & symbol to indicate that we are passing a reference to the value, not the value itself. /// Show the metro pass card to the inspector. public fun is_valid(card: &Card): bool { card.uses > 0 } Now the function can't take the ownership of the card, and it can't spend the rides. But it can read its value. Worth noting, that a signature like this makes it impossible to call the function without a Card at all. This is an important property which allows the Capability Pattern which we will cover in the next chapters.","breadcrumbs":"Move Basics » References » Reference","id":"185","title":"Reference"},"186":{"body":"In some cases, we want to allow the function to change the value of the Card. For example, when we use the Card at the turnstile, we want to spend a ride. To implement it, we use the &mut keyword in the function signature. /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } As you can see in the function body, the &mut reference allows mutating the value, and the function can spend the rides.","breadcrumbs":"Move Basics » References » Mutable Reference","id":"186","title":"Mutable Reference"},"187":{"body":"Lastly, let's give an illustration of what happens when we pass the value itself to the function. In this case, the function takes the ownership of the value, and the original scope can no longer use it. The owner of the Card can recycle it, and, hence, lose the ownership. /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } In the recycle function, the Card is taken by value and can be unpacked and destroyed. The original scope can't use it anymore.","breadcrumbs":"Move Basics » References » Passing by Value","id":"187","title":"Passing by Value"},"188":{"body":"To illustrate the full flow of the application, let's put all the pieces together in a test. #[test] fun test_card_2024() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.is_valid(), 0); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }","breadcrumbs":"Move Basics » References » Full Example","id":"188","title":"Full Example"},"189":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Move Basics » Generics » Generics","id":"189","title":"Generics"},"19":{"body":"The sources/ directory contains the source files. Move source files have .move extension, and are typically named after the module defined in the file. For example, in our case, the file name is hello_world.move and the Move CLI has already placed commented out code inside: /*\n/// Module: hello_world\nmodule hello_world::hello_world { }\n*/ The /* and */ are the comment delimiters in Move. Everything in between is ignored by the compiler and can be used for documentation or notes. We explain all ways to comment the code in the Basic Syntax . The commented out code is a module definition, it starts with the keyword module followed by a named address (or an address literal), and the module name. The module name is a unique identifier for the module and has to be unique within the package. The module name is used to reference the module from other modules or transactions.","breadcrumbs":"Hello, World! » Sources","id":"19","title":"Sources"},"190":{"body":"In this chapter we already mentioned the vector type, which is a generic type that can hold any other type. Another example of a generic type in the standard library is the Option type, which is used to represent a value that may or may not be present.","breadcrumbs":"Move Basics » Generics » In the Standard Library","id":"190","title":"In the Standard Library"},"191":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\npublic struct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_container() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0); // Value can be ignored only if it has the `drop` ability. let Container { value: _ } = container;\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Move Basics » Generics » Generic Syntax","id":"191","title":"Generic Syntax"},"192":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\npublic struct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair_1: Pair = new_pair(10, true); // type inference let pair_2 = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair_3 = new_pair(10u8, true); assert!(pair_1.first == 10, 0x0); assert!(pair_1.second, 0x0); // Unpacking is identical. let Pair { first: _, second: _ } = pair_1; let Pair { first: _, second: _ } = pair_2; let Pair { first: _, second: _ } = pair_3; } If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0); let Pair { first: pf1, second: ps1 } = pair1; // first1: u8, second1: bool let Pair { first: pf2, second: ps2 } = pair2; // first2: bool, second2: u8 assert!(pf1 == ps2, 0x0); // 10 == 10 assert!(ps1 == pf2, 0x0); // true == true\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Move Basics » Generics » Multiple Type Parameters","id":"192","title":"Multiple Type Parameters"},"193":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\npublic struct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Move Basics » Generics » Why Generics?","id":"193","title":"Why Generics?"},"194":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\npublic struct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. public struct USD {}\npublic struct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 }; // Unpacking is identical because the phantom type parameter is not used. let Coin { value: _ } = coin1; let Coin { value: _ } = coin2;\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Move Basics » Generics » Phantom Type Parameters","id":"194","title":"Phantom Type Parameters"},"195":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\npublic struct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\npublic struct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\npublic struct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability // let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities // let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Move Basics » Generics » Constraints on Type Parameters","id":"195","title":"Constraints on Type Parameters"},"196":{"body":"Generics in the Move Reference.","breadcrumbs":"Move Basics » Generics » Further Reading","id":"196","title":"Further Reading"},"197":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Move Basics » Type Reflection » Type Reflection","id":"197","title":"Type Reflection"},"198":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::ascii::String; use std::type_name::{Self, TypeName}; /// A function that returns the name of the type `T` and its module and address. public fun do_i_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] public struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, _address_str) = do_i_know_you(); // assert!(module_name == b\"type_reflection\".to_ascii_string(), 1); }\n}","breadcrumbs":"Move Basics » Type Reflection » In practice","id":"198","title":"In practice"},"199":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Move Basics » Type Reflection » Further reading","id":"199","title":"Further reading"},"2":{"body":"Move requires an environment to run and develop applications, and in this small chapter we will cover the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"2","title":"Before we begin"},"20":{"body":"The tests/ directory contains package tests. The compiler excludes these files in the regular build process but uses them in test and dev modes. The tests are written in Move and are marked with the #[test] attribute. Tests can be grouped in a separate module (then it's usually called module_name_tests.move ), or inside the module they're testing. Modules, imports, constants and functions can be annotated with #[test_only]. This attribute is used to exclude modules, functions or imports from the build process. This is useful when you want to add helpers for your tests without including them in the code that will be published on chain. The hello_world_tests.move file contains a commented out test module template: /*\n#[test_only]\nmodule hello_world::hello_world_tests { // uncomment this line to import the module // use hello_world::hello_world; const ENotImplemented: u64 = 0; #[test] fun test_hello_world() { // pass } #[test, expected_failure(abort_code = hello_world::hello_world_tests::ENotImplemented)] fun test_hello_world_fail() { abort ENotImplemented }\n}\n*/","breadcrumbs":"Hello, World! » Tests","id":"20","title":"Tests"},"200":{"body":"A crucial part of any software development, and even more - blockchain development, is testing. Here, we will cover the basics of testing in Move and how to write and organize tests for your Move code.","breadcrumbs":"Move Basics » Testing » Testing","id":"200","title":"Testing"},"201":{"body":"Tests in Move are functions marked with the #[test] attribute. This attribute tells the compiler that the function is a test function, and it should be run when the tests are executed. Test functions are regular functions, but they must take no arguments and have no return value. They are excluded from the bytecode, and are never published. module book::testing { // Test attribute is placed before the `fun` keyword. Can be both above or // right before the `fun` keyword: `#[test] fun my_test() { ... }` // The name of the test would be `book::testing::simple_test`. #[test] fun simple_test() { let sum = 2 + 2; assert!(sum == 4, 1); } // The name of the test would be `book::testing::more_advanced_test`. #[test] fun more_advanced_test() { let sum = 2 + 2 + 2; assert!(sum == 4, 1); }\n}","breadcrumbs":"Move Basics » Testing » The #[test] attribute","id":"201","title":"The #[test] attribute"},"202":{"body":"To run tests, you can use the sui move test command. This command will first build the package in the test mode and then run all the tests found in the package. During test mode, modules from both sources/ and tests/ directories are processed, and the tests are executed. $ sui move test\n> INCLUDING DEPENDENCY Sui\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING book\n> Running Move unit tests\n> ...","breadcrumbs":"Move Basics » Testing » Running Tests","id":"202","title":"Running Tests"},"203":{"body":"Tests for fail cases can be marked with #[expected_failure]. This attribute placed on a #[test] function tells the compiler that the test is expected to fail. This is useful when you want to test that a function fails when a certain condition is met. This attribute can only be placed on a #[test] function. The attribute can take an argument for abort code, which is the expected abort code when the test fails. If the test fails with a different abort code, the test will fail. If the execution did not abort, the test will also fail. module book::testing_failure { const EInvalidArgument: u64 = 1; #[test] #[expected_failure(abort_code = 0)] fun test_fail() { abort 0 // aborts with 0 } // attributes can be grouped together #[test, expected_failure(abort_code = EInvalidArgument)] fun test_fail_1() { abort 1 // aborts with 1 }\n} The abort_code argument can use constants defined in the tests module as well as imported from other modules. This is the only case where constants can be used and \"accessed\" in other modules.","breadcrumbs":"Move Basics » Testing » Test Fail Cases with #[expected_failure]","id":"203","title":"Test Fail Cases with #[expected_failure]"},"204":{"body":"In some cases, it is helpful to give the test environment access to some of the internal functions or features. It simplifies the testing process and allows for more thorough testing. However, it is important to remember that these functions should not be included in the final package. This is where the #[test_only] attribute comes in handy. module book::testing { // Public function which uses the `secret` function. public fun multiply_by_secret(x: u64): u64 { x * secret() } /// Private function which is not available to the public. fun secret(): u64 { 100 } #[test_only] /// This function is only available for testing purposes in tests and other /// test-only functions. Mind the visibility - for `#[test_only]` it is /// common to use `public` visibility. public fun secret_for_testing(): u64 { secret() } #[test] // In the test environment we have access to the `secret_for_testing` function. fun test_multiply_by_secret() { let expected = secret_for_testing() * 2; assert!(multiply_by_secret(2) == expected, 1); }\n} Functions marked with the #[test_only] will be available to the test environment, and to the other modules if their visibility is set so.","breadcrumbs":"Move Basics » Testing » Utilities with #[test_only]","id":"204","title":"Utilities with #[test_only]"},"205":{"body":"Unit Testing in the Move Reference.","breadcrumbs":"Move Basics » Testing » Further Reading","id":"205","title":"Further Reading"},"206":{"body":"This chapter describes the Object Model of Sui. It focuses on the theory and concepts behind the Object Model, preparing you for a practical dive into Sui Storage operations and resource ownership. For convenience and easier lookup, we split the chapter into several sections, each covering a specific aspect of the Object Model. In no way should this chapter be considered a comprehensive guide to the Object Model. It is only a high-level overview of the concepts and principles behind the Object Model. For a more detailed description, refer to the Sui Documentation .","breadcrumbs":"Object Model » Object Model","id":"206","title":"Object Model"},"207":{"body":"Smart-contract programming languages have historically focused on defining and managing digital assets. For example, the ERC-20 standard in Ethereum pioneered a set of standards to interact with digital currency tokens, establishing a blueprint for creating and managing digital currencies on the blockchain. Subsequently, the introduction of the ERC-721 standard marked a significant evolution, popularising the concept of non-fungible tokens (NFTs), which represent unique, indivisible assets. These standards laid the groundwork for the complex digital assets we see today. However, Ethereum's programming model lacked a native representation of assets. In other words, externally, a Smart Contract behaved like an asset, but the language itself did not have a way to inherently represent assets. From the start, Move aimed to provide a first-class abstraction for assets, opening up new avenues for thinking about and programming assets. It is important to highlight which properties are essential for an asset: Ownership: Every asset is associated with an owner(s), mirroring the straightforward concept of ownership in the physical world—just as you own a car, you can own a digital asset. Move enforces ownership in such a way that once an asset is moved , the previous owner completely loses any control over it. This mechanism ensures a clear and secure change of ownership. Non-copyable: In the real world, unique items cannot be duplicated effortlessly. Move applies this principle to digital assets, ensuring they cannot be arbitrarily copied within the program. This property is crucial for maintaining the scarcity and uniqueness of digital assets, mirroring the intrinsic value of physical assets. Non-discardable: Just as you cannot accidentally lose a house or a car without a trace, Move ensures that no asset can be discarded or lost in a program. Instead, assets must be explicitly transferred or destroyed. This property guarantees the deliberate handling of digital assets, preventing accidental loss and ensuring accountability in asset management. Move managed to encapsulate these properties in its design, becoming an ideal language for digital assets.","breadcrumbs":"Object Model » Language for Digital Assets » Move - Language for Digital Assets","id":"207","title":"Move - Language for Digital Assets"},"208":{"body":"Move was designed to provide a first-class abstraction for digital assets, enabling developers to create and manage assets natively. Essential properties of digital assets include ownership, non-copyability, and non-discardability, which Move enforces in its design. Move's asset model mirrors real-world asset management, ensuring secure and accountable asset ownership and transfer.","breadcrumbs":"Object Model » Language for Digital Assets » Summary","id":"208","title":"Summary"},"209":{"body":"Move: A Language With Programmable Resources (pdf) by Sam Blackshear, Evan Cheng, David L. Dill, Victor Gao, Ben Maurer, Todd Nowacki, Alistair Pott, Shaz Qadeer, Rain, Dario Russi, Stephane Sezer, Tim Zakian, Runtian Zhou*","breadcrumbs":"Object Model » Language for Digital Assets » Further reading","id":"209","title":"Further reading"},"21":{"body":"Additionally, Move CLI supports the examples/ folder. The files there are treated similarly to the ones placed under the tests/ folder - they're only built in the test and dev modes. They are to be examples of how to use the package or how to integrate it with other packages. The most popular use case is for documentation purposes and library packages.","breadcrumbs":"Hello, World! » Other Folders","id":"21","title":"Other Folders"},"210":{"body":"While Move was created to manage digital assets, its initial storage model was bulky and not well-suited for many use cases. For instance, if Alice wanted to transfer an asset X to Bob, Bob had to create a new \"empty\" resource, and then Alice could transfer asset X to Bob. This process was not intuitive and presented implementation challenges, partly due to the restrictive design of Diem . Another drawback of the original design was the lack of built-in support for a \"transfer\" operation, requiring every module to implement its own storage transfer logic. Additionally, managing heterogeneous collections of assets in a single account was particularly challenging. Sui addressed these challenges by redesigning the storage and ownership model of objects to more closely resemble real-world object interactions. With a native concept of ownership and transfer , Alice can directly transfer asset X to Bob. Furthermore, Bob can maintain a collection of different assets without any preparatory steps. These improvements laid the foundation for the Object Model in Sui.","breadcrumbs":"Object Model » Evolution of Move » Evolution of Move","id":"210","title":"Evolution of Move"},"211":{"body":"Move's initial storage model was not well-suited for managing digital assets, requiring complex and restrictive transfer operations. Sui introduced the Object Model, which provides a native concept of ownership, simplifying asset management and enabling heterogeneous collections.","breadcrumbs":"Object Model » Evolution of Move » Summary","id":"211","title":"Summary"},"212":{"body":"Why We Created Sui Move by Sam Blackshear","breadcrumbs":"Object Model » Evolution of Move » Further reading","id":"212","title":"Further reading"},"213":{"body":"The Object Model in Sui can be viewed as a high-level abstraction representing digital assets as objects . These objects have their own type and associated behaviors, a unique identifier, and support native storage operations like transfer and share . Designed to be intuitive and easy to use, the Object Model enables a wide range of use cases to be implemented with ease. Objects in Sui have the following properties: Type: Every object has a type, defining the structure and behavior of the object. Objects of different types cannot be mixed or used interchangeably, ensuring objects are used correctly according to their type system. Unique ID: Each object has a unique identifier, distinguishing it from other objects. This ID is generated upon the object's creation and is immutable. It's used to track and identify objects within the system. Owner: Every object is associated with an owner, who has control over the object. Ownership on Sui can be exclusive to an account, shared across the network, or frozen, allowing read-only access without modification or transfer capabilities. We will discuss ownership in more detail in the following sections. Data: Objects encapsulate their data, simplifying management and manipulation. The data structure and operations are defined by the object's type. Version: The transition from accounts to objects is facilitated by object versioning. Traditionally, blockchains use a nonce to prevent replay attacks. In Sui, the object's version acts as a nonce, preventing replay attacks for each object. Digest: Every object has a digest, which is a hash of the object's data. The digest is used to cryptographically verify the integrity of the object's data and ensures that it has not been tampered with. The digest is calculated when the object is created and is updated whenever the object's data changes.","breadcrumbs":"Object Model » What is an Object? » What is an Object?","id":"213","title":"What is an Object?"},"214":{"body":"Objects in Sui are high-level abstractions representing digital assets. Objects have a type, unique ID, owner, data, version, and digest. The Object Model simplifies asset management and enables a wide range of use cases.","breadcrumbs":"Object Model » What is an Object? » Summary","id":"214","title":"Summary"},"215":{"body":"Object Model in Sui Documentation.","breadcrumbs":"Object Model » What is an Object? » Further reading","id":"215","title":"Further reading"},"216":{"body":"Sui introduces four distinct ownership types for objects: single owner, shared state, immutable shared state, and object-owner. Each model offers unique characteristics and suits different use cases, enhancing flexibility and control in object management.","breadcrumbs":"Object Model » Ownership » Ownership","id":"216","title":"Ownership"},"217":{"body":"The account owner, also known as the single owner model, is the foundational ownership type in Sui. Here, an object is owned by a single account, granting that account exclusive control over the object within the behaviors associated with its type. This model embodies the concept of true ownership , where the account possesses complete authority over the object, making it inaccessible to others for modification or transfer. This level of ownership clarity is a significant advantage over other blockchain systems, where ownership definitions can be more ambiguous, and smart contracts may have the ability to alter or transfer assets without the owner's consent.","breadcrumbs":"Object Model » Ownership » Account Owner (or Single Owner)","id":"217","title":"Account Owner (or Single Owner)"},"218":{"body":"Single owner model has its limitations: for example, it is very tricky to implement a marketplace for digital assets without a shared state. For a generic marketplace scenario, imagine that Alice owns an asset X, and she wants to sell it by putting it into a shared marketplace. Then Bob can come and buy the asset directly from the marketplace. The reason why this is tricky is that it is impossible to write a smart contract that would \"lock\" the asset in Alice's account and take it out when Bob buys it. First, it will be a violation of the single owner model, and second, it requires a shared access to the asset. To facilitate a problem of shared data access, Sui has introduced a shared ownership model. In this model, an object can be shared with the network. Shared objects can be read and modified by any account on the network, and the rules of interaction are defined by the implementation of the object. Typical uses for shared objects are: marketplaces, shared resources, escrows, and other scenarios where multiple accounts need access to the same state.","breadcrumbs":"Object Model » Ownership » Shared State","id":"218","title":"Shared State"},"219":{"body":"Sui also offers the frozen object model, where an object becomes permanently read-only. These immutable objects, while readable, cannot be modified or moved, providing a stable and constant state accessible to all network participants. Frozen objects are ideal for public data, reference materials, and other use cases where the state permanence is desirable.","breadcrumbs":"Object Model » Ownership » Immutable (Frozen) State","id":"219","title":"Immutable (Frozen) State"},"22":{"body":"Move is a compiled language, and as such, it requires the compilation of source files into Move Bytecode. It contains only necessary information about the module, its members, and types, and excludes comments and some identifiers (for example, for constants). To demonstrate these features, let's replace the contents of the sources/hello_world.move file with the following: /// The module `hello_world` under named address `hello_world`.\n/// The named address is set in the `Move.toml`.\nmodule hello_world::hello_world { // Imports the `String` type from the Standard Library use std::string::String; /// Returns the \"Hello, World!\" as a `String`. public fun hello_world(): String { b\"Hello, World!\".to_string() }\n} During compilation, the code is built, but not run. A compiled package only includes functions that can be called by other modules or in a transaction. We will explain these concepts in the Concepts chapter. But now, let's see what happens when we run the sui move build . # run from the `hello_world` folder\n$ sui move build # alternatively, if you didn't `cd` into it\n$ sui move build --path hello_world It should output the following message on your console. UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world During the compilation, Move Compiler automatically creates a build folder where it places all fetched and compiled dependencies as well as the bytecode for the modules of the current package. If you're using a versioning system, such as Git, build folder should be ignored. For example, you should use a .gitignore file and add build to it.","breadcrumbs":"Hello, World! » Compiling the Package","id":"22","title":"Compiling the Package"},"220":{"body":"The last ownership model in Sui is the object owner . In this model, an object is owned by another object. This feature allows creating complex relationships between objects, store large heterogenious collections, and implementing extensible and modular systems. Practically speaking, since the transactions are initiated by accounts, the transaction still accesses the parent object, but it can then access the child objects through the parent object. A use case we love to mention is a game character. Alice can own the Hero object from a game, and the Hero can own items: also represented as objects, like a \"Map\", or a \"Compass\". Alice may take the \"Map\" from the \"Hero\" object, and then send it to Bob, or sell it on a marketplace. With object owner, it becomes very natural to imagine how the assets can be structured and managed in relation to each other.","breadcrumbs":"Object Model » Ownership » Object Owner","id":"220","title":"Object Owner"},"221":{"body":"Single Owner: Objects are owned by a single account, granting exclusive control over the object. Shared State: Objects can be shared with the network, allowing multiple accounts to read and modify the object. Immutable State: Objects become permanently read-only, providing a stable and constant state. Object Owner: Objects can own other objects, enabling complex relationships and modular systems.","breadcrumbs":"Object Model » Ownership » Summary","id":"221","title":"Summary"},"222":{"body":"In the next section we will talk about transaction execution paths in Sui, and how the ownership models affect the transaction execution.","breadcrumbs":"Object Model » Ownership » Next Steps","id":"222","title":"Next Steps"},"223":{"body":"The Object Model allows for variable transaction execution paths, depending on the object's ownership type. The transaction execution path determines how the transaction is processed and validated by the network. In this section, we'll explore the different transaction execution paths in Sui and how they interact with the consensus mechanism.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path & Consensus","id":"223","title":"Fast Path & Consensus"},"224":{"body":"At its core, blockchain technology faces a fundamental concurrency challenge: multiple parties may try to modify or access the same data simultaneously in a decentralized environment. This requires a system for sequencing and validating transactions to support the network's consistency. Sui addresses this challenge through a consensus mechanism, ensuring all nodes agree on the transactions' sequence and state. Consider a marketplace scenario where Alice and Bob simultaneously attempt to purchase the same asset. The network must resolve this conflict to prevent double-spending, ensuring that at most one transaction succeeds while the other is rightfully rejected.","breadcrumbs":"Object Model » Fast Path & Consensus » Concurrency Challenge","id":"224","title":"Concurrency Challenge"},"225":{"body":"However, not all transactions require the same level of validation and consensus. For example, if Alice wants to transfer an object that she owns to Bob, the network can process this transaction without sequencing it with respect to all other transactions in the network, as only Alice has the authority to access the object. This is known as the fast path execution, where transactions accessing account-owned objects are processed quickly without the need for extensive consensus. No concurrent data access -> simpler challenge -> fast path. Another ownership model that allows for fast path execution is the immutable state . Since immutable objects cannot change, transactions involving them can be processed quickly without the need to sequence them.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path","id":"225","title":"Fast Path"},"226":{"body":"Transactions that do access shared state - on Sui it is represented with shared objects - require sequencing to ensure that the state is updated and consistented across all nodes. This is known as the execution through consensus , where transactions accessing shared objects are subject to the agreement process to maintain network consistency.","breadcrumbs":"Object Model » Fast Path & Consensus » Consensus Path","id":"226","title":"Consensus Path"},"227":{"body":"Lastly, it is important to mention that objects owned by other objects are subject to the same rules as the parent object. If the parent object is shared , the child object is also transitively shared. If the parent object is immutable, the child object is also immutable.","breadcrumbs":"Object Model » Fast Path & Consensus » Objects owned by Objects","id":"227","title":"Objects owned by Objects"},"228":{"body":"Fast Path: Transactions involving account-owned objects or immutable shared state are processed quickly without the need for extensive consensus. Consensus Path: Transactions involving shared objects require sequencing and consensus to ensure network integrity. Objects owned by Objects: Child objects inherit the ownership model of the parent object.","breadcrumbs":"Object Model » Fast Path & Consensus » Summary","id":"228","title":"Summary"},"229":{"body":"In the Object Model chapter we briefly explained the evolution of the Move language from an account-based model to an object-based model. In this chapter, we will dive deeper into the object model and explore how to use objects in your Sui applications. If you haven't read the Object Model chapter yet, we recommend you do so before continuing with this chapter.","breadcrumbs":"Using Objects » Using Objects","id":"229","title":"Using Objects"},"23":{"body":"Before we get to testing, we should add a test. Move Compiler supports tests written in Move and provides the execution environment. The tests can be placed in both the source files and in the tests/ folder. Tests are marked with the #[test] attribute and are automatically discovered by the compiler. We explain tests in depth in the Testing section. Replace the contents of the tests/hello_world_tests.move with the following content: #[test_only]\nmodule hello_world::hello_world_tests { use hello_world::hello_world; #[test] fun test_hello_world() { assert!(hello_world::hello_world() == b\"Hello, World!\".to_string(), 0); }\n} Here we import the hello_world module, and call its hello_world function to test that the output is indeed the string \"Hello, World!\". Now, that we have tests in place, let's compile the package in the test mode and run tests. Move CLI has the test command for this: $ sui move test The output should be similar to the following: INCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world\nRunning Move unit tests\n[ PASS ] 0x0::hello_world_tests::test_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 If you're running the tests outside of the package folder, you can specify the path to the package: $ sui move test --path hello_world You can also run a single or multiple tests at once by specifying a string. All the tests names containing the string will be run: $ sui move test test_hello","breadcrumbs":"Hello, World! » Running Tests","id":"23","title":"Running Tests"},"230":{"body":"In the Basic Syntax chapter we already covered two out of four abilities - Drop and Copy . They affect the behaviour of the value in a scope and are not directly related to storage. It is time to cover the key ability, which allows the struct to be stored. Historically, the key ability was created to mark the type as a key in the storage . A type with the key ability could be stored at top-level in the storage, and could be directly owned by an account or address. With the introduction of the Object Model , the key ability naturally became the defining ability for the object.","breadcrumbs":"Using Objects » Ability: Key » The Key Ability","id":"230","title":"The Key Ability"},"231":{"body":"A struct with the key ability is considered an object and can be used in the storage functions. The Sui Verifier will require the first field of the struct to be named id and have the type UID. public struct Object has key { id: UID, // required name: String,\n} /// Creates a new Object with a Unique ID\npublic fun new(name: String, ctx: &mut TxContext): Object { Object { id: object::new(ctx), // creates a new UID name, }\n} A struct with the key ability is still a struct, and can have any number of fields and associated functions. There is no special handling or syntax for packing, accessing or unpacking the struct. However, because the first field of an object struct must be of type UID - a non-copyable and non-droppable type (we will get to it very soon!), the struct transitively cannot have drop and copy abilities. Thus, the object is non-discardable by design.","breadcrumbs":"Using Objects » Ability: Key » Object Definition","id":"231","title":"Object Definition"},"232":{"body":"Due to the UID requirement for types with key, none of the native types in Move can have the key ability, nor can any of the Standard Library types. The key ability is only present in the Sui Framework and custom types.","breadcrumbs":"Using Objects » Ability: Key » Types with the key Ability","id":"232","title":"Types with the key Ability"},"233":{"body":"Key ability defines the object in Move, and objects are intended to be stored . In the next section we present the sui::transfer module, which provides native storage functions for objects.","breadcrumbs":"Using Objects » Ability: Key » Next Steps","id":"233","title":"Next Steps"},"234":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Key » Further reading","id":"234","title":"Further reading"},"235":{"body":"The module that defines main storage operations is sui::transfer. It is implicitly imported in all packages that depend on the Sui Framework , so, like other implicitly imported modules (e.g. std::option or std::vector), it does not require adding a use statement.","breadcrumbs":"Using Objects » Storage Functions » Storage Functions","id":"235","title":"Storage Functions"},"236":{"body":"The transfer module provides functions to perform all three storage operations matching ownership types which we explained before: On this page we will only talk about so-called restricted storage operations, later we will cover public ones, after the store ability is introduced. Transfer - send an object to an address, put it into account owned state; Share - put an object into a shared state, so it is available to everyone; Freeze - put an object into immutable state, so it becomes a public constant and can never change. The transfer module is a go-to for most of the storage operations, except a special case with Dynamic Fields awaits us in the next chapter.","breadcrumbs":"Using Objects » Storage Functions » Overview","id":"236","title":"Overview"},"237":{"body":"In the Ownership and Scope and References chapters, we covered the basics of ownership and references in Move. It is important that you understand these concepts when using storage functions. Here is a quick recap of the most important points: The move semantics in Move means that the value is moved from one scope to another. In other words, if an instance of a type is passed to a function by value , it is moved to the function scope and can't be accessed in the caller scope anymore. To maintain the ownership of the value, you can pass it by reference . Either by immutable reference &T or mutable reference &mut T. Then the value is borrowed and can be accessed in the caller scope, however the owner stays the same. /// Moved by value\npublic fun take(value: T) { /* value is moved here! */ abort 0 } /// For immutable reference\npublic fun borrow(value: &T) { /* value is borrowed here! can be read */ abort 0 } /// For mutable reference\npublic fun borrow_mut(value: &mut T) { /* value is mutably borrowed here! */ abort 0 }","breadcrumbs":"Using Objects » Storage Functions » Ownership and References: A Quick Recap","id":"237","title":"Ownership and References: A Quick Recap"},"238":{"body":"The transfer::transfer function is a public function used to transfer an object to another address. Its signature is as follows, only accepts a type with the key ability and an address of the recipient. Please, note that the object is passed into the function by value , therefore it is moved to the function scope and then moved to the recipient address: // File: sui-framework/sources/transfer.move\npublic fun transfer(obj: T, recipient: address); In the next example, you can see how it can be used in a module that defines and sends an object to the transaction sender. module book::transfer_to_sender { /// A struct with `key` is an object. The first field is `id: UID`! public struct AdminCap has key { id: UID } /// `init` function is a special function that is called when the module /// is published. It is a good place to create application objects. fun init(ctx: &mut TxContext) { // Create a new `AdminCap` object, in this scope. let admin_cap = AdminCap { id: object::new(ctx) }; // Transfer the object to the transaction sender. transfer::transfer(admin_cap, ctx.sender()); // admin_cap is gone! Can't be accessed anymore. } /// Transfers the `AdminCap` object to the `recipient`. Thus, the recipient /// becomes the owner of the object, and only they can access it. public fun transfer_admin_cap(cap: AdminCap, recipient: address) { transfer::transfer(cap, recipient); }\n} When the module is published, the init function will get called, and the AdminCap object which we created there will be transferred to the transaction sender. The ctx.sender() function returns the sender address for the current transaction. Once the AdminCap has been transferred to the sender, for example, to 0xa11ce, the sender, and only the sender, will be able to access the object. The object is now account owned . Account owned objects are a subject to true ownership - only the account owner can access them. This is a fundamental concept in the Sui storage model. Let's extend the example with a function that uses AdminCap to authorize a mint of a new object and its transfer to another address: /// Some `Gift` object that the admin can `mint_and_transfer`.\npublic struct Gift has key { id: UID } /// Creates a new `Gift` object and transfers it to the `recipient`.\npublic fun mint_and_transfer( _: &AdminCap, recipient: address, ctx: &mut TxContext\n) { let gift = Gift { id: object::new(ctx) }; transfer::transfer(gift, recipient);\n} The mint_and_transfer function is a public function that \"could\" be called by anyone, but it requires an AdminCap object to be passed as the first argument by reference. Without it, the function will not be callable. This is a simple way to restrict access to privileged functions called Capability . Because the AdminCap object is account owned , only 0xa11ce will be able to call the mint_and_transfer function. The Gifts sent to recipients will also be account owned , each gift being unique and owned exclusively by the recipient. A quick recap: transfer function is used to send an object to an address; The object becomes account owned and can only be accessed by the recipient; Functions can be gated by requiring an object to be passed as an argument, creating a capability .","breadcrumbs":"Using Objects » Storage Functions » Transfer","id":"238","title":"Transfer"},"239":{"body":"The transfer::freeze_object function is public function used to put an object into an immutable state. Once an object is frozen , it can never be changed, and it can be accessed by anyone by immutable reference. The function signature is as follows, only accepts a type with the key ability . Just like all other storage functions, it takes the object by value : // File: sui-framework/sources/transfer.move\npublic fun freeze_object(obj: T); Let's expand on the previous example and add a function that allows the admin to create a Config object and freeze it: /// Some `Config` object that the admin can `create_and_freeze`.\npublic struct Config has key { id: UID, message: String\n} /// Creates a new `Config` object and freezes it.\npublic fun create_and_freeze( _: &AdminCap, message: String, ctx: &mut TxContext\n) { let config = Config { id: object::new(ctx), message }; // Freeze the object so it becomes immutable. transfer::freeze_object(config);\n} /// Returns the message from the `Config` object.\n/// Can access the object by immutable reference!\npublic fun message(c: &Config): String { c.message } Config is an object that has a message field, and the create_and_freeze function creates a new Config and freezes it. Once the object is frozen, it can be accessed by anyone by immutable reference. The message function is a public function that returns the message from the Config object. Config is now publicly available by its ID, and the message can be read by anyone. Function definitions are not connected to the object's state. It is possible to define a function that takes a mutable reference to an object that is used as frozen. However, it won't be callable on a frozen object. The message function can be called on an immutable Config object, however, two functions below are not callable on a frozen object: // === Functions below can't be called on a frozen object! === /// The function can be defined, but it won't be callable on a frozen object.\n/// Only immutable references are allowed.\npublic fun message_mut(c: &mut Config): &mut String { &mut c.message } /// Deletes the `Config` object, takes it by value.\n/// Can't be called on a frozen object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} To summarize: transfer::freeze_object function is used to put an object into an immutable state; Once an object is frozen , it can never be changed, deleted or transferred, and it can be accessed by anyone by immutable reference;","breadcrumbs":"Using Objects » Storage Functions » Freeze","id":"239","title":"Freeze"},"24":{"body":"In this section, we explained the basics of a Move package: its structure, the manifest, the build, and test flows. On the next page , we will write an application and see how the code is structured and what the language can do.","breadcrumbs":"Hello, World! » Next Steps","id":"24","title":"Next Steps"},"240":{"body":"Since the transfer::freeze_object signature accepts any type with the key ability, it can take an object that was created in the same scope, but it can also take an object that was owned by an account. This means that the freeze_object function can be used to freeze an object that was transferred to the sender. For security concerns, we would not want to freeze the AdminCap object - it would be a security risk to allow access to it to anyone. However, we can freeze the Gift object that was minted and transferred to the recipient: Single Owner -> Immutable conversion is possible! /// Freezes the `Gift` object so it becomes immutable.\npublic fun freeze_gift(gift: Gift) { transfer::freeze_object(gift);\n}","breadcrumbs":"Using Objects » Storage Functions » Owned -> Frozen","id":"240","title":"Owned -> Frozen"},"241":{"body":"The transfer::share_object function is a public function used to put an object into a shared state. Once an object is shared , it can be accessed by anyone by a mutable reference (hence, immutable too). The function signature is as follows, only accepts a type with the key ability : // File: sui-framework/sources/transfer.move\npublic fun share_object(obj: T); Once an object is shared , it is publicly available as a mutable reference.","breadcrumbs":"Using Objects » Storage Functions » Share","id":"241","title":"Share"},"242":{"body":"While the shared object can't normally be taken by value, there is one special case where it can - if the function that takes it deletes the object. This is a special case in the Sui storage model, and it is used to allow the deletion of shared objects. To show how it works, we will create a function that creates and shares a Config object and then another one that deletes it: /// Creates a new `Config` object and shares it.\npublic fun create_and_share(message: String, ctx: &mut TxContext) { let config = Config { id: object::new(ctx), message }; // Share the object so it becomes shared. transfer::share_object(config);\n} The create_and_share function creates a new Config object and shares it. The object is now publicly available as a mutable reference. Let's create a function that deletes the shared object: /// Deletes the `Config` object, takes it by value.\n/// Can be called on a shared object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} The delete_config function takes the Config object by value and deletes it, and the Sui Verifier would allow this call. However, if the function returned the Config object back or attempted to freeze or transfer it, the Sui Verifier would reject the transaction. // Won't work!\npublic fun transfer_shared(c: Config, to: address) { transfer::transfer(c, to);\n} To summarize: share_object function is used to put an object into a shared state; Once an object is shared , it can be accessed by anyone by a mutable reference; Shared objects can be deleted, but they can't be transferred or frozen.","breadcrumbs":"Using Objects » Storage Functions » Special Case: Shared Object Deletion","id":"242","title":"Special Case: Shared Object Deletion"},"243":{"body":"Now that you know main features of the transfer module, you can start building more complex applications on Sui that involve storage operations. In the next chapter, we will cover the Store Ability which allows storing data inside objects and relaxes transfer restrictions which we barely touched on here. And after that we will cover the UID and ID types which are the most important types in the Sui storage model.","breadcrumbs":"Using Objects » Storage Functions » Next Steps","id":"243","title":"Next Steps"},"244":{"body":"Now that you have an understanding of top-level storage functions which are enabled by the key ability, we can talk about the last ability in the list - store.","breadcrumbs":"Using Objects » Ability: Store » Ability: Store","id":"244","title":"Ability: Store"},"245":{"body":"The store is a special ability that allows a type to be stored in objects. This ability is required for the type to be used as a field in a struct that has the key ability. Another way to put it is that the store ability allows the value to be wrapped in an object. The store ability also relaxes restrictions on transfer operations. We talk about it more in the Restricted and Public Transfer section.","breadcrumbs":"Using Objects » Ability: Store » Definition","id":"245","title":"Definition"},"246":{"body":"In previous sections we already used types with the key ability: all objects must have a UID field, which we used in examples; we also used the Storable type as a part of the Config struct. The Config type also has the store ability. /// This type has the `store` ability.\npublic struct Storable has store {} /// Config contains a `Storable` field which must have the `store` ability.\npublic struct Config has key, store { id: UID, stores: Storable,\n} /// MegaConfig contains a `Config` field which has the `store` ability.\npublic struct MegaConfig has key { id: UID, config: Config, // there it is!\n}","breadcrumbs":"Using Objects » Ability: Store » Example","id":"246","title":"Example"},"247":{"body":"All native types (except for references) in Move have the store ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the store ability as well. This includes: Option String TypeName","breadcrumbs":"Using Objects » Ability: Store » Types with the store Ability","id":"247","title":"Types with the store Ability"},"248":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Store » Further reading","id":"248","title":"Further reading"},"249":{"body":"The UID type is defined in the sui::object module and is a wrapper around an ID which, in turn, wraps the address type. The UIDs on Sui are guaranteed to be unique, and can't be reused after the object was deleted. // File: sui-framework/sources/object.move\n/// UID is a unique identifier of an object\npublic struct UID has store { id: ID\n} /// ID is a wrapper around an address\npublic struct ID has store, drop { bytes: address\n}","breadcrumbs":"Using Objects » UID and ID » UID and ID","id":"249","title":"UID and ID"},"25":{"body":"Package Manifest section Package in The Move Reference","breadcrumbs":"Hello, World! » Further Reading","id":"25","title":"Further Reading"},"250":{"body":"UID is derived from the tx_hash and an index which is incremented for each new UID. The derive_id function is implemented in the sui::tx_context module, and that is why TxContext is required for UID generation. Sui Verifier will not allow using a UID that wasn't created in the same function. That prevents UIDs from being pre-generated and reused after the object was unpacked. New UID is created with the object::new(ctx) function. It takes a mutable reference to TxContext, and returns a new UID. let ctx = &mut tx_context::dummy();\nlet uid = object::new(ctx); On Sui, UID acts as a representation of an object, and allows defining behaviors and features of an object. One of the key-features - Dynamic Fields - is possible because of the UID type being explicit. Additionally, it allows the Transfer To Object (TTO) which we will explain later in this chapter.","breadcrumbs":"Using Objects » UID and ID » Fresh UID generation:","id":"250","title":"Fresh UID generation:"},"251":{"body":"The UID type is created with the object::new(ctx) function, and it is destroyed with the object::delete(uid) function. The object::delete consumes the UID by value , and it is impossible to delete it unless the value was unpacked from an Object. let ctx = &mut tx_context::dummy(); let char = Character { id: object::new(ctx)\n}; let Character { id } = char;\nid.delete();","breadcrumbs":"Using Objects » UID and ID » UID lifecycle","id":"251","title":"UID lifecycle"},"252":{"body":"The UID does not need to be deleted immediately after the object struct is unpacked. Sometimes it may carry Dynamic Fields or objects transferred to it via Transfer To Object . In such cases, the UID may be kept and stored in a separate object.","breadcrumbs":"Using Objects » UID and ID » Keeping the UID","id":"252","title":"Keeping the UID"},"253":{"body":"The ability to return the UID of an object may be utilized in pattern called proof of deletion . It is a rarely used technique, but it may be useful in some cases, for example, the creator or an application may incentivize the deletion of an object by exchanging the deleted IDs for some reward. In framework development this method could be used to ignore / bypass certain restrictions on \"taking\" the object. If there's a container that enforces certain logic on transfers, like Kiosk does, there could be a special scenario of skipping the checks by providing a proof of deletion. This is one of the open topics for exploration and research, and it may be used in various ways.","breadcrumbs":"Using Objects » UID and ID » Proof of Deletion","id":"253","title":"Proof of Deletion"},"254":{"body":"When talking about UID we should also mention the ID type. It is a wrapper around the address type, and is used to represent an address-pointer. Usually, ID is used to point at an object, however, there's no restriction, and no guarantee that the ID points to an existing object. ID can be received as a transaction argument in a Transaction Block . Alternatively, ID can be created from an address value using to_id() function.","breadcrumbs":"Using Objects » UID and ID » ID","id":"254","title":"ID"},"255":{"body":"TxContext provides the fresh_object_address function which can be utilized to create unique addresses and ID - it may be useful in some application that assign unique identifiers to user actions - for example, an order_id in a marketplace.","breadcrumbs":"Using Objects » UID and ID » fresh_object_address","id":"255","title":"fresh_object_address"},"256":{"body":"Storage Operations that we described in the previous sections are restricted by default - they can only be called in the module defining the object. In other terms, the type must be internal to the module to be used in storage operations. This restriction is implemented in the Sui Verifier and is enforced at the bytecode level. However, to allow objects to be transferred and stored in other modules, these restrictions can be relaxed. The sui::transfer module offers a set of public_* functions that allow calling storage operations in other modules. The functions are prefixed with public_ and are available to all modules and transactions.","breadcrumbs":"Using Objects » Restricted and Public Transfer » Restricted and Public Transfer","id":"256","title":"Restricted and Public Transfer"},"257":{"body":"The sui::transfer module provides the following public functions. They are almost identical to the ones we already covered, but can be called from any module. // File: sui-framework/sources/transfer.move\n/// Public version of the `transfer` function.\npublic fun public_transfer(object: T, to: address) {} /// Public version of the `share_object` function.\npublic fun public_share_object(object: T) {} /// Public version of the `freeze_object` function.\npublic fun public_freeze_object(object: T) {} To illustrate the usage of these functions, consider the following example: module A defines an ObjectK with key and ObjectKS with key + store abilities, and module B tries to implement a transfer function for these objects. In this example we use transfer::transfer, but the behaviour is identical for share_object and freeze_object functions. /// Defines `ObjectK` and `ObjectKS` with `key` and `key + store`\n/// abilities respectively\nmodule book::transfer_a { public struct ObjectK has key { id: UID } public struct ObjectKS has key, store { id: UID }\n} /// Imports the `ObjectK` and `ObjectKS` types from `transfer_a` and attempts\n/// to implement different `transfer` functions for them\nmodule book::transfer_b { // types are not internal to this module use book::transfer_a::{ObjectK, ObjectKS}; // Fails! ObjectK is not `store`, and ObjectK is not internal to this module public fun transfer_k(k: ObjectK, to: address) { sui::transfer::transfer(k, to); } // Fails! ObjectKS has `store` but the function is not public public fun transfer_ks(ks: ObjectKS, to: address) { sui::transfer::transfer(ks, to); } // Fails! ObjectK is not `store`, `public_transfer` requires `store` public fun public_transfer_k(k: ObjectK) { sui::transfer::public_transfer(k); } // Works! ObjectKS has `store` and the function is public public fun public_transfer_ks(y: ObjectKS, to: address) { sui::transfer::public_transfer(y, to); }\n} To expand on the example above: transfer_k fails because ObjectK is not internal to module transfer_b transfer_ks fails because ObjectKS is not internal to module transfer_b public_transfer_k fails because ObjectK does not have the store ability public_transfer_ks works because ObjectKS has the store ability and the transfer is public","breadcrumbs":"Using Objects » Restricted and Public Transfer » Public Storage Operations","id":"257","title":"Public Storage Operations"},"258":{"body":"The decision on whether to add the store ability to a type should be made carefully. On one hand, it is de-facto a requirement for the type to be usable by other applications. On the other hand, it allows wrapping and changing the intended storage model. For example, a character may be intended to be owned by accounts, but with the store ability it can be frozen (cannot be shared - this transition is restricted).","breadcrumbs":"Using Objects » Restricted and Public Transfer » Implications of store","id":"258","title":"Implications of store"},"259":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"259","title":"Advanced Programmability"},"26":{"body":"In the previous section we created a new package and demonstrated the basic flow of creating, building, and testing a Move package. In this section, we will write a simple application that uses the storage model and can be interacted with. To do this, we will create a simple todo list application.","breadcrumbs":"Hello, Sui! » Hello, Sui!","id":"26","title":"Hello, Sui!"},"260":{"body":"Every transaction has the execution context. The context is a set of predefined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: // File: sui-framework/sources/tx_context.move\n/// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"260","title":"Transaction Context"},"261":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let me = ctx.sender(); let epoch = ctx.epoch(); let digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"261","title":"Reading the Transaction Context"},"262":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: // File: sui-framework/sources/tx_context.move\nnative fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"262","title":"Mutability"},"263":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. // File: sui-framework/sources/tx_context.move\n/// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"263","title":"Generating unique addresses"},"264":{"body":"A common use case in many applications is to run certain code just once when the package is published. Imagine a simple store module that needs to create the main Store object upon its publication. In Sui, this is achieved by defining an init function within the module. This function will automatically be called when the module is published. All of the modules' init functions are called during the publishing process. Currently, this behavior is limited to the publish command and does not extend to package upgrades . module book::shop { /// The Capability which grants the Shop owner the right to manage /// the shop. public struct ShopOwnerCap has key, store { id: UID } /// The singular Shop itself, created in the `init` function. public struct Shop has key { id: UID, /* ... */ } // Called only once, upon module publication. It must be // private to prevent external invocation. fun init(ctx: &mut TxContext) { // Transfers the ShopOwnerCap to the sender (publisher). transfer::transfer(ShopOwnerCap { id: object::new(ctx) }, ctx.sender()); // Shares the Shop object. transfer::share_object(Shop { id: object::new(ctx) }); }\n} In the same package, another module can have its own init function, encapsulating distinct logic. // In the same package as the `shop` module\nmodule book::bank { public struct Bank has key { id: UID, /* ... */ } fun init(ctx: &mut TxContext) { transfer::share_object(Bank { id: object::new(ctx) }); }\n}","breadcrumbs":"Advanced Programmability » Module Initializer » Module Initializer","id":"264","title":"Module Initializer"},"265":{"body":"The function is called on publish, if it is present in the module and follows the rules: The function has to be named init, be private and have no return values. Takes one or two arguments: One Time Witness (optional) and TxContext . With `TxContext always being the last argument. fun init(ctx: &mut TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &mut TxContext) { /* ... */ } TxContext can also be passed as immutable reference: &TxContext. However, practically speaking, it should always be &mut TxContext since the init function can't access the onchain state and to create new objects it requires the mutable reference to the context. fun init(ctx: &TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &TxContext) { /* ... */ }","breadcrumbs":"Advanced Programmability » Module Initializer » init features","id":"265","title":"init features"},"266":{"body":"While init function can be used to create sensitive objects once, it is important to know that the same object (eg. StoreOwnerCap from the first example) can still be created in another function. Especially given that new functions can be added to the module during an upgrade. So the init function is a good place to set up the initial state of the module, but it is not a security measure on its own. There are ways to guarantee that the object was created only once, such as the One Time Witness . And there are ways to limit or disable the upgrade of the module, which we will cover in the Package Upgrades chapter.","breadcrumbs":"Advanced Programmability » Module Initializer » Trust and security","id":"266","title":"Trust and security"},"267":{"body":"As follows from the definition, the init function is guaranteed to be called only once when the module is published. So it is a good place to put the code that initializes module's objects and sets up the environment and configuration. For example, if there's a Capability which is required for certain actions, it should be created in the init function. In the next chapter we will talk about the Capability pattern in more detail.","breadcrumbs":"Advanced Programmability » Module Initializer » Next steps","id":"267","title":"Next steps"},"268":{"body":"In programming, a capability is a token that gives the owner the right to perform a specific action. It is a pattern that is used to control access to resources and operations. A simple example of a capability is a key to a door. If you have the key, you can open the door. If you don't have the key, you can't open the door. A more practical example is an Admin Capability which allows the owner to perform administrative operations, which regular users cannot.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Pattern: Capability","id":"268","title":"Pattern: Capability"},"269":{"body":"In the Sui Object Model , capabilities are represented as objects. An owner of an object can pass this object to a function to prove that they have the right to perform a specific action. Due to strict typing, the function taking a capability as an argument can only be called with the correct capability. There's a convention to name capabilities with the Cap suffix, for example, AdminCap or KioskOwnerCap. module book::capability { use std::string::String; use sui::event; /// The capability granting the application admin the right to create new /// accounts in the system. public struct AdminCap has key, store { id: UID } /// The user account in the system. public struct Account has key, store { id: UID, name: String } /// A simple `Ping` event with no data. public struct Ping has copy, drop { by: ID } /// Creates a new account in the system. Requires the `AdminCap` capability /// to be passed as the first argument. public fun new(_: &AdminCap, name: String, ctx: &mut TxContext): Account { Account { id: object::new(ctx), name, } } /// Account, and any other objects, can also be used as a Capability in the /// application. For example, to emit an event. public fun send_ping(acc: &Account) { event::emit(Ping { by: acc.id.to_inner() }) } /// Updates the account name. Can only be called by the `Account` owner. public fun update(account: &mut Account, name: String) { account.name = name; }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Capability is an Object","id":"269","title":"Capability is an Object"},"27":{"body":"Following the same flow as in Hello, World! , we will create a new package called todo_list. $ sui move new todo_list","breadcrumbs":"Hello, Sui! » Create a New Package","id":"27","title":"Create a New Package"},"270":{"body":"A very common practice is to create a single AdminCap object on package publish. This way, the application can have a setup phase where the admin account prepares the state of the application. module book::admin_cap { /// The capability granting the admin privileges in the system. /// Created only once in the `init` function. public struct AdminCap has key { id: UID } /// Create the AdminCap object on package publish and transfer it to the /// package owner. fun init(ctx: &mut TxContext) { transfer::transfer( AdminCap { id: object::new(ctx) }, ctx.sender() ) }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Using init for Admin Capability","id":"270","title":"Using init for Admin Capability"},"271":{"body":"Utilizing objects as capabilities is a relatively new concept in blockchain programming. And in other smart-contract languages, authorization is often performed by checking the address of the sender. This pattern is still viable on Sui, however, overall recommendation is to use capabilities for better security, discoverability, and code organization. Let's look at how the new function that creates a user would look like if it was using the address check: /// Error code for unauthorized access.\nconst ENotAuthorized: u64 = 0; /// The application admin address.\nconst APPLICATION_ADMIN: address = @0xa11ce; /// Creates a new user in the system. Requires the sender to be the application\n/// admin.\npublic fun new(ctx: &mut TxContext): User { assert!(ctx.sender() == APPLICATION_ADMIN, ENotAuthorized); User { id: object::new(ctx) }\n} And now, let's see how the same function would look like with the capability: /// Grants the owner the right to create new users in the system.\npublic struct AdminCap {} /// Creates a new user in the system. Requires the `AdminCap` capability to be\n/// passed as the first argument.\npublic fun new(_: &AdminCap, ctx: &mut TxContext): User { User { id: object::new(ctx) }\n} Using capabilities has several advantages over the address check: Migration of admin rights is easier with capabilities due to them being objects. In case of address, if the admin address changes, all the functions that check the address need to be updated - hence, require a package upgrade . Function signatures are more descriptive with capabilities. It is clear that the new function requires the AdminCap to be passed as an argument. And this function can't be called without it. Object Capabilities don't require extra checks in the function body, and hence, decrease the chance of a developer mistake. An owned Capability also serves in discovery. The owner of the AdminCap can see the object in their account (via a Wallet or Explorer), and know that they have the admin rights. This is less transparent with the address check. However, the address approach has its own advantages. For example, if an address is multisig, and transaction building gets more complex, it might be easier to check the address. Also, if there's a central object of the application that is used in every function, it can store the admin address, and this would simplify migration. The central object approach is also valuable for revokable capabilities, where the admin can revoke the capability from the user.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Address check vs Capability","id":"271","title":"Address check vs Capability"},"272":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"272","title":"Epoch and Time"},"273":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are critical if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"273","title":"Epoch"},"274":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object, but a transaction attempting to access it mutably will fail. This limitation allows parallel access to the Clock object, which is important for maintaining performance. // File: sui-framework/clock.move\n/// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. use sui::clock::Clock; /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"274","title":"Time"},"275":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the vector-based collection types offered by the Sui Framework .","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"275","title":"Collections"},"276":{"body":"While we have previously covered the vector type in the vector section , it is worth going over it again in a new context. This time we will cover the usage of the vector type in objects and how it can be used in an application. module book::collections_vector { use std::string::String; /// The Book that can be sold by a `BookStore` public struct Book has key, store { id: UID, name: String } /// The BookStore that sells `Book`s public struct BookStore has key, store { id: UID, books: vector }\n}","breadcrumbs":"Advanced Programmability » Collections » Vector","id":"276","title":"Vector"},"277":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections_vec_set { use sui::vec_set::{Self, VecSet}; public struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let mut set = vec_set::singleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(&1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(&2); // remove an item from the set }\n} VecSet will fail on attempt to insert a an item that already exists in the set.","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"277","title":"VecSet"},"278":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; public struct Metadata has drop { name: String, /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(&2), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"278","title":"VecMap"},"279":{"body":"Standard collection types are a great way to store typed data with guaranteed safety and consistency. However, they are limited by the type of data they can store - the type system won't allow you to store a wrong type in a collection; and they're limited in size - by the object size limit. They will work for relatively small-sized sets and lists, but for larger collections you may need to use a different approach. Another limitations on collection types is inability to compare them. Because the order of insertion is not guaranteed, an attempt to compare a VecSet to another VecSet may not yield the expected results. This behavior is caught by the linter and will emit a warning: Comparing collections of type 'sui::vec_set::VecSet' may yield unexpected result let mut set1 = vec_set::empty();\nset1.insert(1);\nset1.insert(2); let mut set2 = vec_set::empty();\nset2.insert(2);\nset2.insert(1); assert!(set1 == set2, 0); In the example above, the comparison will fail because the order of insertion is not guaranteed, and the two VecSet instances may have different orders of elements. And the comparison will fail even if the two VecSet instances contain the same elements.","breadcrumbs":"Advanced Programmability » Collections » Limitations","id":"279","title":"Limitations"},"28":{"body":"To speed things up and focus on the application logic, we will provide the code for the todo list application. Replace the contents of the sources/todo_list.move file with the following code: Note: while the contents may seem overwhelming at first, we will break it down in the following sections. Try to focus on what's at hand right now. /// Module: todo_list\nmodule todo_list::todo_list { use std::string::String; /// List of todos. Can be managed by the owner and shared with others. public struct TodoList has key, store { id: UID, items: vector } /// Create a new todo list. public fun new(ctx: &mut TxContext): TodoList { let list = TodoList { id: object::new(ctx), items: vector[] }; (list) } /// Add a new todo item to the list. public fun add(list: &mut TodoList, item: String) { list.items.push_back(item); } /// Remove a todo item from the list by index. public fun remove(list: &mut TodoList, index: u64): String { list.items.remove(index) } /// Delete the list and the capability to manage it. public fun delete(list: TodoList) { let TodoList { id, items: _ } = list; id.delete(); } /// Get the number of items in the list. public fun length(list: &TodoList): u64 { list.items.length() }\n}","breadcrumbs":"Hello, Sui! » Add the code","id":"28","title":"Add the code"},"280":{"body":"Vector is a native type that allows storing a list of items. VecSet is built on top of vector and allows storing sets of unique items. VecMap is used to store key-value pairs in a map-like structure. Vector-based collections are strictly typed and limited by the object size limit and are best suited for small-sized sets and lists.","breadcrumbs":"Advanced Programmability » Collections » Summary","id":"280","title":"Summary"},"281":{"body":"In the next section we will cover Dynamic Fields - an important primitive that allows for Dynamic Collections - a way to store large collections of data in a more flexible, yet more expensive way.","breadcrumbs":"Advanced Programmability » Collections » Next Steps","id":"281","title":"Next Steps"},"282":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages. However, unlike a Map which in Move would be strictly typed (we have covered it in the Collections section), dynamic fields allow attaching objects of any type. A similar approach from the world of frontend development would be a JavaScript Object type which allows storing any type of data dynamically. There's no limit to the number of dynamic fields that can be attached to an object. Thus, dynamic fields can be used to store large amounts of data that don't fit into the object limit size. Dynamic Fields allow for a wide range of applications, from splitting data into smaller parts to avoid object size limit to attaching objects as a part of application logic.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"282","title":"Dynamic Fields"},"283":{"body":"Dynamic Fields are defined in the sui::dynamic_field module of the Sui Framework . They are attached to object's UID via a name , and can be accessed using that name. There can be only one field with a given name attached to an object. File: sui-framework/sources/dynamic_field.move /// Internal object used for storing the field and value\npublic struct Field has key { /// Determined by the hash of the object ID, the field name /// value and it's type, i.e. hash(parent.id || name || Name) id: UID, /// The value for the name of this field name: Name, /// The value bound to this field value: Value,\n} As the definition shows, dynamic fields are stored in an internal Field object, which has the UID generated in a deterministic way based on the object ID, the field name, and the field type. The Field object contains the field name and the value bound to it. The constraints on the Name and Value type parameters define the abilities that the key and value must have.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Definition","id":"283","title":"Definition"},"284":{"body":"The methods available for dynamic fields are straightforward: a field can be added with add, removed with remove, and read with borrow and borrow_mut. Additionally, the exists_ method can be used to check if a field exists (for stricter checks with type, there is an exists_with_type method). module book::dynamic_collection { // a very common alias for `dynamic_field` is `df` since the // module name is quite long use sui::dynamic_field as df; use std::string::String; /// The object that we will attach dynamic fields to. public struct Character has key { id: UID } // List of different accessories that can be attached to a character. // They must have the `store` ability. public struct Hat has key, store { id: UID, color: u32 } public struct Mustache has key, store { id: UID } #[test] fun test_character_and_accessories() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Attach a hat to the character's UID df::add( &mut character.id, b\"hat_key\", Hat { id: object::new(ctx), color: 0xFF0000 } ); // Similarly, attach a mustache to the character's UID df::add( &mut character.id, b\"mustache_key\", Mustache { id: object::new(ctx) } ); // Check that the hat and mustache are attached to the character // assert!(df::exists_(&character.id, b\"hat_key\"), 0); assert!(df::exists_(&character.id, b\"mustache_key\"), 1); // Modify the color of the hat let hat: &mut Hat = df::borrow_mut(&mut character.id, b\"hat_key\"); hat.color = 0x00FF00; // Remove the hat and mustache from the character let hat: Hat = df::remove(&mut character.id, b\"hat_key\"); let mustache: Mustache = df::remove(&mut character.id, b\"mustache_key\"); // Check that the hat and mustache are no longer attached to the character assert!(!df::exists_(&character.id, b\"hat_key\"), 0); assert!(!df::exists_(&character.id, b\"mustache_key\"), 1); sui::test_utils::destroy(character); sui::test_utils::destroy(mustache); sui::test_utils::destroy(hat); }\n} In the example above, we define a Character object and two different types of accessories that could never be put together in a vector. However, dynamic fields allow us to store them together in a single object. Both objects are attached to the Character via a vector (bytestring literal), and can be accessed using their respective keys. As you can see, when we attached the accessories to the Character, we passed them by value . In other words, both values were moved to a new scope, and their ownership was transferred to the Character object. If we changed the ownership of Character object, the accessories would have been moved with it. And the last important property of dynamic fields we should highlight is that they are accessed through their parent . This means that the Hat and Mustache objects are not directly accessible and follow the same rules as the parent object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"284","title":"Usage"},"285":{"body":"Dynamic fields allow objects to carry data of any type, including those defined in other modules. This is possible due to their generic nature and relatively weak constraints on the type parameters. Let's illustrate this by attaching a few different values to a Character object. let mut character = Character { id: object::new(ctx) }; // Attach a `String` via a `vector` name\ndf::add(&mut character.id, b\"string_key\", b\"Hello, World!\".to_string()); // Attach a `u64` via a `u32` name\ndf::add(&mut character.id, 1000u32, 1_000_000_000u64); // Attach a `bool` via a `bool` name\ndf::add(&mut character.id, true, false); In this example we showed how different types can be used for both name and the value of a dynamic field. The String is attached via a vector name, the u64 is attached via a u32 name, and the bool is attached via a bool name. Anything is possible with dynamic fields!","breadcrumbs":"Advanced Programmability » Dynamic Fields » Foreign Types as Dynamic Fields","id":"285","title":"Foreign Types as Dynamic Fields"},"286":{"body":"To prevent orphaned dynamic fields, please, use Dynamic Collection Types such as Bag as they track the dynamic fields and won't allow unpacking if there are attached fields. The object::delete() function, which is used to delete a UID, does not track the dynamic fields, and cannot prevent dynamic fields from becoming orphaned. Once the parent UID is deleted, the dynamic fields are not automatically deleted, and they become orphaned. This means that the dynamic fields are still stored in the blockchain, but they will never become accessible again. let hat = Hat { id: object::new(ctx), color: 0xFF0000 };\nlet mut character = Character { id: object::new(ctx) }; // Attach a `Hat` via a `vector` name\ndf::add(&mut character.id, b\"hat_key\", hat); // ! DO NOT do this in your code\n// ! Danger - deleting the parent object\nlet Character { id } = character;\nid.delete(); // ...`Hat` is now stuck in a limbo, it will never be accessible again Orphaned objects are not a subject to storage rebate, and the storage fees will remain unclaimed. One way to avoid orphaned dynamic fields during unpacking of an object is to return the UID and store it somewhere temporarily until the dynamic fields are removed and handled properly.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Orphaned Dynamic Fields","id":"286","title":"Orphaned Dynamic Fields"},"287":{"body":"In the examples above, we used primitive types as field names since they have the required set of abilities. But dynamic fields get even more interesting when we use custom types as field names. This allows for a more structured way of storing data, and also allows for protecting the field names from being accessed by other modules. /// A custom type with fields in it.\npublic struct AccessoryKey has copy, drop, store { name: String } /// An empty key, can be attached only once.\npublic struct MetadataKey has copy, drop, store {} Two field names that we defined above are AccessoryKey and MetadataKey. The AccessoryKey has a String field in it, hence it can be used multiple times with different name values. The MetadataKey is an empty key, and can be attached only once. let mut character = Character { id: object::new(ctx) }; // Attaching via an `AccessoryKey { name: b\"hat\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"hat\".to_string() }, Hat { id: object::new(ctx), color: 0xFF0000 }\n);\n// Attaching via an `AccessoryKey { name: b\"mustache\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"mustache\".to_string() }, Mustache { id: object::new(ctx) }\n); // Attaching via a `MetadataKey`\ndf::add(&mut character.id, MetadataKey {}, 42); As you can see, custom types do work as field names but as long as they can be constructed by the module, in other words - if they are internal to the module and defined in it. This limitation on struct packing can open up new ways in the design of the application. This approach is used in the Object Capability pattern, where an application can authorize a foreign object to perform operations in it while not exposing the capabilities to other modules.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Type as a Field Name","id":"287","title":"Custom Type as a Field Name"},"288":{"body":"Mutable access to UID is a security risk. Exposing UID of your type as a mutable reference can lead to unwanted modifications or removal of the object's dynamic fields. Additionally, it affects the Transfer to Object and Dynamic Object Fields . Make sure to understand the implications before exposing the UID as a mutable reference. Because dynamic fields are attached to UIDs, their usage in other modules depends on whether the UID can be accessed. By default struct visibility protects the id field and won't let other modules access it directly. However, if there's a public accessor method that returns a reference to UID, dynamic fields can be read in other modules. /// Exposes the UID of the character, so that other modules can read\n/// dynamic fields.\npublic fun uid(c: &Character): &UID { &c.id\n} In the example above, we show how to expose the UID of a Character object. This solution may work for some applications, however, it is important to remember that exposed UID allows reading any dynamic field attached to the object. If you need to expose the UID only within the package, use a restrictive visibility, like public(package), or even better - use more specific accessor methods that would allow only reading specific fields. /// Only allow modules in the same package to access the UID.\npublic(package) fun uid_package(c: &Character): &UID { &c.id\n} /// Allow borrowing dynamic fields from the character.\npublic fun borrow( c: &Character, n: Name\n): &Value { df::borrow(&c.id, n)\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Exposing UID","id":"288","title":"Exposing UID"},"289":{"body":"Dynamic Fields are more expensive than regular fields, as they require additional storage and costs for accessing them. Their flexibility comes at a price, and it is important to understand the implications when making a decision between using dynamic fields and regular fields.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields vs Fields","id":"289","title":"Dynamic Fields vs Fields"},"29":{"body":"To make sure that we did everything correctly, let's build the package by running the sui move build command. If everything is correct, you should see the output similar to the following: $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list If there are no errors following this output, you have successfully built the package. If there are errors, make sure that: The code is copied correctly The file name and the package name is correct There are not many other reasons for the code to fail at this stage. But if you are still having issues, try looking up the structure of the package in this location .","breadcrumbs":"Hello, Sui! » Build the package","id":"29","title":"Build the package"},"290":{"body":"Dynamic Fields are not subject to the object size limit , and can be used to store large amounts of data. However, they are still subject to the dynamic fields created limit , which is set to 1000 fields per transaction.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Limits","id":"290","title":"Limits"},"291":{"body":"Dynamic Fields can play a crucial role in applications of any complexity. They open up a variety of different use cases, from storing heterogeneous data to attaching objects as part of the application logic. They allow for certain upgradeability practices based on the ability to define them later and change the type of the field.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"291","title":"Applications"},"292":{"body":"In the next section we will cover Dynamic Object Fields and explain how they differ from dynamic fields, and what are the implications of using them.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Next Steps","id":"292","title":"Next Steps"},"293":{"body":"This section expands on the Dynamic Fields . Please, read it first to understand the basics of dynamic fields. Another variation of dynamic fields is dynamic object fields , which have certain differences from regular dynamic fields. In this section, we will cover the specifics of dynamic object fields and explain how they differ from regular dynamic fields. General recommendation is to avoid using dynamic object fields in favor of (just) dynamic fields, especially if there's no need for direct discovery through the ID. The extra costs of dynamic object fields may not be justified by the benefits they provide.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Dynamic Object Fields","id":"293","title":"Dynamic Object Fields"},"294":{"body":"Dynamic Object Fields are defined in the sui::dynamic_object_fields module in the Sui Framework . They are similar to dynamic fields in many ways, but unlike them, dynamic object fields have an extra constraint on the Value type. The Value must have a combination of key and store, not just store as in the case of dynamic fields. They're less explicit in their framework definition, as the concept itself is more abstract: File: sui-framework/sources/dynamic_object_fields.move /// Internal object used for storing the field and the name associated with the\n/// value. The separate type is necessary to prevent key collision with direct\n/// usage of dynamic_field\npublic struct Wrapper has copy, drop, store { name: Name,\n} Unlike Field type in the Dynamic Fields section, the Wrapper type only stores the name of the field. The value is the object itself, and is not wrapped . The constraints on the Value type become visible in the methods available for dynamic object fields. Here's the signature for the add function: /// Adds a dynamic object field to the object `object: &mut UID` at field\n/// specified by `name: Name`. Aborts with `EFieldAlreadyExists` if the object\n/// already has that field with that name.\npublic fun add( // we use &mut UID in several spots for access control object: &mut UID, name: Name, value: Value,\n) { /* implementation omitted */ } The rest of the methods which are identical to the ones in the Dynamic Fields section have the same constraints on the Value type. Let's list them for reference: add - adds a dynamic object field to the object remove - removes a dynamic object field from the object borrow - borrows a dynamic object field from the object borrow_mut - borrows a mutable reference to a dynamic object field from the object exists_ - checks if a dynamic object field exists exists_with_type - checks if a dynamic object field exists with a specific type Additionally, there is an id method which returns the ID of the Value object without specifying its type.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Definition","id":"294","title":"Definition"},"295":{"body":"The main difference between dynamic fields and dynamic object fields is that the latter allows storing only objects as values. This means that you can't store primitive types like u64 or bool. It may be considered a limitation, if not for the fact that dynamic object fields are not wrapped into a separate object. The relaxed requirement for wrapping keeps the object available for off-chain discovery via its ID. However, this property may not be outstanding if wrapped object indexing is implemented, making the dynamic object fields a redundant feature. module book::dynamic_object_field { use std::string::String; // there are two common aliases for the long module name: `dof` and // `ofield`. Both are commonly used and met in different projects. use sui::dynamic_object_field as dof; use sui::dynamic_field as df; /// The `Character` that we will use for the example public struct Character has key { id: UID } /// Metadata that doesn't have the `key` ability public struct Metadata has store, drop { name: String } /// Accessory that has the `key` and `store` abilities. public struct Accessory has key, store { id: UID } #[test] fun equip_accessory() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Create an accessory and attach it to the character let hat = Accessory { id: object::new(ctx) }; // Add the hat to the character. Just like with `dynamic_fields` dof::add(&mut character.id, b\"hat_key\", hat); // However for non-key structs we can only use `dynamic_field` df::add(&mut character.id, b\"metadata_key\", Metadata { name: b\"John\".to_string() }); // Borrow the hat from the character let hat_id = dof::id(&character.id, b\"hat_key\").extract(); // Option let hat_ref: &Accessory = dof::borrow(&character.id, b\"hat_key\"); let hat_mut: &mut Accessory = dof::borrow_mut(&mut character.id, b\"hat_key\"); let hat: Accessory = dof::remove(&mut character.id, b\"hat_key\"); // Clean up, Metadata is an orphan now. sui::test_utils::destroy(hat); sui::test_utils::destroy(character); }\n}","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Usage & Differences with Dynamic Fields","id":"295","title":"Usage & Differences with Dynamic Fields"},"296":{"body":"Dynamic Object Fields come a little more exensive than dynamic fields. Because of their internal structure, they require 2 objects: the Wrapper for Name and the Value. Because of this, the cost of adding and accessing object fields (loading 2 objects compared to 1 for dynamic fields) is higher.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Pricing Differences","id":"296","title":"Pricing Differences"},"297":{"body":"Both dynamic field and dynamic object fields are powerful features which allow for innovative solutions in applications. However, they are relatively low-level and require careful handling to avoid orphaned fields. In the next section, we will introduce a higher-level abstraction - Dynamic Collections - which can help with managing dynamic fields and objects more effectively.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Next Steps","id":"297","title":"Next Steps"},"298":{"body":"Sui Framework offers a variety of collection types that build on the dynamic fields and dynamic object fields concepts. These collections are designed to be a safer and more understandable way to store and manage dynamic fields and objects. For each collection type we will specify the primitive they use, and the specific features they offer. Unlike dynamic (object) fields which operate on UID, collection types have their own type and allow calling associated functions .","breadcrumbs":"Advanced Programmability » Dynamic Collections » Dynamic Collections","id":"298","title":"Dynamic Collections"},"299":{"body":"All of the collection types share the same set of methods, which are: add - adds a field to the collection remove - removes a field from the collection borrow - borrows a field from the collection borrow_mut - borrows a mutable reference to a field from the collection contains - checks if a field exists in the collection length - returns the number of fields in the collection is_empty - checks if the length is 0 All collection types support index syntax for borrow and borrow_mut methods. If you see square brackets in the examples, they are translated into borrow and borrow_mut calls. let hat: &Hat = &bag[b\"key\"];\nlet hat_mut: &mut Hat = &mut bag[b\"key\"]; // is equivalent to\nlet hat: &Hat = bag.borrow(b\"key\");\nlet hat_mut: &mut Hat = bag.borrow_mut(b\"key\"); In the examples we won't focus on these functions, but rather on the differences between the collection types.","breadcrumbs":"Advanced Programmability » Dynamic Collections » Common Concepts","id":"299","title":"Common Concepts"},"3":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"3","title":"Install Sui"},"30":{"body":"To publish and interact with the package, we need to set up an account. For the sake of simplicity and demonstration purposes, we will use sui devnet environment. If you already have an account set up, you can skip this step. If you are doing it for the first time, you will need to create a new account. To do this, run the sui client command, then the CLI will prompt you with multiple questions. The answers are marked below with >: $ sui client\nConfig file [\"/path/to/home/.sui/sui_config/client.yaml\"] doesn't exist, do you want to connect to a Sui Full node server [y/N]?\n> y\nSui Full node server URL (Defaults to Sui Testnet if not specified) :\n>\nSelect key scheme to generate keypair (0 for ed25519, 1 for secp256k1, 2: for secp256r1):\n> 0 After you have answered the questions, the CLI will generate a new keypair and save it to the configuration file. You can now use this account to interact with the network. To check that we have the account set up correctly, run the sui client active-address command: $ sui client active-address\n0x.... The command will output the address of your account, it starts with 0x followed by 64 characters.","breadcrumbs":"Hello, Sui! » Set up an account","id":"30","title":"Set up an account"},"300":{"body":"Bag, as the name suggests, acts as a \"bag\" of heterogeneous values. It is a simple, non-generic type that can store any data. Bag will never allow orphaned fields, as it tracks the number of fields and can't be destroyed if it's not empty. // File: sui-framework/sources/bag.move\npublic struct Bag has key, store { /// the ID of this bag id: UID, /// the number of key-value pairs in the bag size: u64,\n} Due to Bag storing any types, the extra methods it offers is: contains_with_type - checks if a field exists with a specific type Used as a struct field: /// Imported from the `sui::bag` module.\nuse sui::bag::{Self, Bag}; /// An example of a `Bag` as a struct field.\npublic struct Carrier has key { id: UID, bag: Bag\n} Using the Bag: let mut bag = bag::new(ctx); // bag has the `length` function to get the number of elements\nassert!(bag.length() == 0, 0); bag.add(b\"my_key\", b\"my_value\".to_string()); // length has changed to 1\nassert!(bag.length() == 1, 1); // in order: `borrow`, `borrow_mut` and `remove`\n// the value type must be specified\nlet field_ref: &String = &bag[b\"my_key\"];\nlet field_mut: &mut String = &mut bag[b\"my_key\"];\nlet field: String = bag.remove(b\"my_key\"); // length is back to 0 - we can unpack\nbag.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Bag","id":"300","title":"Bag"},"301":{"body":"Defined in the sui::object_bag module. Identical to Bag , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectBag","id":"301","title":"ObjectBag"},"302":{"body":"Table is a typed dynamic collection that has a fixed type for keys and values. It is defined in the sui::table module. // File: sui-framework/sources/table.move\npublic struct Table has key, store { /// the ID of this table id: UID, /// the number of key-value pairs in the table size: u64,\n} Used as a struct field: /// Imported from the `sui::table` module.\nuse sui::table::{Self, Table}; /// Some record type with `store`\npublic struct Record has store { /* ... */ } /// An example of a `Table` as a struct field.\npublic struct UserRegistry has key { id: UID, table: Table\n} Using the Table: #[test] fun test_table() {\nlet ctx = &mut tx_context::dummy(); // Table requires explicit type parameters for the key and value\n// ...but does it only once in initialization.\nlet mut table = table::new(ctx); // table has the `length` function to get the number of elements\nassert!(table.length() == 0, 0); table.add(@0xa11ce, b\"my_value\".to_string());\ntable.add(@0xb0b, b\"another_value\".to_string()); // length has changed to 2\nassert!(table.length() == 2, 2); // in order: `borrow`, `borrow_mut` and `remove`\nlet addr_ref = &table[@0xa11ce];\nlet addr_mut = &mut table[@0xa11ce]; // removing both values\nlet _addr = table.remove(@0xa11ce);\nlet _addr = table.remove(@0xb0b); // length is back to 0 - we can unpack\ntable.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Table","id":"302","title":"Table"},"303":{"body":"Defined in the sui::object_table module. Identical to Table , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectTable","id":"303","title":"ObjectTable"},"304":{"body":"Bag - a simple collection that can store any type of data ObjectBag - a collection that can store only objects Table - a typed dynamic collection that has a fixed type for keys and values ObjectTable - same as Table, but can only store objects","breadcrumbs":"Advanced Programmability » Dynamic Collections » Summary","id":"304","title":"Summary"},"305":{"body":"This section is coming soon!","breadcrumbs":"Advanced Programmability » Dynamic Collections » LinkedTable","id":"305","title":"LinkedTable"},"306":{"body":"Witness is a pattern of proving an existence by constructing a proof. In the context of programming, witness is a way to prove a certain property of a system by providing a value that can only be constructed if the property holds.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Pattern: Witness","id":"306","title":"Pattern: Witness"},"307":{"body":"In the Struct section we have shown that a struct can only be created - or packed - by the module defining it. Hence, in Move, a module proves ownership of the type by constructing it. This is one of the most important patterns in Move, and it is widely used for generic type instantiation and authorization. Practically speaking, for the witness to be used, there has to be a function that expects a witness as an argument. In the example below it is the new function that expects a witness of the T type to create a Instance instance. It is often the case that the witness struct is not stored, and for that the function may require the Drop ability for the type. module book::witness { /// A struct that requires a witness to be created. public struct Instance { t: T } /// Create a new instance of `Instance` with the provided T. public fun new(witness: T): Instance { Instance { t: witness } }\n} The only way to construct an Instance is to call the new function with an instance of the type T. This is a basic example of the witness pattern in Move. A module providing a witness often has a matching implementation, like the module book::witness_source below: module book::witness_source { use book::witness::{Self, Instance}; /// A struct used as a witness. public struct W {} /// Create a new instance of `Instance`. public fun new_instance(): Instance { witness::new(W {}) }\n} The instance of the struct W is passed into the new function to create an Instance, thereby proving that the module book::witness_source owns the type W.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Witness in Move","id":"307","title":"Witness in Move"},"308":{"body":"Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting associated behaviors from the type with an option to extend them, if the module provides the ability to do so. // File: sui-framework/sources/balance.move\n/// A Supply of T. Used for minting and burning.\npublic struct Supply has key, store { id: UID, value: u64\n} /// Create a new supply for type T with the provided witness.\npublic fun create_supply(_w: T): Supply { Supply { value: 0 }\n} /// Get the `Supply` value.\npublic fun supply_value(supply: &Supply): u64 { supply.value\n} In the example above, which is borrowed from the balance module of the Sui Framework , the Supply a generic struct that can be constructed only by supplying a witness of the type T. The witness is taken by value and discarded - hence the T must have the drop ability. The instantiated Supply can then be used to mint new Balance's, where T is the type of the supply. // File: sui-framework/sources/balance.move\n/// Storable balance.\nstruct Balance has store { value: u64\n} /// Increase supply by `value` and create a new `Balance` with this value.\npublic fun increase_supply(self: &mut Supply, value: u64): Balance { assert!(value < (18446744073709551615u64 - self.value), EOverflow); self.value = self.value + value; Balance { value }\n}","breadcrumbs":"Advanced Programmability » Pattern: Witness » Instantiating a Generic Type","id":"308","title":"Instantiating a Generic Type"},"309":{"body":"While a struct can be created any number of times, there are cases where a struct should be guaranteed to be created only once. For this purpose, Sui provides the \"One-Time Witness\" - a special witness that can only be used once. We explain it in more detail in the next section .","breadcrumbs":"Advanced Programmability » Pattern: Witness » One Time Witness","id":"309","title":"One Time Witness"},"31":{"body":"In devnet and testnet environments, the CLI provides a way to request coins to your account, so you can interact with the network. To request coins, run the sui client faucet command: $ sui client faucet\nRequest successful. It can take up to 1 minute to get the coin. Run sui client gas to check your gas coins. After waiting a little bit, you can check that the Coin object was sent to your account by running the sui client balance command: $ sui client balance\n╭────────────────────────────────────────╮\n│ Balance of coins owned by this address │\n├────────────────────────────────────────┤\n│ ╭──────────────────────────────────╮ │\n│ │ coin balance (raw) balance │ │\n│ ├──────────────────────────────────┤ │\n│ │ Sui 1000000000 1.00 SUI │ │\n│ ╰──────────────────────────────────╯ │\n╰────────────────────────────────────────╯ Alternatively, you can query objects owned by your account, by running the sui client objects command. The actual output will be different, because the object ID is unique, and so is digest, but the structure will be similar: $ sui client objects\n╭───────────────────────────────────────────────────────────────────────────────────────╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │ │\n│ │ version │ 4 │ │\n│ │ digest │ nA68oa8gab/CdIRw+240wze8u0P+sRe4vcisbENcR4U= │ │\n│ │ objectType │ 0x0000..0002::coin::Coin │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n╰───────────────────────────────────────────────────────────────────────────────────────╯ Now that we have the account set up and the coins in the account, we can interact with the network. We will start by publishing the package to the network.","breadcrumbs":"Hello, Sui! » Requesting Coins","id":"31","title":"Requesting Coins"},"310":{"body":"Witness is a pattern of proving a certain property by constructing a proof. In Move, a module proves ownership of a type by constructing it. Witness is often used for generic type instantiation and authorization.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Summary","id":"310","title":"Summary"},"311":{"body":"In the next section, we will learn about the One Time Witness pattern.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Next Steps","id":"311","title":"Next Steps"},"312":{"body":"While regular Witness is a great way to statically prove the ownership of a type, there are cases where we need to ensure that a Witness is instantiated only once. And this is the purpose of the One Time Witness (OTW).","breadcrumbs":"Advanced Programmability » One Time Witness » One Time Witness","id":"312","title":"One Time Witness"},"313":{"body":"The OTW is a special type of Witness that can be used only once. It cannot be manually created and it is guaranteed to be unique per module. Sui Adapter treats a type as an OTW if it follows these rules: Has only drop ability. Has no fields. Is not a generic type. Named after the module with all uppercase letters. Here is an example of an OTW: module book::one_time { /// The OTW for the `book::one_time` module. /// Only `drop`, no fields, no generics, all uppercase. public struct ONE_TIME has drop {} /// Receive the instance of `ONE_TIME` as the first argument. fun init(otw: ONE_TIME, ctx: &mut TxContext) { // do something with the OTW }\n} The OTW cannot be constructed manually, and any code attempting to do so will result in a compilation error. The OTW can be received as the first argument in the module initializer . And because the init function is called only once per module, the OTW is guaranteed to be instantiated only once.","breadcrumbs":"Advanced Programmability » One Time Witness » Definition","id":"313","title":"Definition"},"314":{"body":"To check if a type is an OTW, sui::types module of the Sui Framework offers a special function is_one_time_witness that can be used to check if the type is an OTW. use sui::types; const ENotOneTimeWitness: u64 = 1; /// Takes an OTW as an argument, aborts if the type is not OTW.\npublic fun takes_witness(otw: T) { assert!(types::is_one_time_witness(&otw), ENotOneTimeWitness);\n}","breadcrumbs":"Advanced Programmability » One Time Witness » Enforcing the OTW","id":"314","title":"Enforcing the OTW"},"315":{"body":"The OTW pattern is a great way to ensure that a type is used only once. Most of the developers should understand how to define and receive the OTW, while the OTW checks and enforcement is mostly needed in libraries and frameworks. For example, the sui::coin module requires an OTW in the coin::create_currency method, therefore enforcing that the coin::TreasuryCap is created only once. OTW is a powerful tool that lays the foundation for the Publisher object, which we will cover in the next section.","breadcrumbs":"Advanced Programmability » One Time Witness » Summary","id":"315","title":"Summary"},"316":{"body":"In application design and development, it is often needed to prove publisher authority. This is especially important in the context of digital assets, where the publisher may enable or disable certain features for their assets. The Publisher Object is an object, defined in the Sui Framework , that allows the publisher to prove their authority over a type .","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher Authority","id":"316","title":"Publisher Authority"},"317":{"body":"The Publisher object is defined in the sui::package module of the Sui Framework. It is a very simple, non-generic object that can be initialized once per module (and multiple times per package) and is used to prove the authority of the publisher over a type. To claim a Publisher object, the publisher must present a One Time Witness to the package::claim function. // File: sui-framework/sources/package.move\npublic struct Publisher has key, store { id: UID, package: String, module_name: String,\n} If you're not familiar with the One Time Witness, you can read more about it here . Here's a simple example of claiming a Publisher object in a module: module book::publisher { /// Some type defined in the module. public struct Book {} /// The OTW for the module. public struct PUBLISHER has drop {} /// Uses the One Time Witness to claim the Publisher object. fun init(otw: PUBLISHER, ctx: &mut TxContext) { // Claim the Publisher object. let publisher = sui::package::claim(otw, ctx); // Usually it is transferred to the sender. // It can also be stored in another object. transfer::public_transfer(publisher, ctx.sender()) }\n}","breadcrumbs":"Advanced Programmability » Publisher Authority » Definition","id":"317","title":"Definition"},"318":{"body":"The Publisher object has two functions associated with it which are used to prove the publisher's authority over a type: // Checks if the type is from the same module, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_module(), 0); // Checks if the type is from the same package, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_package(), 0);","breadcrumbs":"Advanced Programmability » Publisher Authority » Usage","id":"318","title":"Usage"},"319":{"body":"For small applications or simple use cases, the Publisher object can be used as an admin capability . While in the broader context, the Publisher object has control over system configurations, it can also be used to manage the application's state. /// Some action in the application gated by the Publisher object.\npublic fun admin_action(cap: &Publisher, /* app objects... */ param: u64) { assert!(cap.from_module(), ENotAuthorized); // perform application-specific action\n} However, Publisher misses some native properties of Capabilities , such as type safety and expressiveness. The signature for the admin_function is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher as Admin Role","id":"319","title":"Publisher as Admin Role"},"32":{"body":"To publish the package to the network, we will use the sui client publish command. The command will automatically build the package and use its bytecode to publish in a single transaction. We are using the --gas-budget argument during publishing. It specifies how much gas we are willing to spend on the transaction. We won't touch on this topic in this section, but it's important to know that every transaction in Sui costs gas, and the gas is paid in SUI coins. The gas-budget is specified in MISTs . 1 SUI equals 10^9 MISTs. For the sake of demonstration, we will use 100,000,000 MISTs, which is 0.1 SUI. # run this from the `todo_list` folder\n$ sui client publish --gas-budget 100000000 # alternatively, you can specify path to the package\n$ sui client publish --gas-budget 100000000 todo_list The output of the publish command is rather lengthy, so we will show and explain it in parts. $ sui client publish --gas-budget 100000000\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list\nSuccessfully verified dependencies on-chain against source.\nTransaction Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW As you can see, when we run the publish command, the CLI first builds the package, then verifies the dependencies on-chain, and finally publishes the package. The output of the command is the transaction digest, which is a unique identifier of the transaction and can be used to query the transaction status.","breadcrumbs":"Hello, Sui! » Publish","id":"32","title":"Publish"},"320":{"body":"Publisher is required for certain features on Sui. Object Display can be created only by the Publisher, and TransferPolicy - an important component of the Kiosk system - also requires the Publisher object to prove ownership of the type.","breadcrumbs":"Advanced Programmability » Publisher Authority » Role on Sui","id":"320","title":"Role on Sui"},"321":{"body":"In the next chapter we will cover the first feature that requires the Publisher object - Object Display - a way to describe objects for clients, and standardize metadata. A must-have for user-friendly applications.","breadcrumbs":"Advanced Programmability » Publisher Authority » Next Steps","id":"321","title":"Next Steps"},"322":{"body":"Objects on Sui are explicit in their structure and behavior and can be displayed in an understandable way. However, to support richer metadata for clients, there's a standard and efficient way of \"describing\" them to the client - the Display object defined in the Sui Framework .","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"322","title":"Object Display"},"323":{"body":"Historically, there were different attempts to agree on a standard structure of an object so it can be displayed in a user interface. One of the approaches was to define certain fields in the object struct which, when present, would be used in the UI. This approach was not flexible enough and required developers to define the same fields in every object, and sometimes the fields did not make sense for the object. /// An attempt to standardize the object structure for display.\npublic struct CounterWithDisplay has key { id: UID, /// If this field is present it will be displayed in the UI as `name`. name: String, /// If this field is present it will be displayed in the UI as `description`. description: String, // ... image: String, /// Actual fields of the object. counter: u64, // ...\n} If any of the fields contained static data, it would be duplicated in every object. And, since Move does not have interfaces, it is not possible to know if an object has a specific field without \"manually\" checking the object's type, which makes the client fetching more complex.","breadcrumbs":"Advanced Programmability » Display » Background","id":"323","title":"Background"},"324":{"body":"To address these issues, Sui introduces a standard way of describing an object for display. Instead of defining fields in the object struct, the display metadata is stored in a separate object, which is associated with the type. This way, the display metadata is not duplicated, and it is easy to extend and maintain. Another important feature of Sui Display is the ability to define templates and use object fields in those templates. Not only it allows for a more flexible display, but it also frees the developer from the need to define the same fields with the same names and types in every object. The Object Display is natively supported by the Sui Fullnode, and the client can fetch the display metadata for any object if the object type has a Display associated with it. module book::arena { use std::string::String; use sui::package; use sui::display; /// The One Time Witness to claim the `Publisher` object. public struct ARENA has drop {} /// Some object which will be displayed. public struct Hero has key { id: UID, class: String, level: u64, } /// In the module initializer we create the `Publisher` object, and then /// the Display for the `Hero` type. fun init(otw: ARENA, ctx: &mut TxContext) { let publisher = package::claim(otw, ctx); let mut display = display::new(&publisher, ctx); display.add( b\"name\".to_string(), b\"{class} (lvl. {level})\".to_string() ); display.add( b\"description\".to_string(), b\"One of the greatest heroes of all time. Join us!\".to_string() ); display.add( b\"link\".to_string(), b\"https://example.com/hero/{id}\".to_string() ); display.add( b\"image_url\".to_string(), b\"https://example.com/hero/{class}.jpg\".to_string() ); // Update the display with the new data. // Must be called to apply changes. display.update_version(); transfer::public_transfer(publisher, ctx.sender()); transfer::public_transfer(display, ctx.sender()); }\n}","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"324","title":"Object Display"},"325":{"body":"While the objects can be owned by accounts and may be a subject to True Ownership , the Display can be owned by the creator of the object. This way, the creator can update the display metadata and apply the changes globally without the need to update every object. The creator can also transfer Display to another account or even build an application around the object with custom functionality to manage the metadata.","breadcrumbs":"Advanced Programmability » Display » Creator Privilege","id":"325","title":"Creator Privilege"},"326":{"body":"The fields that are supported most widely are: name - A name for the object. The name is displayed when users view the object. description - A description for the object. The description is displayed when users view the object. link - A link to the object to use in an application. image_url - A URL or a blob with the image for the object. thumbnail_url - A URL to a smaller image to use in wallets, explorers, and other products as a preview. project_url - A link to a website associated with the object or creator. creator - A string that indicates the object creator. Please, refer to the Sui Documentation for the most up-to-date list of supported fields. While there's a standard set of fields, the Display object does not enforce them. The developer can define any fields they need, and the client can use them as they see fit. Some applications may require additional fields, and omit other, and the Display is flexible enough to support them.","breadcrumbs":"Advanced Programmability » Display » Standard Fields","id":"326","title":"Standard Fields"},"327":{"body":"The Display object is defined in the sui::display module. It is a generic struct that takes a phantom type as a parameter. The phantom type is used to associate the Display object with the type it describes. The fields of the Display object are a VecMap of key-value pairs, where the key is the field name and the value is the field value. The version field is used to version the display metadata, and is updated on the update_display call. File: sui-framework/sources/display.move struct Display has key, store { id: UID, /// Contains fields for display. Currently supported /// fields are: name, link, image and description. fields: VecMap, /// Version that can only be updated manually by the Publisher. version: u16\n} The Publisher object is required to a new Display, since it serves as the proof of ownership of type.","breadcrumbs":"Advanced Programmability » Display » Working with Display","id":"327","title":"Working with Display"},"328":{"body":"Currently, Display supports simple string interpolation and can use struct fields (and paths) in its templates. The syntax is trivial - {path} is replaced with the value of the field at the path. The path is a dot-separated list of field names, starting from the root object in case of nested fields. /// Some common metadata for objects.\npublic struct Metadata has store { name: String, description: String, published_at: u64\n} /// The type with nested Metadata field.\npublic struct LittlePony has key, store { id: UID, image_url: String, metadata: Metadata\n} The Display for the type LittlePony above could be defined as follows: { \"name\": \"Just a pony\", \"image_url\": \"{image_url}\", \"description\": \"{metadata.description}\"\n}","breadcrumbs":"Advanced Programmability » Display » Template Syntax","id":"328","title":"Template Syntax"},"329":{"body":"There's no restriction to how many Display objects can be created for a specific T. However, the most recently updated Display will be used by the fullnode.","breadcrumbs":"Advanced Programmability » Display » Multiple Display Objects","id":"329","title":"Multiple Display Objects"},"33":{"body":"The section titled TransactionData contains the information about the transaction we just sent. It features fields like sender, which is your address, the gas_budget set with the --gas-budget argument, and the Coin we used for payment. It also prints the Commands that were run by the CLI. In this example, the commands Publish and TransferObject were run - the latter transfers a special object UpgradeCap to the sender. ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Version: 7 │\n│ │ Digest: AXYPnups8A5J6pkvLa6RekX2ye3qur66EZ88mEbaUDQ1 │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭─────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├─────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Publish: │ │\n│ │ ┌ │ │\n│ │ │ Dependencies: │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰─────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ gebjSbVwZwTkizfYg2XIuzdx+d66VxFz8EmVaisVFiV3GkDay6L+hQG3n2CQ1hrWphP6ZLc7bd1WRq4ss+hQAQ== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Data","id":"33","title":"Transaction Data"},"330":{"body":"Sui Object Display is Sui Documentation Publisher - the representation of the creator","breadcrumbs":"Advanced Programmability » Display » Further Reading","id":"330","title":"Further Reading"},"331":{"body":"Events are a way to notify off-chain listeners about on-chain events. They are used to emit additional information about the transaction that is not stored - and, hence, can't be accessed - on-chain. Events are emitted by the sui::event module located in the Sui Framework . Any custom type with the copy and drop abilities can be emitted as an event. Sui Verifier requires the type to be internal to the module. // File: sui-framework/sources/event.move\nmodule sui::event { /// Emit a custom Move event, sending the data offchain. /// /// Used for creating custom indexes and tracking onchain /// activity in a way that suits a specific application the most. /// /// The type `T` is the main way to index the event, and can contain /// phantom parameters, eg `emit(MyEvent)`. public native fun emit(event: T);\n}","breadcrumbs":"Advanced Programmability » Events » Events","id":"331","title":"Events"},"332":{"body":"Events are emitted using the emit function in the sui::event module. The function takes a single argument - the event to be emitted. The event data is passed by value, module book::events { use sui::coin::Coin; use sui::sui::SUI; use sui::event; /// The item that can be purchased. public struct Item has key { id: UID } /// Event emitted when an item is purchased. Contains the ID of the item and /// the price for which it was purchased. public struct ItemPurchased has copy, drop { item: ID, price: u64 } /// A marketplace function which performs the purchase of an item. public fun purchase(coin: Coin, ctx: &mut TxContext) { let item = Item { id: object::new(ctx) }; // Create an instance of `ItemPurchased` and pass it to `event::emit`. event::emit(ItemPurchased { item: object::id(&item), price: coin.value() }); // Omitting the rest of the implementation to keep the example simple. abort 0 }\n} The Sui Verifier requires the type passed to the emit function to be internal to the module . So emitting a type from another module will result in a compilation error. Primitive types, although they match the copy and drop requirement, are not allowed to be emitted as events.","breadcrumbs":"Advanced Programmability » Events » Emitting Events","id":"332","title":"Emitting Events"},"333":{"body":"Events are a part of the transaction result and are stored in the transaction effects . As such, they natively have the sender field which is the address who sent the transaction. So adding a \"sender\" field to the event is not necessary. Similarly, event metadata contains the timestamp. But it is important to note that the timestamp is relative to the node and may vary a little from node to node.","breadcrumbs":"Advanced Programmability » Events » Event Structure","id":"333","title":"Event Structure"},"334":{"body":"Sui Framework is a default dependency set in the Package Manifest . It depends on the Standard Library and provides Sui-specific features, including the interaction with the storage, and Sui-specific native types and modules. For convenience, we grouped the modules in the Sui Framework into multiple categories. But they're still part of the same framework.","breadcrumbs":"Advanced Programmability » Sui Framework » Sui Framework","id":"334","title":"Sui Framework"},"335":{"body":"Module Description Chapter sui::address Adds conversion methods to the address type Address sui::transfer Implements the storage operations for Objects It starts with an Object sui::tx_context Contains the TxContext struct and methods to read it Transaction Context sui::object Defines the UID and ID type, required for creating objects It starts with an Object sui::clock Defines the Clock type and its methods Epoch and Time sui::dynamic_field Implements methods to add, use and remove dynamic fields Dynamic Fields sui::dynamic_object_field Implements methods to add, use and remove dynamic object fields Dynamic Object Fields sui::event Allows emitting events for off-chain listeners Events sui::package Defines the Publisher type and package upgrade methods Publisher , Package Upgrades sui::display Implements the Display object and ways to create and update it Display","breadcrumbs":"Advanced Programmability » Sui Framework » Core","id":"335","title":"Core"},"336":{"body":"Module Description Chapter sui::vec_set Implements a set type Collections sui::vec_map Implements a map with vector keys Collections sui::table Implements the Table type and methods to interact with it Dynamic Collections sui::linked_table Implements the LinkedTable type and methods to interact with it Dynamic Collections sui::bag Implements the Bag type and methods to interact with it Dynamic Collections sui::object_table Implements the ObjectTable type and methods to interact with it Dynamic Collections sui::object_bag Implements the ObjectBag type and methods to interact with it Dynamic Collections","breadcrumbs":"Advanced Programmability » Sui Framework » Collections","id":"336","title":"Collections"},"337":{"body":"Module Description Chapter sui::bcs Implements the BCS encoding and decoding functions Binary Canonical Serialization","breadcrumbs":"Advanced Programmability » Sui Framework » Utilities","id":"337","title":"Utilities"},"338":{"body":"Sui Framework exports two named addresses: sui = 0x2 and std = 0x1 from the std dependency. [addresses]\nsui = \"0x2\" # Exported from the MoveStdlib dependency\nstd = \"0x1\"","breadcrumbs":"Advanced Programmability » Sui Framework » Exported Addresses","id":"338","title":"Exported Addresses"},"339":{"body":"Just like with Standard Library , some of the modules and types are imported implicitly in the Sui Framework. This is the list of modules and types that are available without explicit use import: sui::object sui::object::ID sui::object::UID sui::tx_context sui::tx_context::TxContext sui::transfer","breadcrumbs":"Advanced Programmability » Sui Framework » Implicit Imports","id":"339","title":"Implicit Imports"},"34":{"body":"Transaction Effects contains the status of the transaction, the changes that the transaction made to the state of the network and the objects involved in the transaction. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW │\n│ Status: Success │\n│ Executed Epoch: 411 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ ┌── │\n│ │ ID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Owner: Immutable │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 10404400 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ 7Ukrc5GqdFqTA41wvWgreCdHn2vRLfgQ3YMFkdks72Vk │\n│ 7d4amuHGhjtYKujEs9YkJARzNEn4mRbWWv3fn4cdKdyh │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Effects","id":"34","title":"Transaction Effects"},"340":{"body":"The source code of the Sui Framework is available in the Sui repository .","breadcrumbs":"Advanced Programmability » Sui Framework » Source Code","id":"340","title":"Source Code"},"341":{"body":"Binary Canonical Serialization (BCS) is a binary encoding format for structured data. It was originally designed in Diem, and became the standard serialization format for Move. BCS is simple, efficient, deterministic, and easy to implement in any programming language. The full format specification is available in the BCS repository .","breadcrumbs":"Advanced Programmability » BCS » Binary Canonical Serialization","id":"341","title":"Binary Canonical Serialization"},"342":{"body":"BCS is a binary format that supports unsigned integers up to 256 bits, options, booleans, unit (empty value), fixed and variable-length sequences, and maps. The format is designed to be deterministic, meaning that the same data will always be serialized to the same bytes. \"BCS is not a self-describing format. As such, in order to deserialize a message, one must know the message type and layout ahead of time\" from the README Integers are stored in little-endian format, and variable-length integers are encoded using a variable-length encoding scheme. Sequences are prefixed with their length as ULEB128, enumerations are stored as the index of the variant followed by the data, and maps are stored as an ordered sequence of key-value pairs. Structs are treated as a sequence of fields, and the fields are serialized in the order they are defined in the struct. The fields are serialized using the same rules as the top-level data.","breadcrumbs":"Advanced Programmability » BCS » Format","id":"342","title":"Format"},"343":{"body":"The Sui Framework includes the sui::bcs module for encoding and decoding data. Encoding functions are native to the VM, and decoding functions are implemented in Move.","breadcrumbs":"Advanced Programmability » BCS » Using BCS","id":"343","title":"Using BCS"},"344":{"body":"To encode data, use the bcs::to_bytes function, which converts data references into byte vectors. This function supports encoding any types, including structs. // File: move-stdlib/sources/bcs.move\npublic native fun to_bytes(t: &T): vector; The following example shows how to encode a struct using BCS. The to_bytes function can take any value and encode it as a vector of bytes. use sui::bcs; // 0x01 - a single byte with value 1 (or 0 for false)\nlet bool_bytes = bcs::to_bytes(&true);\n// 0x2a - just a single byte\nlet u8_bytes = bcs::to_bytes(&42u8);\n// 0x000000000000002a - 8 bytes\nlet u64_bytes = bcs::to_bytes(&42u64);\n// address is a fixed sequence of 32 bytes\n// 0x0000000000000000000000000000000000000000000000000000000000000002\nlet addr = bcs::to_bytes(&@sui);","breadcrumbs":"Advanced Programmability » BCS » Encoding","id":"344","title":"Encoding"},"345":{"body":"Structs encode similarly to simple types. Here is how to encode a struct using BCS: let data = CustomData { num: 42, string: b\"hello, world!\".to_string(), value: true\n}; let struct_bytes = bcs::to_bytes(&data); let mut custom_bytes = vector[];\ncustom_bytes.append(bcs::to_bytes(&42u8));\ncustom_bytes.append(bcs::to_bytes(&b\"hello, world!\".to_string()));\ncustom_bytes.append(bcs::to_bytes(&true)); // struct is just a sequence of fields, so the bytes should be the same!\nassert!(&struct_bytes == &custom_bytes, 0);","breadcrumbs":"Advanced Programmability » BCS » Encoding a Struct","id":"345","title":"Encoding a Struct"},"346":{"body":"Because BCS does not self-describe and Move is statically typed, decoding requires prior knowledge of the data type. The sui::bcs module provides various functions to assist with this process.","breadcrumbs":"Advanced Programmability » BCS » Decoding","id":"346","title":"Decoding"},"347":{"body":"BCS is implemented as a wrapper in Move. The decoder takes the bytes by value, and then allows the caller to peel off the data by calling different decoding functions, prefixed with peel_*. The data is split off the bytes, and the remainder bytes are kept in the wrapper until the into_remainder_bytes function is called. use sui::bcs; // BCS instance should always be declared as mutable\nlet mut bcs = bcs::new(x\"010000000000000000\"); // Same bytes can be read differently, for example: Option\nlet value: Option = bcs.peel_option_u64(); assert!(value.is_some(), 0);\nassert!(value.borrow() == &0, 1); let remainder = bcs.into_remainder_bytes(); assert!(remainder.length() == 0, 2); There is a common practice to use multiple variables in a single let statement during decoding. It makes code a little bit more readable and helps to avoid unnecessary copying of the data. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // mind the order!!!\n// handy way to peel multiple values\nlet (bool_value, u8_value, u64_value) = ( bcs.peel_bool(), bcs.peel_u8(), bcs.peel_u64()\n);","breadcrumbs":"Advanced Programmability » BCS » Wrapper API","id":"347","title":"Wrapper API"},"348":{"body":"While most of the primitive types have a dedicated decoding function, vectors need special handling, which depends on the type of the elements. For vectors, first you need to decode the length of the vector, and then decode each element in a loop. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // bcs.peel_vec_length() peels the length of the vector :)\nlet mut len = bcs.peel_vec_length();\nlet mut vec = vector[]; // then iterate depending on the data type\nwhile (len > 0) { vec.push_back(bcs.peel_u64()); // or any other type len = len - 1;\n}; assert!(vec.length() == 1, 0); For most common scenarios, bcs module provides a basic set of functions for decoding vectors: peel_vec_address(): vector
peel_vec_bool(): vector peel_vec_u8(): vector peel_vec_u64(): vector peel_vec_u128(): vector peel_vec_vec_u8(): vector> - vector of byte vectors","breadcrumbs":"Advanced Programmability » BCS » Decoding Vectors","id":"348","title":"Decoding Vectors"},"349":{"body":"Option is represented as a vector of either 0 or 1 element. To read an option, you would treat it like a vector and check its length (first byte - either 1 or 0). let mut bcs = bcs::new(x\"00\");\nlet is_some = bcs.peel_bool(); assert!(is_some == false, 0); let mut bcs = bcs::new(x\"0101\");\nlet is_some = bcs.peel_bool();\nlet value = bcs.peel_u8(); assert!(is_some == true, 1);\nassert!(value == 1, 2); If you need to decode an option of a custom type, use the method in the code snippet above. The most common scenarios, bcs module provides a basic set of functions for decoding Option's: peel_option_address(): Option
peel_option_bool(): Option peel_option_u8(): Option peel_option_u64(): Option peel_option_u128(): Option","breadcrumbs":"Advanced Programmability » BCS » Decoding Option","id":"349","title":"Decoding Option"},"35":{"body":"If there were any events emitted, you would see them in this section. Our package does not use events, so the section is empty. ╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯","breadcrumbs":"Hello, Sui! » Events","id":"35","title":"Events"},"350":{"body":"Structs are decoded field by field, and there is no standard function to automatically decode bytes into a Move struct, and it would have been a violation of the Move's type system. Instead, you need to decode each field manually. // some bytes... let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); let (age, is_active, name) = ( bcs.peel_u8(), bcs.peel_bool(), bcs.peel_vec_u8().to_string()\n); let user = User { age, is_active, name };","breadcrumbs":"Advanced Programmability » BCS » Decoding Structs","id":"350","title":"Decoding Structs"},"351":{"body":"Binary Canonical Serialization is an efficient binary format for structured data, ensuring consistent serialization across platforms. The Sui Framework provides comprehensive tools for working with BCS, allowing extensive functionality through built-in functions.","breadcrumbs":"Advanced Programmability » BCS » Summary","id":"351","title":"Summary"},"352":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language. This guide provides a high-level overview of the changes in the new edition. For a more detailed and exhaustive list of changes, refer to the Sui Documentation .","breadcrumbs":"2024 Migration Guide » Move 2024 Migration Guide","id":"352","title":"Move 2024 Migration Guide"},"353":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.beta. edition = \"2024.beta\";","breadcrumbs":"2024 Migration Guide » Using the New Edition","id":"353","title":"Using the New Edition"},"354":{"body":"The Move CLI has a migration tool that updates the code to the new edition. To use the migration tool, run the following command: $ sui move migrate The migration tool will update the code to use the let mut syntax, the new public modifier for strucs, and the public(package) function visibility instead of friend declarations.","breadcrumbs":"2024 Migration Guide » Migration Tool","id":"354","title":"Migration Tool"},"355":{"body":"Move 2024 introduces let mut syntax to declare mutable variables. The let mut syntax is used to declare a mutable variable that can be changed after it is declared. let mut declaration is now required for mutable variables. Compiler will emit an error if you try to reassign a variable without the mut keyword. // Move 2020\nlet x: u64 = 10;\nx = 20; // Move 2024\nlet mut x: u64 = 10;\nx = 20; Additionally, the mut keyword is used in tuple destructuring and function arguments to declare mutable variables. // takes by value and mutates\nfun takes_by_value_and_mutates(mut v: Value): Value { v.field = 10; v\n} // `mut` should be placed before the variable name\nfun destruct() { let (x, y) = point::get_point(); let (mut x, y) = point::get_point(); let (mut x, mut y) = point::get_point();\n} // in struct unpack\nfun unpack() { let Point { x, mut y } = point::get_point(); let Point { mut x, mut y } = point::get_point();\n}","breadcrumbs":"2024 Migration Guide » Mutable bindings with let mut","id":"355","title":"Mutable bindings with let mut"},"356":{"body":"In Move 2024, the friend keyword is deprecated. Instead, you can use the public(package) visibility modifier to make functions visible to other modules in the same package. // Move 2020\nfriend book::friend_module;\npublic(friend) fun protected_function() {} // Move 2024\npublic(package) fun protected_function_2024() {}","breadcrumbs":"2024 Migration Guide » Friends are Deprecated","id":"356","title":"Friends are Deprecated"},"357":{"body":"In Move 2024, structs get a visibility modifier. Currently, the only available visibility modifier is public. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"2024 Migration Guide » Struct Visibility","id":"357","title":"Struct Visibility"},"358":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. Methods are automatically exported if the type is defined in the same module as the method. It is impossible to export methods for types defined in other modules. However, you can create custom aliases for methods in the module scope. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"2024 Migration Guide » Method Syntax","id":"358","title":"Method Syntax"},"359":{"body":"In Move 2024, some of the native and standard types received associated methods. For example, the vector type has a to_string method that converts the vector into a UTF8 string. fun aliases() { // vector to string and ascii string let str: String = b\"Hello, World!\".to_string(); let ascii: ascii::String = b\"Hello, World!\".to_ascii_string(); // address to bytes let bytes = @0xa11ce.to_bytes();\n} For the full list of built-in aliases, refer to the Standard Library and Sui Framework source code.","breadcrumbs":"2024 Migration Guide » Methods for Built-in Types","id":"359","title":"Methods for Built-in Types"},"36":{"body":"These are the changes to objects that transaction has made. In our case, we have created a new UpgradeCap object which is a special object that allows the sender to upgrade the package in the future, mutated the Gas object, and published a new package. Packages are also objects on Sui. ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├──────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::package::UpgradeCap │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Published Objects: │\n│ ┌── │\n│ │ PackageID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ │ Modules: todo_list │\n│ └── │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Object Changes","id":"36","title":"Object Changes"},"360":{"body":"Some of the built-in types support borrowing operators. The borrowing operator is used to get a reference to the element at the specified index. The borrowing operator is defined as []. fun play_vec() { let v = vector[1,2,3,4]; let first = &v[0]; // calls vector::borrow(v, 0) let first_mut = &mut v[0]; // calls vector::borrow_mut(v, 0) let first_copy = v[0]; // calls *vector::borrow(v, 0)\n} Types that support the borrowing operator are: vector sui::vec_map::VecMap sui::table::Table sui::bag::Bag sui::object_table::ObjectTable sui::object_bag::ObjectBag sui::linked_table::LinkedTable To implement the borrowing operator for a custom type, you need to add a #[syntax(index)] attribute to the methods. #[syntax(index)]\npublic fun borrow(c: &List, key: String): &T { /* ... */ } #[syntax(index)]\npublic fun borrow_mut(c: &mut List, key: String): &mut T { /* ... */ }","breadcrumbs":"2024 Migration Guide » Borrowing Operator","id":"360","title":"Borrowing Operator"},"361":{"body":"In Move 2024, methods can be associated with types. The alias can be defined for any type locally to the module; or publicly, if the type is defined in the same module. // my_module.move\n// Local: type is foreign to the module\nuse fun my_custom_function as vector.do_magic; // sui-framework/kiosk/kiosk.move\n// Exported: type is defined in the same module\npublic use fun kiosk_owner_cap_for as KioskOwnerCap.kiosk;","breadcrumbs":"2024 Migration Guide » Method Aliases","id":"361","title":"Method Aliases"},"362":{"body":"To talk about best practices for upgradeability, we need to first understand what can be upgraded in a package. The base premise of upgradeability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed (if they are not used in public signatures) use std::string::String; use sui::event; // can be removed // public structs can not be removed and can't be changed public struct Book has key { id: UID, title: String, } // public structs can not be removed and can't be changed public struct BookCreated has copy, drop { /* ... */ } // public functions can not be removed and their signature can never change // but the implementation can be changed public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) // can be removed and changed event::emit(BookCreated { /* ... */ }) } // package-visibility functions can be removed and changed public(package) fun create_book_package(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Upgradability Practices » Upgradeability Practices","id":"362","title":"Upgradeability Practices"},"363":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) public struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Upgradability Practices » Versioning objects","id":"363","title":"Versioning objects"},"364":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { use sui::vec_map::VecMap; use std::string::String; /// The base object public struct Config has key { id: UID, version: u16 } /// The actual configuration public struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Upgradability Practices » Versioning configuration with dynamic fields","id":"364","title":"Versioning configuration with dynamic fields"},"365":{"body":"This section is coming soon!","breadcrumbs":"Upgradability Practices » Modular architecture","id":"365","title":"Modular architecture"},"366":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Building against Limits » Building against Limits","id":"366","title":"Building against Limits"},"367":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Building against Limits » Transaction Size","id":"367","title":"Transaction Size"},"368":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Building against Limits » Object Size","id":"368","title":"Object Size"},"369":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Building against Limits » Single Pure Argument Size","id":"369","title":"Single Pure Argument Size"},"37":{"body":"This last section contains changes to SUI Coins, in our case, we have spent around 0.015 SUI, which in MIST is 10,500,000. You can see it under the amount field in the output. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -10426280 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Balance Changes","id":"37","title":"Balance Changes"},"370":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Building against Limits » Maximum Number of Objects created","id":"370","title":"Maximum Number of Objects created"},"371":{"body":"The maximum number of dynamic fields that can be created in a single object is 1024. If an object attempts to create more than 1024 dynamic fields, it will be rejected by the network.","breadcrumbs":"Building against Limits » Maximum Number of Dynamic Fields created","id":"371","title":"Maximum Number of Dynamic Fields created"},"372":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Building against Limits » Maximum Number of Events","id":"372","title":"Maximum Number of Events"},"373":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Better error handling » Better error handling","id":"373","title":"Better error handling"},"374":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Better error handling » Rule 1: Handle all possible scenarios","id":"374","title":"Rule 1: Handle all possible scenarios"},"375":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Better error handling » Rule 2: Abort with different codes","id":"375","title":"Rule 2: Abort with different codes"},"376":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Better error handling » Rule 3: Return bool instead of assert","id":"376","title":"Rule 3: Return bool instead of assert"},"377":{"body":"","breadcrumbs":"Coding Conventions » Coding Conventions","id":"377","title":"Coding Conventions"},"378":{"body":"","breadcrumbs":"Coding Conventions » Naming","id":"378","title":"Naming"},"379":{"body":"Module names should be in snake_case. Module names should be descriptive and should not be too long. module book::conventions { /* ... */ }\nmodule book::common_pracices { /* ... */ }","breadcrumbs":"Coding Conventions » Module","id":"379","title":"Module"},"38":{"body":"It is possible to specify the --json flag during publishing to get the output in JSON format. This is useful if you want to parse the output programmatically or store it for later use. $ sui client publish --gas-budget 100000000 --json","breadcrumbs":"Hello, Sui! » Alternative Output","id":"38","title":"Alternative Output"},"380":{"body":"Constants should be in SCREAMING_SNAKE_CASE. Error constants should be in EPascalCase const MAX_PRICE: u64 = 1000;\nconst EInvalidInput: u64 = 0;","breadcrumbs":"Coding Conventions » Constant","id":"380","title":"Constant"},"381":{"body":"Function names should be in snake_case. Function names should be descriptive. public fun add(a: u64, b: u64): u64 { a + b }\npublic fun create_if_not_exists() { /* ... */ }","breadcrumbs":"Coding Conventions » Function","id":"381","title":"Function"},"382":{"body":"Struct names should be in PascalCase. Struct fields should be in snake_case. Capabilities should be suffixed with Cap. public struct Hero has key { id: UID value: u64, another_value: u64,\n} public struct AdminCap has key { id: UID }","breadcrumbs":"Coding Conventions » Struct","id":"382","title":"Struct"},"383":{"body":"Struct methods should be in snake_case. If there's multiple structs with the same method, the method should be prefixed with the struct name. In this case, an alias can be added to the method using use fun. public fun value(h: &Hero): u64 { h.value } public use fun hero_health as Hero.health;\npublic fun hero_health(h: &Hero): u64 { h.another_value } public use fun boar_health as Boar.health;\npublic fun boar_health(b: &Boar): u64 { b.another_value }","breadcrumbs":"Coding Conventions » Struct Method","id":"383","title":"Struct Method"},"384":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Parallel Execution - term used to describe the ability of the Sui runtime to execute transactions in parallel, including the ones that involve shared objects. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"A - Glossary » Appendix A: Glossary","id":"384","title":"Appendix A: Glossary"},"385":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"A - Glossary » Abilities","id":"385","title":"Abilities"},"386":{"body":"Reserved addresses are special addresses that have a specific purpose on Sui. They stay the same between environments and are used for specific native operations. 0x1 - address of the Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the SuiSystem object 0x6 - address of the system Clock object 0x8 - address of the system Random object 0x403 - address of the DenyList system object","breadcrumbs":"B - Reserved Addresses » Appendix B: Reserved Addresses","id":"386","title":"Appendix B: Reserved Addresses"},"387":{"body":"This section lists publications related to Move and Sui. The Move Borrow Checker by Sam Blackshear, John Mitchell, Todd Nowacki, Shaz Qadeer. Resources: A Safe Language Abstraction for Money by Sam Blackshear, David L. Dill, Shaz Qadeer, Clark W. Barrett, John C. Mitchell, Oded Padon, Yoni Zohar. Robust Safety for Move by Marco Patrignani, Sam Blackshear","breadcrumbs":"C - Publications » Appendix C: Publications","id":"387","title":"Appendix C: Publications"},"388":{"body":"To contribute to this book, please, submit a pull request to the GitHub repository . The repository contains the source files for the book, written in mdBook format.","breadcrumbs":"D - Contributing » Appendix D: Contributing","id":"388","title":"Appendix D: Contributing"},"389":{"body":"The Rust Book has been a great inspiration for this book. I am personally grateful to the authors of the book, Steve Klabnik and Carol Nichols, for their work, as I have learned a lot from it. This book is a small tribute to their work and an attempt to bring a similar learning experience to the Move community.","breadcrumbs":"E - Acknowledgements » Appendix E: Acknowledgements","id":"389","title":"Appendix E: Acknowledgements"},"39":{"body":"After the package is published on chain, we can interact with it. To do this, we need to find the address (object ID) of the package. It's under the Published Objects section of the Object Changes output. The address is unique for each package, so you will need to copy it from the output. In this example, the address is: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe Now that we have the address, we can interact with the package. In the next section, we will show how to interact with the package by sending transactions.","breadcrumbs":"Hello, Sui! » Using the Results","id":"39","title":"Using the Results"},"4":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"4","title":"Download Binary"},"40":{"body":"To demonstrate the interaction with the todo_list package, we will send a transaction to create a new list and add an item to it. Transactions are sent via the sui client ptb command, it allows using the Transaction Blocks at full capacity. The command may look big and complex, but we go through it step by step.","breadcrumbs":"Hello, Sui! » Sending Transactions","id":"40","title":"Sending Transactions"},"41":{"body":"Before we construct the command, let's store the values we will use in the transaction. Replace the 0x4.... with the address of the package you have published. And MY_ADDRESS variable will be automatically set to your address from the CLI output. $ export PACKAGE_ID=0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe\n$ export MY_ADDRESS=$(sui client active-address)","breadcrumbs":"Hello, Sui! » Prepare the Variables","id":"41","title":"Prepare the Variables"},"42":{"body":"Now to building an actual transaction. The transaction will consist of two parts: we will call the new function in the todo_list package to create a new list, and then we will transfer the list object to our account. The transaction will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--assign sender @$MY_ADDRESS \\\n--move-call $PACKAGE_ID::todo_list::new \\\n--assign list \\\n--transfer-objects \"[list]\" sender In this command, we are using the ptb subcommand to build a transaction. Parameters that follow it define the actual commands and actions that the transaction will perform. The first two calls we make are utility calls to set the sender address to the command inputs and set the gas budget for the transaction. # sets the gas budget for the transaction\n--gas-budget 100000000 \\n\n# registers a variable \"sender=@...\"\n--assign sender @$MY_ADDRESS \\n Then we perform the actual call to a function in the package. We use the --move-call followed by the package ID, the module name, and the function name. In this case, we are calling the new function in the todo_list package. # calls the \"new\" function in the \"todo_list\" package under the $PACKAGE_ID address\n--move-call $PACKAGE_ID::todo_list::new The function that we defined actually returns a value, which we want need to store. We use the --assign command to give a name to the returned value. In this case, we are calling it list. And then we transfer the object to our account. --move-call $PACKAGE_ID::todo_list::new \\\n# assigns the result of the \"new\" function to the \"list\" variable (from the previous step)\n--assign list \\\n# transfers the object to the sender\n--transfer-objects \"[list]\" sender Once the command is constructed, you can run it in the terminal. If everything is correct, you should see the output similar to the one we had in previous sections. The output will contain the transaction digest, the transaction data, and the transaction effects. Spoiler: Full transaction output Transaction Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8\n╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭──────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 MoveCall: │ │\n│ │ ┌ │ │\n│ │ │ Function: new │ │\n│ │ │ Module: todo_list │ │\n│ │ │ Package: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ C5Lie4dtP5d3OkKzFBa+xM0BiNoB/A4ItthDCRTRBUrEE+jXeNs7mP4AuGwi3nzfTskh29+R1j1Kba4Wdy3QDA== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8 │\n│ Status: Success │\n│ Executed Epoch: 1213 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 2318000 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ FSz2fYXmKqTf77mFXNq5JK7cKY8agWja7V5yDKEgL8c3 │\n│ GgMZKTt482DYApbAZkPDtdssGHZLbxgjm2uMXhzJax8Q │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -2339880 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ The section that we want to focus on is the \"Object Changes\". More specifically, the \"Created Objects\" part of it. It contains the object ID, the type and the version of the TodoList that you have created. We will use this object ID to interact with the list. ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 22 │\n│ │ Digest: HyWdUpjuhjLY38dLpg6KPHQ3bt4BqQAbdF5gB8HQdEqG │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯ In this example the object ID is 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553. And the owner should be your account address. We achieved this by transferring the object to the sender in the last command of the transaction. Another way to test that you have successfully created the list is to check the account objects. $ sui client objects It should have an object that looks similar to this: ╭ ... ╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │\n│ │ version │ 22 │ │\n│ │ digest │ /DUEiCLkaNSgzpZSq2vSV0auQQEQhyH9occq9grMBZM= │ │\n│ │ objectType │ 0x468d..29fe::todo_list::TodoList │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n| ... |","breadcrumbs":"Hello, Sui! » Building the Transaction in CLI","id":"42","title":"Building the Transaction in CLI"},"43":{"body":"The TodoList that we created in the previous step is an object that you can interact with as its owner. You can call functions defined in the todo_list module on this object. To demonstrate this, we will add an item to the list. First, we will add just one item, and in the second transaction we will add 3 and remove another one. Double check that you have variables set up from the previous step , and then add one more variable for the list object. $ export LIST_ID=0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 Now we can construct the transaction to add an item to the list. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish the Hello, Sui chapter'\" In this command, we are calling the add function in the todo_list package. The function takes two arguments: the list object and the item to add. The item is a string, so we need to wrap it in single quotes. The command will add the item to the list. If everything is correct, you should see the output similar to the one we had in previous sections. Now you can check the list object to see if the item was added. $ sui client object $LIST_ID The output should contain the item that you have added. ╭───────────────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ version │ 24 │\n│ digest │ FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ │\n│ objType │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ owner │ ╭──────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ │ AddressOwner │ 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │ │\n│ │ ╰──────────────┴──────────────────────────────────────────────────────────────────────╯ │\n│ prevTx │ EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1 │\n│ storageRebate │ 1558000 │\n│ content │ ╭───────────────────┬───────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ │ dataType │ moveObject │ │\n│ │ │ type │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │ │\n│ │ │ hasPublicTransfer │ true │ │\n│ │ │ fields │ ╭───────┬───────────────────────────────────────────────────────────────────────────────╮ │ │\n│ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ id │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │ │ │\n│ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │\n│ │ │ │ │ items │ ╭─────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ finish the Hello, Sui chapter │ │ │ │\n│ │ │ │ │ │ ╰─────────────────────────────────╯ │ │ │\n│ │ │ │ ╰───────┴───────────────────────────────────────────────────────────────────────────────╯ │ │\n│ │ ╰───────────────────┴───────────────────────────────────────────────────────────────────────────────────────────╯ │\n╰───────────────┴───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ A JSON representation of the object can be obtained by adding the --json flag to the command. $ sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"24\", \"digest\": \"FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1\", \"storageRebate\": \"1558000\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [\"Finish the Hello, Sui chapter\"] } }\n}","breadcrumbs":"Hello, Sui! » Passing Objects to Functions","id":"43","title":"Passing Objects to Functions"},"44":{"body":"You can chain multiple commands in a single transaction. This shows the power of Transaction Blocks! Using the same list object, we will add three more items and remove one. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish Concepts chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Read the Move Basics chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Learn about Object Model'\" \\\n--move-call $PACKAGE_ID::todo_list::remove @$LIST_ID 0 If previous commands were successful, this one should not be any different. You can check the list object to see if the items were added and removed. The JSON representation is a bit more readable! sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"25\", \"digest\": \"EDTXDsteqPGAGu4zFAj5bbQGTkucWk4hhuUquk39enGA\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"7SXLGBSh31jv8G7okQ9mEgnw5MnTfvzzHEHpWf3Sa9gY\", \"storageRebate\": \"1922800\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [ \"Finish Concepts chapter\", \"Read the Move Basics chapter\", \"Learn about Object Model\" ] } }\n} Commands don't have to be in the same package or operate on the same object. Within a single transaction block, you can interact with multiple packages and objects. This is a powerful feature that allows you to build complex interactions on-chain!","breadcrumbs":"Hello, Sui! » Chaining Commands","id":"44","title":"Chaining Commands"},"45":{"body":"In this guide, we have shown how to publish a package on the Move blockchain and interact with it using the Sui CLI. We have demonstrated how to create a new list object, add items to it, and remove them. We have also shown how to chain multiple commands in a single transaction block. This guide should give you a good starting point for building your own applications on the Sui blockchain!","breadcrumbs":"Hello, Sui! » Conclusion","id":"45","title":"Conclusion"},"46":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"46","title":"Concepts"},"47":{"body":"Move is a language for writing smart contracts - programs that are stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » Package » Package","id":"47","title":"Package"},"48":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Package usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » Package » Package Structure","id":"48","title":"Package Structure"},"49":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » Package » Published Package","id":"49","title":"Published Package"},"5":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"5","title":"Install using Homebrew (MacOS)"},"50":{"body":"Package Manifest Address Packages in the Move Reference.","breadcrumbs":"Concepts » Package » Links","id":"50","title":"Links"},"51":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"51","title":"Package Manifest"},"52":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"52","title":"Sections"},"53":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"53","title":"Package"},"54":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"54","title":"Dependencies"},"55":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"55","title":"Resolving version conflicts with override"},"56":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"56","title":"Dev-dependencies"},"57":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"57","title":"Addresses"},"58":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"58","title":"Dev-addresses"},"59":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"59","title":"TOML styles"},"6":{"body":"You can install Sui using the Chocolatey package manager for Windows. choco install sui","breadcrumbs":"Before we begin » Install Sui » Install using Chocolatey (Windows)","id":"6","title":"Install using Chocolatey (Windows)"},"60":{"body":"Packages in the Move Reference.","breadcrumbs":"Concepts » Manifest » Further Reading","id":"60","title":"Further Reading"},"61":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x6 - address of the system Clock object You can find all reserved addresses in the Appendix B .","breadcrumbs":"Concepts » Address » Address","id":"61","title":"Address"},"62":{"body":"Address type in Move","breadcrumbs":"Concepts » Address » Further reading","id":"62","title":"Further reading"},"63":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address . Sui supports multiple cryptographic algorithms for account generation. The two supported curves are ed25519, secp256k1, and there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.","breadcrumbs":"Concepts » Account » Account","id":"63","title":"Account"},"64":{"body":"Cryptography in Sui in the Sui Blog Keys and Addresses in the Sui Docs Signatures in the Sui Docs","breadcrumbs":"Concepts » Account » Further Reading","id":"64","title":"Further Reading"},"65":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"65","title":"Transaction"},"66":{"body":"Every transaction explicitly specifies the objects it operates on! Transactions consist of: a sender - the account that signs the transaction; a list (or a chain) of commands - the operations to be executed; command inputs - the arguments for the commands: either pure - simple values like numbers or strings, or object - objects that the transaction will access; a gas object - the Coin object used to pay for the transaction; gas price and budget - the cost of the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"66","title":"Transaction Structure"},"67":{"body":"Sui transactions may consist of multiple commands. Each command is a single built-in command (like publishing a package) or a call to a function in an already published package. The commands are executed in the order they are listed in the transaction, and they can use the results of the previous commands, forming a chain. Transaction either succeeds or fails as a whole. Schematically, a transaction looks like this (in pseudo-code): Inputs:\n- sender = 0xa11ce Commands:\n- payment = SplitCoins(Gas, [ 1000 ])\n- item = MoveCall(0xAAA::market::purchase, [ payment ])\n- TransferObjects(item, sender) In this example, the transaction consists of three commands: SplitCoins - a built-in command that splits a new coin from the passed object, in this case, the Gas object; MoveCall - a command that calls a function purchase in a package 0xAAA, module market with the given arguments - the payment object; TransferObjects - a built-in command that transfers the object to the recipient.","breadcrumbs":"Concepts » Transaction » Commands","id":"67","title":"Commands"},"68":{"body":"Transaction effects are the changes that a transaction makes to the blockchain state. More specifically, a transaction can change the state in the following ways: use the gas object to pay for the transaction; create, update, or delete objects; emit events; The result of the executed transaction consists of different parts: Transaction Digest - the hash of the transaction which is used to identify the transaction; Transaction Data - the inputs, commands and gas object used in the transaction; Transaction Effects - the status and the \"effects\" of the transaction, more specifically: the status of the transaction, updates to objects and their new versions, the gas object used, the gas cost of the transaction, and the events emitted by the transaction; Events - the custom events emitted by the transaction; Object Changes - the changes made to the objects, including the change of ownership ; Balance Changes - the changes made to the aggregate balances of the account involved in the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Effects","id":"68","title":"Transaction Effects"},"69":{"body":"This chapter is all about the basic syntax of the Move language. It covers the basics of the language, such as types, modules, functions, and control flow. It focuses on the language without a storage model or a blockchain, and explains the essential concepts of the language. To learn features specific to Sui, such as storage functions and abilities, refer to the Using Objects chapter, however, it is recommended to start with this chapter first.","breadcrumbs":"Move Basics » Move Basics","id":"69","title":"Move Basics"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet Make sure that your system has the latest Rust versions with the command below. rustup update stable","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Move Basics » Module » Module","id":"70","title":"Module"},"71":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions, constants and imports all part of the module: Structs Functions Constants Imports Struct Methods","breadcrumbs":"Move Basics » Module » Module declaration","id":"71","title":"Module declaration"},"72":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module 0x0::address_literal { /* ... */ }\nmodule book::named_address { /* ... */ } Addresses section in the Move.toml: # Move.toml\n[addresses]\nbook = \"0x0\"","breadcrumbs":"Move Basics » Module » Address / Named address","id":"72","title":"Address / Named address"},"73":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Move Basics » Module » Module members","id":"73","title":"Module members"},"74":{"body":"Modules in the Move Reference.","breadcrumbs":"Move Basics » Module » Further reading","id":"74","title":"Further reading"},"75":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Move Basics » Comments » Comments","id":"75","title":"Comments"},"76":{"body":"module book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. module book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Move Basics » Comments » Line comment","id":"76","title":"Line comment"},"77":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. module book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Move Basics » Comments » Block comment","id":"77","title":"Block comment"},"78":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. /// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Move Basics » Comments » Doc comment","id":"78","title":"Doc comment"},"79":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Move Basics » Primitive Types » Primitive Types","id":"79","title":"Primitive Types"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u16 = 42;","breadcrumbs":"Move Basics » Primitive Types » Variables and assignment","id":"80","title":"Variables and assignment"},"81":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Move Basics » Primitive Types » Booleans","id":"81","title":"Booleans"},"82":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Move Basics » Primitive Types » Integer Types","id":"82","title":"Integer Types"},"83":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 For more operations, including bitwise operations, please refer to the Move Reference . The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Move Basics » Primitive Types » Operations","id":"83","title":"Operations"},"84":{"body":"Move supports explicit casting between integer types. The syntax for it is: as Note, that it may require parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = x as u16;\nlet z = 2 * (x as u16); // ambiguous, requires parentheses A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Move Basics » Primitive Types » Casting with as","id":"84","title":"Casting with as"},"85":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Move Basics » Primitive Types » Overflow","id":"85","title":"Overflow"},"86":{"body":"Bool in the Move Reference. Integer in the Move Reference.","breadcrumbs":"Move Basics » Primitive Types » Further reading","id":"86","title":"Further reading"},"87":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Move Basics » Address Type » Address Type","id":"87","title":"Address Type"},"88":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string::String; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Move Basics » Address Type » Conversion","id":"88","title":"Conversion"},"89":{"body":"Address in the Move Reference.","breadcrumbs":"Move Basics » Address Type » Further reading","id":"89","title":"Further reading"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition, some syntax won't get highlighted.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert a unit () - an empty expression.","breadcrumbs":"Move Basics » Expression » Expression","id":"90","title":"Expression"},"91":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Move Basics » Expression » Literals","id":"91","title":"Literals"},"92":{"body":"Arithmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Move Basics » Expression » Operators","id":"92","title":"Operators"},"93":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\n// let none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; // block is an expression, so it can be used in an expression and\n// doesn't have to be assigned to a variable.\n{ let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Move Basics » Expression » Blocks","id":"93","title":"Blocks"},"94":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Move Basics » Expression » Function Calls","id":"94","title":"Function Calls"},"95":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) { expr; }; // loop is an expression, but returns `()` as well.\nloop { expr; break };","breadcrumbs":"Move Basics » Expression » Control Flow Expressions","id":"95","title":"Control Flow Expressions"},"96":{"body":"Move's type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Move Basics » Struct » Custom Types with Struct","id":"96","title":"Custom Types with Struct"},"97":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. Fields of a struct are private and can only be accessed by the module defining the struct. Reading and writing the fields of a struct in other modules is only possible if the module defining the struct provides public functions to access the fields.","breadcrumbs":"Move Basics » Struct » Struct","id":"97","title":"Struct"},"98":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. let mut artist = Artist { name: b\"The Beatles\".to_string()\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Move Basics » Struct » Create and use an instance","id":"98","title":"Create and use an instance"},"99":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and ignore the `name` field.\nlet Artist { name: _ } = artist;","breadcrumbs":"Move Basics » Struct » Unpacking a struct","id":"99","title":"Unpacking a struct"}},"length":390,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"14":{"tf":2.23606797749979},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":23,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.3166247903554},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":3.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.6457513110645907},"271":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.4641016151377544},"88":{"tf":2.23606797749979},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"319":{"tf":1.7320508075688772},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"366":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.0}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.7320508075688772},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.7320508075688772}}}},"t":{"df":14,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.58257569495584},"208":{"tf":2.449489742783178},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":3.872983346207417},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"19":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.3166247903554},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"93":{"tf":3.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.449489742783178},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.23606797749979},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.4142135623730951},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":2.8284271247461903},"270":{"tf":1.4142135623730951},"271":{"tf":3.4641016151377544},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":59,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":3.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"336":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.3166247903554},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":2.23606797749979},"77":{"tf":3.0},"78":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":23,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":1.7320508075688772},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.23606797749979},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":8,"docs":{"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":2.6457513110645907},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":7,"docs":{"137":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":29,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.605551275463989},"180":{"tf":2.6457513110645907},"181":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.0},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"348":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.0},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"55":{"tf":3.0},"56":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":1.7320508075688772},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.1622776601683795},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"324":{"tf":3.605551275463989},"325":{"tf":1.7320508075688772},"326":{"tf":2.0},"327":{"tf":2.6457513110645907},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.3166247903554},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.6457513110645907},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":34,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.6457513110645907},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":3.7416573867739413},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.0},"298":{"tf":2.23606797749979},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.6457513110645907},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":2.8284271247461903},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":3.0},"274":{"tf":1.4142135623730951},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":2.6457513110645907},"332":{"tf":2.449489742783178},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"35":{"tf":2.0},"372":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":31,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.4142135623730951}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.4142135623730951},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.6457513110645907}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"92":{"tf":2.23606797749979},"93":{"tf":3.3166247903554},"94":{"tf":1.7320508075688772},"95":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":2.8284271247461903},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.0},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.449489742783178},"283":{"tf":3.4641016151377544},"284":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":3.0},"288":{"tf":3.0},"289":{"tf":2.449489742783178},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":4.358898943540674},"295":{"tf":2.23606797749979},"296":{"tf":2.0},"297":{"tf":2.0},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.449489742783178},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":32,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"239":{"tf":3.0},"240":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":122,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.3166247903554},"159":{"tf":3.0},"160":{"tf":2.23606797749979},"161":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":2.8284271247461903},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":4.0},"239":{"tf":3.872983346207417},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.6457513110645907},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":3.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.8284271247461903},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.7320508075688772},"263":{"tf":2.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":1.7320508075688772},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.7320508075688772}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":61,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":3.4641016151377544},"114":{"tf":2.23606797749979},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"313":{"tf":1.0}},"i":{"df":16,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.23606797749979},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":3,"docs":{"101":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.0},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":55,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"209":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"138":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":1.7320508075688772},"295":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.4641016151377544}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":2.8284271247461903},"143":{"tf":2.6457513110645907},"144":{"tf":3.4641016151377544},"145":{"tf":3.7416573867739413},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.605551275463989},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.449489742783178},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":2.23606797749979},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":30,"docs":{"179":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":17,"docs":{"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.0},"83":{"tf":1.0}}}},"df":135,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.1622776601683795},"112":{"tf":2.8284271247461903},"113":{"tf":3.605551275463989},"114":{"tf":2.449489742783178},"116":{"tf":3.1622776601683795},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.605551275463989},"72":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":146,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.0},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.4641016151377544},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.4142135623730951},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":113,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":4.58257569495584},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":3.4641016151377544},"221":{"tf":2.8284271247461903},"223":{"tf":1.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":3.0},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"238":{"tf":4.58257569495584},"239":{"tf":4.69041575982343},"240":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"242":{"tf":4.123105625617661},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":4.58257569495584},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"323":{"tf":2.8284271247461903},"324":{"tf":3.4641016151377544},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"363":{"tf":2.0},"364":{"tf":2.449489742783178},"368":{"tf":2.449489742783178},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.449489742783178},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":2.8284271247461903},"85":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":2.23606797749979},"130":{"tf":3.0},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.0},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.449489742783178},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.23606797749979},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":34,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.449489742783178},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":2.8284271247461903},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":3.3166247903554},"195":{"tf":2.6457513110645907},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":2.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"105":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.449489742783178},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.6457513110645907},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":4.123105625617661},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":3.3166247903554},"318":{"tf":1.7320508075688772},"319":{"tf":2.8284271247461903},"32":{"tf":3.3166247903554},"320":{"tf":1.7320508075688772},"321":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":53,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.0},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":1.4142135623730951},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"224":{"tf":1.0},"55":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.0},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.605551275463989},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":36,"docs":{"103":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":3.605551275463989},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.449489742783178},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.4142135623730951},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":74,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":2.6457513110645907},"247":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":2.8284271247461903},"132":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":2.449489742783178},"136":{"tf":2.8284271247461903},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":2.449489742783178},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.0},"350":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":2.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":121,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.8284271247461903},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.23606797749979},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.3166247903554},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.4641016151377544},"200":{"tf":2.0},"201":{"tf":3.4641016151377544},"202":{"tf":3.1622776601683795},"203":{"tf":3.605551275463989},"204":{"tf":3.0},"205":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":5.0},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":21,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.0},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":3.872983346207417},"261":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":4.358898943540674},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":4.242640687119285}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":155,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":1.7320508075688772},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.0},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.0},"193":{"tf":2.6457513110645907},"194":{"tf":4.47213595499958},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.6457513110645907},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":42,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.23606797749979},"250":{"tf":3.3166247903554},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.7416573867739413},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":21,"docs":{"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":12,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":228,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.23606797749979},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.23606797749979},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":3.872983346207417},"125":{"tf":2.449489742783178},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.605551275463989},"364":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":3.1622776601683795},"308":{"tf":2.0},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"15":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":17,"docs":{"1":{"tf":1.0},"14":{"tf":2.6457513110645907},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":23,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":2.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.8284271247461903},"102":{"tf":2.0},"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":3.4641016151377544},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.4641016151377544},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":3.3166247903554},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.8284271247461903},"271":{"tf":3.872983346207417},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.3166247903554},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.23606797749979},"58":{"tf":2.23606797749979},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":2.6457513110645907},"319":{"tf":2.0},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":97,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"32":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.449489742783178},"166":{"tf":1.7320508075688772},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":2.0},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":2.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":2.0}}}},"t":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.795831523312719},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":4.0},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":150,"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.4142135623730951},"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.4142135623730951},"118":{"tf":1.7320508075688772},"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":26,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":2.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.4641016151377544},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"93":{"tf":3.1622776601683795}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.6457513110645907},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.449489742783178},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":3.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"269":{"tf":3.1622776601683795},"270":{"tf":2.0},"271":{"tf":3.7416573867739413},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":2.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":2.0},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":3.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":65,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":2.0},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.1622776601683795},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.449489742783178},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.6457513110645907},"299":{"tf":3.1622776601683795},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.0},"336":{"tf":3.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.4641016151377544},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":2.6457513110645907},"77":{"tf":3.3166247903554},"78":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":3.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":44,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"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.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":2.0},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.449489742783178},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":2.0},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":9,"docs":{"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":2.449489742783178},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"156":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":2.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":3.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":13,"docs":{"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.872983346207417},"180":{"tf":3.0},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":2.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":2.0},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"348":{"tf":2.449489742783178},"349":{"tf":2.0},"350":{"tf":2.23606797749979}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":3.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.1622776601683795},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":3.0},"55":{"tf":3.0},"56":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"58":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":2.0},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.4641016151377544},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":3.872983346207417},"325":{"tf":2.0},"326":{"tf":2.23606797749979},"327":{"tf":3.0},"328":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":44,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.605551275463989},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.7320508075688772},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":37,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":3.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":1.4142135623730951},"288":{"tf":2.8284271247461903},"289":{"tf":2.23606797749979},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":3.872983346207417},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"298":{"tf":2.6457513110645907},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":2.0},"147":{"tf":2.0}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.8284271247461903},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":3.0},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.449489742783178},"345":{"tf":2.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":3.3166247903554},"274":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.6457513110645907},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"376":{"tf":2.0},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":3.0},"332":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"335":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"372":{"tf":2.0},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":34,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.7320508075688772}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.7320508075688772},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":2.0},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.8284271247461903}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"94":{"tf":2.0},"95":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":3.0},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":3.605551275463989},"284":{"tf":2.6457513110645907},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":3.3166247903554},"288":{"tf":3.1622776601683795},"289":{"tf":3.0},"290":{"tf":2.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":4.47213595499958},"295":{"tf":2.6457513110645907},"296":{"tf":2.23606797749979},"297":{"tf":2.23606797749979},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.449489742783178},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.7320508075688772},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":2.0},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":123,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.605551275463989},"159":{"tf":3.3166247903554},"160":{"tf":2.6457513110645907},"161":{"tf":2.23606797749979},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":2.8284271247461903},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":4.123105625617661},"239":{"tf":4.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":2.8284271247461903},"243":{"tf":1.0},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":2.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.8284271247461903},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"191":{"tf":3.3166247903554},"192":{"tf":2.0},"193":{"tf":3.1622776601683795},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":2.0},"263":{"tf":2.23606797749979},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":2.0},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":2.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":64,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"255":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":3.7416573867739413},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":2.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"313":{"tf":1.0}},"i":{"df":17,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.7320508075688772},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.449489742783178},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.4142135623730951},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":56,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"138":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":2.0},"295":{"tf":1.0},"366":{"tf":3.0},"367":{"tf":1.7320508075688772},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":3.605551275463989},"145":{"tf":3.872983346207417},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":3.0},"165":{"tf":3.872983346207417},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.6457513110645907},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"383":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.6457513110645907},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":36,"docs":{"179":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":18,"docs":{"158":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":136,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":3.4641016151377544},"112":{"tf":3.0},"113":{"tf":3.7416573867739413},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"116":{"tf":3.4641016151377544},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.4641016151377544},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.449489742783178},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":3.872983346207417},"72":{"tf":2.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.4142135623730951},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":214,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.8284271247461903},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.872983346207417},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.605551275463989},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.8284271247461903},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"281":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"309":{"tf":1.0},"311":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":128,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":4.898979485566356},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.23606797749979},"219":{"tf":2.23606797749979},"220":{"tf":3.7416573867739413},"221":{"tf":3.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"227":{"tf":3.4641016151377544},"228":{"tf":2.6457513110645907},"229":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"231":{"tf":3.1622776601683795},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":4.69041575982343},"239":{"tf":4.795831523312719},"240":{"tf":2.6457513110645907},"241":{"tf":2.0},"242":{"tf":4.358898943540674},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.6457513110645907},"294":{"tf":4.69041575982343},"295":{"tf":2.8284271247461903},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"323":{"tf":2.8284271247461903},"324":{"tf":3.605551275463989},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.3166247903554},"363":{"tf":2.23606797749979},"364":{"tf":2.449489742783178},"368":{"tf":2.6457513110645907},"370":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.1622776601683795},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"133":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.6457513110645907},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.0},"92":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":2.449489742783178},"130":{"tf":3.3166247903554},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.23606797749979},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.6457513110645907},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.449489742783178},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.4142135623730951},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.7320508075688772},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":37,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":2.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":3.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":3.0},"193":{"tf":1.0},"194":{"tf":3.4641016151377544},"195":{"tf":2.8284271247461903},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"105":{"tf":1.0},"151":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.6457513110645907},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":20,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":2.23606797749979},"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},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":97,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":2.0},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":102,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.8284271247461903},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":4.358898943540674},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":2.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.6457513110645907},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"319":{"tf":3.1622776601683795},"32":{"tf":3.4641016151377544},"320":{"tf":2.0},"321":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.4142135623730951},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":56,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":3.0},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.23606797749979},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":2.0},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.7320508075688772},"224":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.7416573867739413},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"22":{"tf":1.7320508075688772},"23":{"tf":2.6457513110645907},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.6457513110645907},"173":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":40,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":3.7416573867739413},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.7320508075688772},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"311":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":35,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":3.1622776601683795},"132":{"tf":3.1622776601683795},"133":{"tf":2.23606797749979},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":3.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.7320508075688772},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.8284271247461903},"165":{"tf":3.4641016151377544},"166":{"tf":2.6457513110645907},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"350":{"tf":2.0},"355":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":4.242640687119285},"98":{"tf":3.3166247903554},"99":{"tf":3.1622776601683795}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.6457513110645907}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":2.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":3.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.1622776601683795},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.1622776601683795},"320":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.6457513110645907},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"34":{"tf":1.0},"351":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.4641016151377544},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.605551275463989},"200":{"tf":2.449489742783178},"201":{"tf":3.7416573867739413},"202":{"tf":3.4641016151377544},"203":{"tf":3.872983346207417},"204":{"tf":3.1622776601683795},"205":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":5.0990195135927845},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":25,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":3.0},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":60,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":4.123105625617661},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.23606797749979},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":4.47213595499958},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.0},"67":{"tf":2.449489742783178},"68":{"tf":4.47213595499958}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.1622776601683795},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":157,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":2.0},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.123105625617661},"193":{"tf":2.6457513110645907},"194":{"tf":4.58257569495584},"195":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.449489742783178},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.8284271247461903},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.23606797749979},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.6457513110645907},"250":{"tf":3.605551275463989},"251":{"tf":2.23606797749979},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.872983346207417},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":13,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.6457513110645907},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":241,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.4142135623730951},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.8284271247461903},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.449489742783178},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"124":{"tf":4.123105625617661},"125":{"tf":2.8284271247461903},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.1622776601683795},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.7416573867739413},"364":{"tf":2.0},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.0},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":15,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":2.23606797749979},"307":{"tf":3.4641016151377544},"308":{"tf":2.23606797749979},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":1,"docs":{"374":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"375":{"tf":1.0}}},"3":{"df":1,"docs":{"376":{"tf":1.0}}},"8":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"385":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"375":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"30":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"df":1,"docs":{"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"119":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"386":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"115":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"270":{"tf":1.0},"319":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"366":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"376":{"tf":1.0}}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"343":{"tf":1.0}}},"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"4":{"tf":1.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"376":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"29":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"203":{"tf":1.0},"242":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":1,"docs":{"387":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"340":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"275":{"tf":1.0},"298":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"299":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"223":{"tf":1.0},"226":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"380":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"377":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"335":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"287":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"231":{"tf":1.0},"245":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"242":{"tf":1.0},"253":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"115":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"296":{"tf":1.0},"375":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"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":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":1,"docs":{"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"344":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"373":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"35":{"tf":1.0},"372":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"246":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"338":{"tf":1.0}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"121":{"tf":1.0},"334":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"250":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"240":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"235":{"tf":1.0},"381":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"308":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"352":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":3,"docs":{"249":{"tf":1.0},"254":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"219":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"258":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"339":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.0}},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"y":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"366":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"k":{"df":2,"docs":{"152":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"352":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"264":{"tf":1.0},"379":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"307":{"tf":1.0},"352":{"tf":1.0},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"329":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"355":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"287":{"tf":1.0},"378":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"353":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"301":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"206":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"36":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0}},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"257":{"tf":1.0},"360":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"349":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"104":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"116":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"175":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"129":{"tf":1.0},"198":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"296":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"170":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":26,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"376":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}},"n":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"217":{"tf":1.0},"369":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"117":{"tf":1.0},"190":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"244":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"163":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"333":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":6,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.0},"191":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":6,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"354":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"284":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"df":11,"docs":{"130":{"tf":1.0},"151":{"tf":1.0},"229":{"tf":1.0},"270":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"161":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"363":{"tf":1.0},"364":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"133":{"tf":1.0},"327":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file +Object.assign(window.search, {"doc_urls":["index.html#the-move-book","foreword.html#foreword","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#install-using-chocolatey-windows","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#create-a-new-package","your-first-move/hello-world.html#directory-structure","your-first-move/hello-world.html#manifest","your-first-move/hello-world.html#sources","your-first-move/hello-world.html#tests","your-first-move/hello-world.html#other-folders","your-first-move/hello-world.html#compiling-the-package","your-first-move/hello-world.html#running-tests","your-first-move/hello-world.html#next-steps","your-first-move/hello-world.html#further-reading","your-first-move/hello-sui.html#hello-sui","your-first-move/hello-sui.html#create-a-new-package","your-first-move/hello-sui.html#add-the-code","your-first-move/hello-sui.html#build-the-package","your-first-move/hello-sui.html#set-up-an-account","your-first-move/hello-sui.html#requesting-coins","your-first-move/hello-sui.html#publish","your-first-move/hello-sui.html#transaction-data","your-first-move/hello-sui.html#transaction-effects","your-first-move/hello-sui.html#events","your-first-move/hello-sui.html#object-changes","your-first-move/hello-sui.html#balance-changes","your-first-move/hello-sui.html#alternative-output","your-first-move/hello-sui.html#using-the-results","your-first-move/hello-sui.html#sending-transactions","your-first-move/hello-sui.html#prepare-the-variables","your-first-move/hello-sui.html#building-the-transaction-in-cli","your-first-move/hello-sui.html#passing-objects-to-functions","your-first-move/hello-sui.html#chaining-commands","your-first-move/hello-sui.html#conclusion","concepts/index.html#concepts","concepts/packages.html#package","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#further-reading","concepts/address.html#address","concepts/address.html#further-reading","concepts/what-is-an-account.html#account","concepts/what-is-an-account.html#further-reading","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/what-is-a-transaction.html#commands","concepts/what-is-a-transaction.html#transaction-effects","move-basics/index.html#move-basics","move-basics/module.html#module","move-basics/module.html#module-declaration","move-basics/module.html#address--named-address","move-basics/module.html#module-members","move-basics/module.html#further-reading","move-basics/comments.html#comments","move-basics/comments.html#line-comment","move-basics/comments.html#block-comment","move-basics/comments.html#doc-comment","move-basics/primitive-types.html#primitive-types","move-basics/primitive-types.html#variables-and-assignment","move-basics/primitive-types.html#booleans","move-basics/primitive-types.html#integer-types","move-basics/primitive-types.html#operations","move-basics/primitive-types.html#casting-with-as","move-basics/primitive-types.html#overflow","move-basics/primitive-types.html#further-reading","move-basics/address.html#address-type","move-basics/address.html#conversion","move-basics/address.html#further-reading","move-basics/expression.html#expression","move-basics/expression.html#literals","move-basics/expression.html#operators","move-basics/expression.html#blocks","move-basics/expression.html#function-calls","move-basics/expression.html#control-flow-expressions","move-basics/struct.html#custom-types-with-struct","move-basics/struct.html#struct","move-basics/struct.html#create-and-use-an-instance","move-basics/struct.html#unpacking-a-struct","move-basics/struct.html#further-reading","move-basics/abilities-introduction.html#abilities-introduction","move-basics/abilities-introduction.html#what-are-abilities","move-basics/abilities-introduction.html#abilities-syntax","move-basics/abilities-introduction.html#overview","move-basics/abilities-introduction.html#no-abilities","move-basics/abilities-introduction.html#further-reading","move-basics/drop-ability.html#abilities-drop","move-basics/drop-ability.html#types-with-the-drop-ability","move-basics/drop-ability.html#further-reading","move-basics/importing-modules.html#importing-modules","move-basics/importing-modules.html#importing-a-module","move-basics/importing-modules.html#importing-members","move-basics/importing-modules.html#grouping-imports","move-basics/importing-modules.html#resolving-name-conflicts","move-basics/importing-modules.html#adding-an-external-dependency","move-basics/importing-modules.html#importing-a-module-from-another-package","move-basics/standard-library.html#standard-library","move-basics/standard-library.html#most-common-modules","move-basics/standard-library.html#exported-addresses","move-basics/standard-library.html#implicit-imports","move-basics/standard-library.html#importing-std-without-sui-framework","move-basics/standard-library.html#source-code","move-basics/vector.html#vector","move-basics/vector.html#vector-syntax","move-basics/vector.html#vector-operations","move-basics/vector.html#destroying-a-vector-of-non-droppable-types","move-basics/vector.html#further-reading","move-basics/option.html#option","move-basics/option.html#in-practice","move-basics/option.html#using-option","move-basics/string.html#string","move-basics/string.html#strings-are-bytes","move-basics/string.html#working-with-utf-8-strings","move-basics/string.html#definition","move-basics/string.html#creating-a-string","move-basics/string.html#common-operations","move-basics/string.html#safe-utf-8-operations","move-basics/string.html#utf-8-limitations","move-basics/string.html#ascii-strings","move-basics/control-flow.html#control-flow","move-basics/control-flow.html#conditional-statements","move-basics/control-flow.html#repeating-statements-with-loops","move-basics/control-flow.html#the-while-loop","move-basics/control-flow.html#infinite-loop","move-basics/control-flow.html#exiting-a-loop-early","move-basics/control-flow.html#skipping-an-iteration","move-basics/control-flow.html#early-return","move-basics/constants.html#constants","move-basics/constants.html#naming-convention","move-basics/constants.html#constants-are-immutable","move-basics/constants.html#using-config-pattern","move-basics/constants.html#links","move-basics/assert-and-abort.html#aborting-execution","move-basics/assert-and-abort.html#abort","move-basics/assert-and-abort.html#assert","move-basics/assert-and-abort.html#error-constants","move-basics/assert-and-abort.html#further-reading","move-basics/function.html#function","move-basics/function.html#function-declaration","move-basics/function.html#accessing-functions","move-basics/function.html#multiple-return-values","move-basics/function.html#further-reading","move-basics/struct-methods.html#struct-methods","move-basics/struct-methods.html#method-syntax","move-basics/struct-methods.html#method-aliases","move-basics/struct-methods.html#aliasing-an-external-modules-method","move-basics/struct-methods.html#further-reading","move-basics/visibility.html#visibility-modifiers","move-basics/visibility.html#internal-visibility","move-basics/visibility.html#public-visibility","move-basics/visibility.html#package-visibility","move-basics/ownership-and-scope.html#ownership-and-scope","move-basics/ownership-and-scope.html#ownership","move-basics/ownership-and-scope.html#returning-a-value","move-basics/ownership-and-scope.html#passing-by-value","move-basics/ownership-and-scope.html#scopes-with-blocks","move-basics/ownership-and-scope.html#copyable-types","move-basics/ownership-and-scope.html#further-reading","move-basics/copy-ability.html#abilities-copy","move-basics/copy-ability.html#copying-and-drop","move-basics/copy-ability.html#types-with-the-copy-ability","move-basics/copy-ability.html#further-reading","move-basics/references.html#references","move-basics/references.html#layout","move-basics/references.html#reference","move-basics/references.html#mutable-reference","move-basics/references.html#passing-by-value","move-basics/references.html#full-example","move-basics/generics.html#generics","move-basics/generics.html#in-the-standard-library","move-basics/generics.html#generic-syntax","move-basics/generics.html#multiple-type-parameters","move-basics/generics.html#why-generics","move-basics/generics.html#phantom-type-parameters","move-basics/generics.html#constraints-on-type-parameters","move-basics/generics.html#further-reading","move-basics/type-reflection.html#type-reflection","move-basics/type-reflection.html#in-practice","move-basics/type-reflection.html#further-reading","move-basics/testing.html#testing","move-basics/testing.html#the-test-attribute","move-basics/testing.html#running-tests","move-basics/testing.html#test-fail-cases-with-expected_failure","move-basics/testing.html#utilities-with-test_only","move-basics/testing.html#further-reading","object/index.html#object-model","object/digital-assets.html#move---language-for-digital-assets","object/digital-assets.html#summary","object/digital-assets.html#further-reading","object/evolution-of-move.html#evolution-of-move","object/evolution-of-move.html#summary","object/evolution-of-move.html#further-reading","object/object-model.html#what-is-an-object","object/object-model.html#summary","object/object-model.html#further-reading","object/ownership.html#ownership","object/ownership.html#account-owner-or-single-owner","object/ownership.html#shared-state","object/ownership.html#immutable-frozen-state","object/ownership.html#object-owner","object/ownership.html#summary","object/ownership.html#next-steps","object/fast-path-and-consensus.html#fast-path--consensus","object/fast-path-and-consensus.html#concurrency-challenge","object/fast-path-and-consensus.html#fast-path","object/fast-path-and-consensus.html#consensus-path","object/fast-path-and-consensus.html#objects-owned-by-objects","object/fast-path-and-consensus.html#summary","storage/index.html#using-objects","storage/key-ability.html#the-key-ability","storage/key-ability.html#object-definition","storage/key-ability.html#types-with-the-key-ability","storage/key-ability.html#next-steps","storage/key-ability.html#further-reading","storage/storage-functions.html#storage-functions","storage/storage-functions.html#overview","storage/storage-functions.html#ownership-and-references-a-quick-recap","storage/storage-functions.html#transfer","storage/storage-functions.html#freeze","storage/storage-functions.html#owned---frozen","storage/storage-functions.html#share","storage/storage-functions.html#special-case-shared-object-deletion","storage/storage-functions.html#next-steps","storage/store-ability.html#ability-store","storage/store-ability.html#definition","storage/store-ability.html#example","storage/store-ability.html#types-with-the-store-ability","storage/store-ability.html#further-reading","storage/uid-and-id.html#uid-and-id","storage/uid-and-id.html#fresh-uid-generation","storage/uid-and-id.html#uid-lifecycle","storage/uid-and-id.html#keeping-the-uid","storage/uid-and-id.html#proof-of-deletion","storage/uid-and-id.html#id","storage/uid-and-id.html#fresh_object_address","storage/transfer-restrictions.html#restricted-and-public-transfer","storage/transfer-restrictions.html#public-storage-operations","storage/transfer-restrictions.html#implications-of-store","programmability/index.html#advanced-programmability","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/module-initializer.html#module-initializer","programmability/module-initializer.html#init-features","programmability/module-initializer.html#trust-and-security","programmability/module-initializer.html#next-steps","programmability/capability.html#pattern-capability","programmability/capability.html#capability-is-an-object","programmability/capability.html#using-init-for-admin-capability","programmability/capability.html#address-check-vs-capability","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/collections.html#collections","programmability/collections.html#vector","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/collections.html#limitations","programmability/collections.html#summary","programmability/collections.html#next-steps","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#definition","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#foreign-types-as-dynamic-fields","programmability/dynamic-fields.html#orphaned-dynamic-fields","programmability/dynamic-fields.html#custom-type-as-a-field-name","programmability/dynamic-fields.html#exposing-uid","programmability/dynamic-fields.html#dynamic-fields-vs-fields","programmability/dynamic-fields.html#limits","programmability/dynamic-fields.html#applications","programmability/dynamic-fields.html#next-steps","programmability/dynamic-object-fields.html#dynamic-object-fields","programmability/dynamic-object-fields.html#definition","programmability/dynamic-object-fields.html#usage--differences-with-dynamic-fields","programmability/dynamic-object-fields.html#pricing-differences","programmability/dynamic-object-fields.html#next-steps","programmability/dynamic-collections.html#dynamic-collections","programmability/dynamic-collections.html#common-concepts","programmability/dynamic-collections.html#bag","programmability/dynamic-collections.html#objectbag","programmability/dynamic-collections.html#table","programmability/dynamic-collections.html#objecttable","programmability/dynamic-collections.html#summary","programmability/dynamic-collections.html#linkedtable","programmability/witness-pattern.html#pattern-witness","programmability/witness-pattern.html#witness-in-move","programmability/witness-pattern.html#instantiating-a-generic-type","programmability/witness-pattern.html#one-time-witness","programmability/witness-pattern.html#summary","programmability/witness-pattern.html#next-steps","programmability/one-time-witness.html#one-time-witness","programmability/one-time-witness.html#definition","programmability/one-time-witness.html#enforcing-the-otw","programmability/one-time-witness.html#summary","programmability/publisher.html#publisher-authority","programmability/publisher.html#definition","programmability/publisher.html#usage","programmability/publisher.html#publisher-as-admin-role","programmability/publisher.html#role-on-sui","programmability/publisher.html#next-steps","programmability/display.html#object-display","programmability/display.html#background","programmability/display.html#object-display-1","programmability/display.html#creator-privilege","programmability/display.html#standard-fields","programmability/display.html#working-with-display","programmability/display.html#template-syntax","programmability/display.html#multiple-display-objects","programmability/display.html#further-reading","programmability/events.html#events","programmability/events.html#emitting-events","programmability/events.html#event-structure","programmability/sui-framework.html#sui-framework","programmability/sui-framework.html#core","programmability/sui-framework.html#collections","programmability/sui-framework.html#utilities","programmability/sui-framework.html#exported-addresses","programmability/sui-framework.html#implicit-imports","programmability/sui-framework.html#source-code","programmability/bcs.html#binary-canonical-serialization","programmability/bcs.html#format","programmability/bcs.html#using-bcs","programmability/bcs.html#encoding","programmability/bcs.html#encoding-a-struct","programmability/bcs.html#decoding","programmability/bcs.html#wrapper-api","programmability/bcs.html#decoding-vectors","programmability/bcs.html#decoding-option","programmability/bcs.html#decoding-structs","programmability/bcs.html#summary","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#migration-tool","guides/2024-migration-guide.html#mutable-bindings-with-let-mut","guides/2024-migration-guide.html#friends-are-deprecated","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#method-syntax","guides/2024-migration-guide.html#methods-for-built-in-types","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/upgradeability-practices.html#upgradeability-practices","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-dynamic-fields-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","guides/coding-conventions.html#coding-conventions","guides/coding-conventions.html#naming","guides/coding-conventions.html#module","guides/coding-conventions.html#constant","guides/coding-conventions.html#function","guides/coding-conventions.html#struct","guides/coding-conventions.html#struct-method","appendix/glossary.html#appendix-a-glossary","appendix/glossary.html#abilities","appendix/reserved-addresses.html#appendix-b-reserved-addresses","appendix/publications.html#appendix-c-publications","appendix/contributing.html#appendix-d-contributing","appendix/acknowledgements.html#appendix-e-acknowledgements"],"index":{"documentStore":{"docInfo":{"0":{"body":38,"breadcrumbs":4,"title":2},"1":{"body":288,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":3,"breadcrumbs":5,"title":2},"101":{"body":43,"breadcrumbs":6,"title":2},"102":{"body":14,"breadcrumbs":5,"title":1},"103":{"body":39,"breadcrumbs":6,"title":2},"104":{"body":65,"breadcrumbs":5,"title":1},"105":{"body":37,"breadcrumbs":5,"title":1},"106":{"body":4,"breadcrumbs":6,"title":2},"107":{"body":135,"breadcrumbs":6,"title":2},"108":{"body":22,"breadcrumbs":7,"title":3},"109":{"body":4,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":30,"breadcrumbs":6,"title":2},"111":{"body":72,"breadcrumbs":6,"title":2},"112":{"body":46,"breadcrumbs":6,"title":2},"113":{"body":109,"breadcrumbs":6,"title":2},"114":{"body":60,"breadcrumbs":7,"title":3},"115":{"body":87,"breadcrumbs":7,"title":3},"116":{"body":71,"breadcrumbs":8,"title":4},"117":{"body":24,"breadcrumbs":6,"title":2},"118":{"body":81,"breadcrumbs":6,"title":2},"119":{"body":11,"breadcrumbs":6,"title":2},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":16,"breadcrumbs":6,"title":2},"121":{"body":28,"breadcrumbs":9,"title":5},"122":{"body":8,"breadcrumbs":6,"title":2},"123":{"body":18,"breadcrumbs":4,"title":1},"124":{"body":78,"breadcrumbs":5,"title":2},"125":{"body":51,"breadcrumbs":5,"title":2},"126":{"body":50,"breadcrumbs":8,"title":5},"127":{"body":3,"breadcrumbs":5,"title":2},"128":{"body":95,"breadcrumbs":4,"title":1},"129":{"body":113,"breadcrumbs":4,"title":1},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":56,"breadcrumbs":5,"title":2},"131":{"body":45,"breadcrumbs":4,"title":1},"132":{"body":65,"breadcrumbs":5,"title":2},"133":{"body":22,"breadcrumbs":7,"title":4},"134":{"body":24,"breadcrumbs":4,"title":1},"135":{"body":45,"breadcrumbs":5,"title":2},"136":{"body":73,"breadcrumbs":5,"title":2},"137":{"body":71,"breadcrumbs":7,"title":4},"138":{"body":38,"breadcrumbs":6,"title":3},"139":{"body":3,"breadcrumbs":5,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":48,"breadcrumbs":6,"title":2},"141":{"body":131,"breadcrumbs":6,"title":2},"142":{"body":58,"breadcrumbs":7,"title":3},"143":{"body":106,"breadcrumbs":5,"title":1},"144":{"body":98,"breadcrumbs":6,"title":2},"145":{"body":99,"breadcrumbs":7,"title":3},"146":{"body":85,"breadcrumbs":6,"title":2},"147":{"body":89,"breadcrumbs":6,"title":2},"148":{"body":71,"breadcrumbs":4,"title":1},"149":{"body":47,"breadcrumbs":5,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":23,"breadcrumbs":5,"title":2},"151":{"body":82,"breadcrumbs":6,"title":3},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":42,"breadcrumbs":6,"title":2},"154":{"body":42,"breadcrumbs":5,"title":1},"155":{"body":46,"breadcrumbs":5,"title":1},"156":{"body":72,"breadcrumbs":6,"title":2},"157":{"body":16,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":4,"title":1},"159":{"body":56,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":5,"title":3},"160":{"body":40,"breadcrumbs":5,"title":2},"161":{"body":87,"breadcrumbs":6,"title":3},"162":{"body":3,"breadcrumbs":5,"title":2},"163":{"body":23,"breadcrumbs":6,"title":2},"164":{"body":112,"breadcrumbs":6,"title":2},"165":{"body":191,"breadcrumbs":6,"title":2},"166":{"body":91,"breadcrumbs":8,"title":4},"167":{"body":4,"breadcrumbs":6,"title":2},"168":{"body":34,"breadcrumbs":6,"title":2},"169":{"body":39,"breadcrumbs":6,"title":2},"17":{"body":21,"breadcrumbs":4,"title":2},"170":{"body":38,"breadcrumbs":6,"title":2},"171":{"body":41,"breadcrumbs":6,"title":2},"172":{"body":25,"breadcrumbs":6,"title":2},"173":{"body":69,"breadcrumbs":5,"title":1},"174":{"body":29,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":99,"breadcrumbs":6,"title":2},"177":{"body":31,"breadcrumbs":6,"title":2},"178":{"body":5,"breadcrumbs":6,"title":2},"179":{"body":103,"breadcrumbs":6,"title":2},"18":{"body":36,"breadcrumbs":3,"title":1},"180":{"body":49,"breadcrumbs":6,"title":2},"181":{"body":22,"breadcrumbs":7,"title":3},"182":{"body":4,"breadcrumbs":6,"title":2},"183":{"body":78,"breadcrumbs":4,"title":1},"184":{"body":62,"breadcrumbs":4,"title":1},"185":{"body":79,"breadcrumbs":4,"title":1},"186":{"body":49,"breadcrumbs":5,"title":2},"187":{"body":51,"breadcrumbs":5,"title":2},"188":{"body":43,"breadcrumbs":5,"title":2},"189":{"body":30,"breadcrumbs":4,"title":1},"19":{"body":78,"breadcrumbs":3,"title":1},"190":{"body":21,"breadcrumbs":5,"title":2},"191":{"body":127,"breadcrumbs":5,"title":2},"192":{"body":202,"breadcrumbs":6,"title":3},"193":{"body":102,"breadcrumbs":4,"title":1},"194":{"body":129,"breadcrumbs":6,"title":3},"195":{"body":92,"breadcrumbs":6,"title":3},"196":{"body":3,"breadcrumbs":5,"title":2},"197":{"body":49,"breadcrumbs":6,"title":2},"198":{"body":71,"breadcrumbs":5,"title":1},"199":{"body":10,"breadcrumbs":6,"title":2},"2":{"body":29,"breadcrumbs":4,"title":2},"20":{"body":89,"breadcrumbs":3,"title":1},"200":{"body":19,"breadcrumbs":4,"title":1},"201":{"body":69,"breadcrumbs":5,"title":2},"202":{"body":43,"breadcrumbs":5,"title":2},"203":{"body":89,"breadcrumbs":7,"title":4},"204":{"body":91,"breadcrumbs":5,"title":2},"205":{"body":4,"breadcrumbs":5,"title":2},"206":{"body":53,"breadcrumbs":4,"title":2},"207":{"body":199,"breadcrumbs":9,"title":4},"208":{"body":41,"breadcrumbs":6,"title":1},"209":{"body":31,"breadcrumbs":7,"title":2},"21":{"body":31,"breadcrumbs":3,"title":1},"210":{"body":105,"breadcrumbs":6,"title":2},"211":{"body":28,"breadcrumbs":5,"title":1},"212":{"body":5,"breadcrumbs":6,"title":2},"213":{"body":169,"breadcrumbs":4,"title":1},"214":{"body":26,"breadcrumbs":4,"title":1},"215":{"body":4,"breadcrumbs":5,"title":2},"216":{"body":30,"breadcrumbs":4,"title":1},"217":{"body":62,"breadcrumbs":7,"title":4},"218":{"body":96,"breadcrumbs":5,"title":2},"219":{"body":33,"breadcrumbs":6,"title":3},"22":{"body":144,"breadcrumbs":4,"title":2},"220":{"body":78,"breadcrumbs":5,"title":2},"221":{"body":41,"breadcrumbs":4,"title":1},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":30,"breadcrumbs":8,"title":3},"224":{"body":59,"breadcrumbs":7,"title":2},"225":{"body":65,"breadcrumbs":7,"title":2},"226":{"body":29,"breadcrumbs":7,"title":2},"227":{"body":24,"breadcrumbs":8,"title":3},"228":{"body":38,"breadcrumbs":6,"title":1},"229":{"body":33,"breadcrumbs":4,"title":2},"23":{"body":136,"breadcrumbs":4,"title":2},"230":{"body":54,"breadcrumbs":6,"title":2},"231":{"body":86,"breadcrumbs":6,"title":2},"232":{"body":21,"breadcrumbs":7,"title":3},"233":{"body":18,"breadcrumbs":6,"title":2},"234":{"body":4,"breadcrumbs":6,"title":2},"235":{"body":22,"breadcrumbs":6,"title":2},"236":{"body":64,"breadcrumbs":5,"title":1},"237":{"body":99,"breadcrumbs":8,"title":4},"238":{"body":276,"breadcrumbs":5,"title":1},"239":{"body":226,"breadcrumbs":5,"title":1},"24":{"body":18,"breadcrumbs":4,"title":2},"240":{"body":55,"breadcrumbs":6,"title":2},"241":{"body":40,"breadcrumbs":5,"title":1},"242":{"body":145,"breadcrumbs":9,"title":5},"243":{"body":40,"breadcrumbs":6,"title":2},"244":{"body":14,"breadcrumbs":6,"title":2},"245":{"body":36,"breadcrumbs":5,"title":1},"246":{"body":58,"breadcrumbs":5,"title":1},"247":{"body":24,"breadcrumbs":7,"title":3},"248":{"body":4,"breadcrumbs":6,"title":2},"249":{"body":44,"breadcrumbs":6,"title":2},"25":{"body":6,"breadcrumbs":4,"title":2},"250":{"body":79,"breadcrumbs":7,"title":3},"251":{"body":29,"breadcrumbs":6,"title":2},"252":{"body":23,"breadcrumbs":6,"title":2},"253":{"body":56,"breadcrumbs":6,"title":2},"254":{"body":39,"breadcrumbs":5,"title":1},"255":{"body":19,"breadcrumbs":5,"title":1},"256":{"body":49,"breadcrumbs":8,"title":3},"257":{"body":188,"breadcrumbs":8,"title":3},"258":{"body":34,"breadcrumbs":7,"title":2},"259":{"body":43,"breadcrumbs":4,"title":2},"26":{"body":26,"breadcrumbs":4,"title":2},"260":{"body":119,"breadcrumbs":6,"title":2},"261":{"body":27,"breadcrumbs":7,"title":3},"262":{"body":47,"breadcrumbs":5,"title":1},"263":{"body":57,"breadcrumbs":7,"title":3},"264":{"body":132,"breadcrumbs":6,"title":2},"265":{"body":68,"breadcrumbs":6,"title":2},"266":{"body":56,"breadcrumbs":6,"title":2},"267":{"body":36,"breadcrumbs":6,"title":2},"268":{"body":40,"breadcrumbs":6,"title":2},"269":{"body":132,"breadcrumbs":6,"title":2},"27":{"body":14,"breadcrumbs":5,"title":3},"270":{"body":52,"breadcrumbs":8,"title":4},"271":{"body":224,"breadcrumbs":8,"title":4},"272":{"body":28,"breadcrumbs":6,"title":2},"273":{"body":74,"breadcrumbs":5,"title":1},"274":{"body":135,"breadcrumbs":5,"title":1},"275":{"body":28,"breadcrumbs":4,"title":1},"276":{"body":48,"breadcrumbs":4,"title":1},"277":{"body":86,"breadcrumbs":4,"title":1},"278":{"body":103,"breadcrumbs":4,"title":1},"279":{"body":105,"breadcrumbs":4,"title":1},"28":{"body":120,"breadcrumbs":4,"title":2},"280":{"body":39,"breadcrumbs":4,"title":1},"281":{"body":20,"breadcrumbs":5,"title":2},"282":{"body":81,"breadcrumbs":6,"title":2},"283":{"body":99,"breadcrumbs":5,"title":1},"284":{"body":235,"breadcrumbs":5,"title":1},"285":{"body":90,"breadcrumbs":8,"title":4},"286":{"body":117,"breadcrumbs":7,"title":3},"287":{"body":154,"breadcrumbs":8,"title":4},"288":{"body":149,"breadcrumbs":6,"title":2},"289":{"body":25,"breadcrumbs":8,"title":4},"29":{"body":64,"breadcrumbs":4,"title":2},"290":{"body":22,"breadcrumbs":5,"title":1},"291":{"body":32,"breadcrumbs":5,"title":1},"292":{"body":12,"breadcrumbs":6,"title":2},"293":{"body":59,"breadcrumbs":8,"title":3},"294":{"body":202,"breadcrumbs":6,"title":1},"295":{"body":173,"breadcrumbs":9,"title":4},"296":{"body":30,"breadcrumbs":7,"title":2},"297":{"body":36,"breadcrumbs":7,"title":2},"298":{"body":46,"breadcrumbs":6,"title":2},"299":{"body":78,"breadcrumbs":6,"title":2},"3":{"body":20,"breadcrumbs":6,"title":2},"30":{"body":114,"breadcrumbs":5,"title":3},"300":{"body":122,"breadcrumbs":5,"title":1},"301":{"body":13,"breadcrumbs":5,"title":1},"302":{"body":126,"breadcrumbs":5,"title":1},"303":{"body":13,"breadcrumbs":5,"title":1},"304":{"body":23,"breadcrumbs":5,"title":1},"305":{"body":3,"breadcrumbs":5,"title":1},"306":{"body":19,"breadcrumbs":6,"title":2},"307":{"body":135,"breadcrumbs":6,"title":2},"308":{"body":126,"breadcrumbs":7,"title":3},"309":{"body":24,"breadcrumbs":7,"title":3},"31":{"body":105,"breadcrumbs":4,"title":2},"310":{"body":19,"breadcrumbs":5,"title":1},"311":{"body":7,"breadcrumbs":6,"title":2},"312":{"body":19,"breadcrumbs":8,"title":3},"313":{"body":81,"breadcrumbs":6,"title":1},"314":{"body":34,"breadcrumbs":7,"title":2},"315":{"body":42,"breadcrumbs":6,"title":1},"316":{"body":30,"breadcrumbs":6,"title":2},"317":{"body":106,"breadcrumbs":5,"title":1},"318":{"body":31,"breadcrumbs":5,"title":1},"319":{"body":76,"breadcrumbs":7,"title":3},"32":{"body":139,"breadcrumbs":3,"title":1},"320":{"body":20,"breadcrumbs":6,"title":2},"321":{"body":19,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":5,"title":2},"323":{"body":89,"breadcrumbs":4,"title":1},"324":{"body":152,"breadcrumbs":5,"title":2},"325":{"body":36,"breadcrumbs":5,"title":2},"326":{"body":82,"breadcrumbs":5,"title":2},"327":{"body":80,"breadcrumbs":5,"title":2},"328":{"body":70,"breadcrumbs":5,"title":2},"329":{"body":13,"breadcrumbs":6,"title":3},"33":{"body":84,"breadcrumbs":4,"title":2},"330":{"body":8,"breadcrumbs":5,"title":2},"331":{"body":79,"breadcrumbs":4,"title":1},"332":{"body":111,"breadcrumbs":5,"title":2},"333":{"body":33,"breadcrumbs":5,"title":2},"334":{"body":34,"breadcrumbs":6,"title":2},"335":{"body":89,"breadcrumbs":5,"title":1},"336":{"body":54,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":5,"title":1},"338":{"body":20,"breadcrumbs":6,"title":2},"339":{"body":22,"breadcrumbs":6,"title":2},"34":{"body":91,"breadcrumbs":4,"title":2},"340":{"body":7,"breadcrumbs":6,"title":2},"341":{"body":31,"breadcrumbs":6,"title":3},"342":{"body":93,"breadcrumbs":4,"title":1},"343":{"body":16,"breadcrumbs":5,"title":2},"344":{"body":68,"breadcrumbs":4,"title":1},"345":{"body":36,"breadcrumbs":5,"title":2},"346":{"body":19,"breadcrumbs":4,"title":1},"347":{"body":94,"breadcrumbs":5,"title":2},"348":{"body":74,"breadcrumbs":5,"title":2},"349":{"body":67,"breadcrumbs":5,"title":2},"35":{"body":12,"breadcrumbs":3,"title":1},"350":{"body":36,"breadcrumbs":5,"title":2},"351":{"body":25,"breadcrumbs":4,"title":1},"352":{"body":37,"breadcrumbs":7,"title":4},"353":{"body":21,"breadcrumbs":6,"title":3},"354":{"body":34,"breadcrumbs":5,"title":2},"355":{"body":102,"breadcrumbs":6,"title":3},"356":{"body":28,"breadcrumbs":5,"title":2},"357":{"body":19,"breadcrumbs":5,"title":2},"358":{"body":56,"breadcrumbs":5,"title":2},"359":{"body":46,"breadcrumbs":6,"title":3},"36":{"body":69,"breadcrumbs":4,"title":2},"360":{"body":74,"breadcrumbs":5,"title":2},"361":{"body":36,"breadcrumbs":5,"title":2},"362":{"body":133,"breadcrumbs":4,"title":2},"363":{"body":70,"breadcrumbs":4,"title":2},"364":{"body":64,"breadcrumbs":6,"title":4},"365":{"body":3,"breadcrumbs":4,"title":2},"366":{"body":45,"breadcrumbs":6,"title":3},"367":{"body":19,"breadcrumbs":5,"title":2},"368":{"body":32,"breadcrumbs":5,"title":2},"369":{"body":43,"breadcrumbs":7,"title":4},"37":{"body":28,"breadcrumbs":4,"title":2},"370":{"body":30,"breadcrumbs":7,"title":4},"371":{"body":17,"breadcrumbs":8,"title":5},"372":{"body":14,"breadcrumbs":6,"title":3},"373":{"body":101,"breadcrumbs":6,"title":3},"374":{"body":71,"breadcrumbs":8,"title":5},"375":{"body":82,"breadcrumbs":8,"title":5},"376":{"body":111,"breadcrumbs":9,"title":6},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":0,"breadcrumbs":3,"title":1},"379":{"body":11,"breadcrumbs":3,"title":1},"38":{"body":24,"breadcrumbs":4,"title":2},"380":{"body":13,"breadcrumbs":3,"title":1},"381":{"body":17,"breadcrumbs":3,"title":1},"382":{"body":25,"breadcrumbs":3,"title":1},"383":{"body":47,"breadcrumbs":4,"title":2},"384":{"body":47,"breadcrumbs":3,"title":2},"385":{"body":70,"breadcrumbs":2,"title":1},"386":{"body":46,"breadcrumbs":7,"title":4},"387":{"body":46,"breadcrumbs":5,"title":3},"388":{"body":16,"breadcrumbs":5,"title":3},"389":{"body":27,"breadcrumbs":5,"title":3},"39":{"body":39,"breadcrumbs":4,"title":2},"4":{"body":18,"breadcrumbs":6,"title":2},"40":{"body":32,"breadcrumbs":4,"title":2},"41":{"body":27,"breadcrumbs":4,"title":2},"42":{"body":446,"breadcrumbs":5,"title":3},"43":{"body":183,"breadcrumbs":5,"title":3},"44":{"body":133,"breadcrumbs":4,"title":2},"45":{"body":34,"breadcrumbs":3,"title":1},"46":{"body":30,"breadcrumbs":2,"title":1},"47":{"body":66,"breadcrumbs":3,"title":1},"48":{"body":52,"breadcrumbs":4,"title":2},"49":{"body":31,"breadcrumbs":4,"title":2},"5":{"body":9,"breadcrumbs":8,"title":4},"50":{"body":6,"breadcrumbs":3,"title":1},"51":{"body":42,"breadcrumbs":4,"title":2},"52":{"body":0,"breadcrumbs":3,"title":1},"53":{"body":36,"breadcrumbs":3,"title":1},"54":{"body":59,"breadcrumbs":3,"title":1},"55":{"body":45,"breadcrumbs":6,"title":4},"56":{"body":28,"breadcrumbs":4,"title":2},"57":{"body":21,"breadcrumbs":3,"title":1},"58":{"body":34,"breadcrumbs":4,"title":2},"59":{"body":56,"breadcrumbs":4,"title":2},"6":{"body":10,"breadcrumbs":8,"title":4},"60":{"body":3,"breadcrumbs":4,"title":2},"61":{"body":94,"breadcrumbs":3,"title":1},"62":{"body":3,"breadcrumbs":4,"title":2},"63":{"body":45,"breadcrumbs":3,"title":1},"64":{"body":11,"breadcrumbs":4,"title":2},"65":{"body":26,"breadcrumbs":3,"title":1},"66":{"body":41,"breadcrumbs":4,"title":2},"67":{"body":84,"breadcrumbs":3,"title":1},"68":{"body":90,"breadcrumbs":4,"title":2},"69":{"body":40,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":9,"title":5},"70":{"body":24,"breadcrumbs":4,"title":1},"71":{"body":69,"breadcrumbs":5,"title":2},"72":{"body":35,"breadcrumbs":6,"title":3},"73":{"body":41,"breadcrumbs":5,"title":2},"74":{"body":3,"breadcrumbs":5,"title":2},"75":{"body":36,"breadcrumbs":4,"title":1},"76":{"body":41,"breadcrumbs":5,"title":2},"77":{"body":61,"breadcrumbs":5,"title":2},"78":{"body":44,"breadcrumbs":5,"title":2},"79":{"body":30,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":56,"breadcrumbs":6,"title":2},"81":{"body":42,"breadcrumbs":5,"title":1},"82":{"body":75,"breadcrumbs":6,"title":2},"83":{"body":68,"breadcrumbs":5,"title":1},"84":{"body":49,"breadcrumbs":5,"title":1},"85":{"body":27,"breadcrumbs":5,"title":1},"86":{"body":6,"breadcrumbs":6,"title":2},"87":{"body":68,"breadcrumbs":6,"title":2},"88":{"body":59,"breadcrumbs":5,"title":1},"89":{"body":3,"breadcrumbs":6,"title":2},"9":{"body":39,"breadcrumbs":8,"title":3},"90":{"body":32,"breadcrumbs":4,"title":1},"91":{"body":83,"breadcrumbs":4,"title":1},"92":{"body":37,"breadcrumbs":4,"title":1},"93":{"body":60,"breadcrumbs":4,"title":1},"94":{"body":44,"breadcrumbs":5,"title":2},"95":{"body":43,"breadcrumbs":6,"title":3},"96":{"body":24,"breadcrumbs":6,"title":3},"97":{"body":156,"breadcrumbs":4,"title":1},"98":{"body":94,"breadcrumbs":6,"title":3},"99":{"body":73,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"This is the Move Book - a comprehensive guide to the Move programming language and the Sui blockchain. The book is intended for developers who are interested in learning about Move and building on Sui. The book is in active development and a work in progress. If you have any feedback or suggestions, feel free to open an issue or a pull request on the GitHub repository . If you're looking for The Move Reference, you can find it here .","breadcrumbs":"The Move Book » The Move Book","id":"0","title":"The Move Book"},"1":{"body":"This book is dedicated to Move, a smart contract language that captures the essence of safe programming with digital assets. Move is designed around the following values: Secure by default: Insecure languages are a serious barrier both to accessible smart contract development and to mainstream adoption of digital assets. The first duty of a smart contract language is to prevent as many potential safety issues as possible (e.g. re-entrancy, missing access control checks, arithmetic overflow, ...) by construction. Any changes to Move should preserve or enhance its existing security guarantees. Expressive by nature: Move must enable programmers to write any smart contract they can imagine. But we care as much about the way it feels to write Move as we do about what Move allows you to do - the language should be rich enough that the features needed for a task are available, and minimal enough that the choice is obvious. The Move toolchain should be a productivity enhancer and a thought partner. Intuitive for all: Smart contracts are only one part of a useful application. Move should understand the broader context of its usage and design with both the smart contract developer and the application developer in mind. It should be easy for developers to learn how to read Move-managed state, build Move powered transactions, and write new Move code. The core technical elements of Move are: Safe, familiar, and flexible abstractions for digital assets via programmable objects . A rich ability system (inspired by linear types) that gives programmers extreme control of how values are created, destroyed, stored, copied, and transferred. A module system with strong encapsulation features to enable code reuse while maintaining this control. Dynamic fields for creating hierarchical relationships between objects. Programmable transaction blocks (PTBs) to enable atomic client-side composition of Move-powered APIs. Move was born in 2018 as part of Facebook's Libra project. It was publicly revealed in 2019, the first Move-powered network launched in 2020. As of April 2024, there are numerous Move-powered chains in production with several more in the works. Move is an embedded language with a platform-agnostic core, which means it takes on a slightly different personality in each chain that uses it. Creating a new programming language and bootstrapping a community around it is an ambitious, long term project. A language has to be an order of magnitude better than alternatives in relevant ways to have a chance, but even then the quality of the community matters more than the technical fundamentals. Move is a young language, but it's off to a good start in terms of both differentiation and community. A small, but fanatical group of smart contract programmers and core contributors united by the Move values are pushing the boundaries of what smart contracts can do, the applications they can enable, and who can (safely) write them. If that inspires you, read on! — Sam Blackshear, creator of Move","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move (Extension) is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"Structs in the Move Reference.","breadcrumbs":"Move Basics » Struct » Further reading","id":"100","title":"Further reading"},"101":{"body":"Move has a unique type system which allows customizing type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . Throughout the book you will see chapters with name Ability: , where is the name of the ability. These chapters will cover the ability in detail, how it works, and how to use it in Move.","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities: Introduction","id":"101","title":"Abilities: Introduction"},"102":{"body":"Abilities are a way to allow certain behaviors for a type. They are a part of the struct declaration and define which behaviours are allowed for the instances of the struct.","breadcrumbs":"Move Basics » Abilities: Introduction » What are Abilities?","id":"102","title":"What are Abilities?"},"103":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store, each of them is used to define a specific behaviour for the struct instances. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities syntax","id":"103","title":"Abilities syntax"},"104":{"body":"A quick overview of the abilities: All of the built-in types, except references, have copy, drop and store abilities. References have copy and drop. copy - allows the struct to be copied . Explained in the Ability: Copy chapter. drop - allows the struct to be dropped or discarded . Explained in the Ability: Drop chapter. key - allows the struct to be used as a key in a storage. Explained in the Ability: Key chapter. store - allows the struct to be stored in structs with the key ability. Explained in the Ability: Store chapter. While it is important to mention them here, we will go in detail about each ability in the following chapters and give a proper context on how to use them.","breadcrumbs":"Move Basics » Abilities: Introduction » Overview","id":"104","title":"Overview"},"105":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it can only be passed around and requires special handling. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the Hot Potato chapter.","breadcrumbs":"Move Basics » Abilities: Introduction » No abilities","id":"105","title":"No abilities"},"106":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Abilities: Introduction » Further reading","id":"106","title":"Further reading"},"107":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. public struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. public struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Move Basics » Ability: Drop » Abilities: Drop","id":"107","title":"Abilities: Drop"},"108":{"body":"All native types in Move have the drop ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the drop ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Drop » Types with the drop Ability","id":"108","title":"Types with the drop Ability"},"109":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Drop » Further reading","id":"109","title":"Further reading"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Move Basics » Importing Modules » Importing Modules","id":"110","title":"Importing Modules"},"111":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} Another module defined in the same package can import the first module using the use keyword. // File: sources/module_two.move\nmodule book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module","id":"111","title":"Importing a Module"},"112":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing Members","id":"112","title":"Importing Members"},"113":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Grouping Imports","id":"113","title":"Grouping Imports"},"114":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Resolving Name Conflicts","id":"114","title":"Resolving Name Conflicts"},"115":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Move Basics » Importing Modules » Adding an External Dependency","id":"115","title":"Adding an External Dependency"},"116":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module from Another Package","id":"116","title":"Importing a Module from Another Package"},"117":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which do not interact with the storage, but provide basic tools for working and manipulating the data. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Move Basics » Standard Library » Standard Library","id":"117","title":"Standard Library"},"118":{"body":"In this book we go into detail about most of the modules in the Standard Library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements it. Module Description Chapter std::string Provides basic string operations String std::ascii Provides basic ASCII operations String std::option Implements an Option Option std::vector Native operations on the vector type Vector std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::type_name Allows runtime type reflection Type Reflection std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::debug Contains debugging functions, which are available in only in test mode Debugging std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Move Basics » Standard Library » Most Common Modules","id":"118","title":"Most Common Modules"},"119":{"body":"Standard Library exports one named address - std = 0x1. [addresses]\nstd = \"0x1\"","breadcrumbs":"Move Basics » Standard Library » Exported Addresses","id":"119","title":"Exported Addresses"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"Some of the modules are imported implicitly, and are available in the module without explicit use import. For Standard Library, these modules and types are: std::vector std::option std::option::Option","breadcrumbs":"Move Basics » Standard Library » Implicit Imports","id":"120","title":"Implicit Imports"},"121":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Move Basics » Standard Library » Importing std without Sui Framework","id":"121","title":"Importing std without Sui Framework"},"122":{"body":"The source code of the Move Standard Library is available in the Sui repository .","breadcrumbs":"Move Basics » Standard Library » Source Code","id":"122","title":"Source Code"},"123":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Move Basics » Vector » Vector","id":"123","title":"Vector"},"124":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). // An empty vector of bool elements.\nlet empty: vector = vector[]; // A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; // A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Move Basics » Vector » Vector syntax","id":"124","title":"Vector syntax"},"125":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0);\nassert!(!v.is_empty(), 1); v.push_back(40);\nlet last_value = v.pop_back(); assert!(last_value == 40, 2);","breadcrumbs":"Move Basics » Vector » Vector operations","id":"125","title":"Vector operations"},"126":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. /// A struct without `drop` ability. public struct NoDrop {} #[test] fun test_destroy_empty() { // Initialize a vector of `NoDrop` elements. let v = vector[]; // While we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }","breadcrumbs":"Move Basics » Vector » Destroying a Vector of non-droppable types","id":"126","title":"Destroying a Vector of non-droppable types"},"127":{"body":"Vector in the Move Reference.","breadcrumbs":"Move Basics » Vector » Further reading","id":"127","title":"Further reading"},"128":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library , and is defined as follows: File: move-stdlib/source/option.move // File: move-stdlib/source/option.move\n/// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The 'std::option' module is implicitly imported in every module, and you don't need to add an import. The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Move Basics » Option » Option","id":"128","title":"Option"},"129":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; /// A struct representing a user record. public struct User has drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Move Basics » Option » In Practice","id":"129","title":"In Practice"},"13":{"body":"The Web-based IDE from Github can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. // `option::some` creates an `Option` value with a value.\nlet mut opt = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(opt.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option, leaving the option empty.\nlet inner = opt.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt.is_none(), 2);","breadcrumbs":"Move Basics » Option » Using Option","id":"130","title":"Using Option"},"131":{"body":"While Move does not have a built-in type to represent strings, it does have two standard implementations for strings in the Standard Library . The std::string module defines a String type and methods for UTF-8 encoded strings, and the second module, std::ascii, provides an ASCII String type and its methods. Sui execution environment automatically converts bytevector into String in transaction inputs. So in many cases, a String does not need to be constructed in the Transaction Block .","breadcrumbs":"Move Basics » String » String","id":"131","title":"String"},"132":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide safety checks and methods to work with strings, but at the end of the day, they are just vectors of bytes. module book::custom_string { /// Anyone can implement a custom string-like type by wrapping a vector. public struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n}","breadcrumbs":"Move Basics » String » Strings are bytes","id":"132","title":"Strings are bytes"},"133":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module, which is fully implemented in Move.","breadcrumbs":"Move Basics » String » Working with UTF-8 Strings","id":"133","title":"Working with UTF-8 Strings"},"134":{"body":"The String type in the std::string module is defined as follows: // File: move-stdlib/sources/string.move\n/// A `String` holds a sequence of bytes which is guaranteed to be in utf8 format.\npublic struct String has copy, drop, store { bytes: vector,\n}","breadcrumbs":"Move Basics » String » Definition","id":"134","title":"Definition"},"135":{"body":"To create a new UTF-8 String instance, you can use the string::utf8 method. The Standard Library provides an alias .to_string() on the vector for convenience. // the module is `std::string` and the type is `String`\nuse std::string::{Self, String}; // strings are normally created using the `utf8` function\n// type declaration is not necessary, we put it here for clarity\nlet hello: String = string::utf8(b\"Hello\"); // The `.to_string()` alias on the `vector` is more convenient\nlet hello = b\"Hello\".to_string();","breadcrumbs":"Move Basics » String » Creating a String","id":"135","title":"Creating a String"},"136":{"body":"UTF8 String provides a number of methods to work with strings. The most common operations on strings are: concatenation, slicing, and getting the length. Additionally, for custom string operations, the bytes() method can be used to get the underlying byte vector. let mut str = b\"Hello,\".to_string();\nlet another = b\" World!\".to_string(); // append(String) adds the content to the end of the string\nstr.append(another); // `sub_string(start, end)` copies a slice of the string\nstr.sub_string(0, 5); // \"Hello\" // `length()` returns the number of bytes in the string\nstr.length(); // 12 (bytes) // methods can also be chained! Get a length of a substring\nstr.sub_string(0, 5).length(); // 5 (bytes) // whether the string is empty\nstr.is_empty(); // false // get the underlying byte vector for custom operations\nlet bytes: &vector = str.bytes();","breadcrumbs":"Move Basics » String » Common Operations","id":"136","title":"Common Operations"},"137":{"body":"The default utf8 method may abort if the bytes passed into it are not valid UTF-8. If you are not sure that the bytes you are passing are valid, you should use the try_utf8 method instead. It returns an Option, which contains no value if the bytes are not valid UTF-8, and a string otherwise. Hint: the name that starts with try_* indicates that the function returns an Option with the expected result or none if the operation fails. It is a common naming convention borrowed from Rust. // this is a valid UTF-8 string\nlet hello = b\"Hello\".try_to_string(); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string\nlet invalid = b\"\\xFF\".try_to_string(); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8","breadcrumbs":"Move Basics » String » Safe UTF-8 Operations","id":"137","title":"Safe UTF-8 Operations"},"138":{"body":"The string module does not provide a way to access individual characters in a string. This is because UTF-8 is a variable-length encoding, and the length of a character can be anywhere from 1 to 4 bytes. Similarly, the length() method returns the number of bytes in the string, not the number of characters. However, methods like sub_string and insert check character boundaries and will abort when the index is in the middle of a character.","breadcrumbs":"Move Basics » String » UTF-8 Limitations","id":"138","title":"UTF-8 Limitations"},"139":{"body":"This section is coming soon!","breadcrumbs":"Move Basics » String » ASCII Strings","id":"139","title":"ASCII Strings"},"14":{"body":"Move 2024 is the new edition of the Move language maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the changes and improvements in the new edition.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Move Basics » Control Flow » Control Flow","id":"140","title":"Control Flow"},"141":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; } Let's see how we can use if and else to assign a value to a variable: #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); } Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Move Basics » Control Flow » Conditional Statements","id":"141","title":"Conditional Statements"},"142":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Move Basics » Control Flow » Repeating Statements with Loops","id":"142","title":"Repeating Statements with Loops"},"143":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () { ; }; Here is an example of a while loop with a very simple condition: // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(mut x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; x = x + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }","breadcrumbs":"Move Basics » Control Flow » The while loop","id":"143","title":"The while loop"},"144":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop { ; }; Let's rewrite the previous example using loop instead of while: #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Move Basics » Control Flow » Infinite loop","id":"144","title":"Infinite loop"},"145":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is (without a semicolon): break The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break // Exit the loop. } }; assert!(x == 5, 0); } Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Move Basics » Control Flow » Exiting a Loop Early","id":"145","title":"Exiting a Loop Early"},"146":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is (without a semicolon): continue The example below skips odd numbers and prints only even numbers from 0 to 10: #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue // Skip the rest of the iteration. }; std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break // Exit the loop. } }; assert!(x == 10, 0); // 10 } break and continue statements can be used in both while and loop loops.","breadcrumbs":"Move Basics » Control Flow » Skipping an Iteration","id":"146","title":"Skipping an Iteration"},"147":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return Here is an example of a function that returns a value when a certain condition is met: /// This function returns `true` if `x` is greater than 0 and not 5, /// otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false }; if (x > 0) { return true }; false } #[test] fun test_return() { assert!(is_positive(5) == false, 0); assert!(is_positive(0) == false, 0); assert!(is_positive(1) == true, 0); } Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Move Basics » Control Flow » Early Return","id":"147","title":"Early Return"},"148":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to static values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are stored in the module's bytecode, and each time they are used, the value is copied. module book::shop_price { use sui::coin::Coin; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// The owner of the shop, an address. const SHOP_OWNER: address = @0xa11ce; /// An item sold in the shop. public struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); transfer::public_transfer(coin, SHOP_OWNER); Item { /* ... */ } }\n}","breadcrumbs":"Move Basics » Constants » Constants","id":"148","title":"Constants"},"149":{"body":"Constants must start with a capital letter - this is enforced at the compiler level. For constants used as a value, there's a convention to use uppercase letters and underscores to separate words. It's a way to make constants stand out from other identifiers in the code. One exception is made for error constants , which are written in ECamelCase. /// Price of the item used at the shop.\nconst ITEM_PRICE: u64 = 100; /// Error constant.\nconst EItemNotFound: u64 = 1;","breadcrumbs":"Move Basics » Constants » Naming Convention","id":"149","title":"Naming Convention"},"15":{"body":"In this chapter, you will learn how to create a new package, write a simple module, compile it, and run tests with the Move CLI. Make sure you have installed Sui and set up your IDE environment . Run the command below to test if Sui has been installed correctly. # It should print the client version. E.g. sui-client 1.22.0-036299745.\nsui client --version Move CLI is a command-line interface for the Move language; it is built into the Sui binary and provides a set of commands to manage packages, compile and test code. The structure of the chapter is as follows: Create a New Package Directory Structure Compiling the Package Running Tests","breadcrumbs":"Hello, World! » Hello, World!","id":"15","title":"Hello, World!"},"150":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Move Basics » Constants » Constants are Immutable","id":"150","title":"Constants are Immutable"},"151":{"body":"A common use case for an application is to define a set of constants that are used throughout the codebase. But due to constants being private to the module, they can't be accessed from other modules. One way to solve this is to define a \"config\" module that exports the constants. module book::config { const ITEM_PRICE: u64 = 100; const TAX_RATE: u64 = 10; const SHIPPING_COST: u64 = 5; /// Returns the price of an item. public fun item_price(): u64 { ITEM_PRICE } /// Returns the tax rate. public fun tax_rate(): u64 { TAX_RATE } /// Returns the shipping cost. public fun shipping_cost(): u64 { SHIPPING_COST }\n} This way other modules can import and read the constants, and the update process is simplified. If the constants need to be changed, only the config module needs to be updated during the package upgrade.","breadcrumbs":"Move Basics » Constants » Using Config Pattern","id":"151","title":"Using Config Pattern"},"152":{"body":"Constants in the Move Reference Coding conventions for constants","breadcrumbs":"Move Basics » Constants » Links","id":"152","title":"Links"},"153":{"body":"A transaction can either succeed or fail. Successful execution applies all the changes made to objects and on-chain data, and the transaction is committed to the blockchain. Alternatively, if a transaction aborts, the changes are not applied. The abort keyword is used to abort a transaction and revert the changes made so far. It is important to note that there is no catch mechanism in Move. If a transaction aborts, the changes made so far are reverted, and the transaction is considered failed.","breadcrumbs":"Move Basics » Aborting Execution » Aborting Execution","id":"153","title":"Aborting Execution"},"154":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(1)\n}; The code above will, of course, abort with abort code 1.","breadcrumbs":"Move Basics » Aborting Execution » Abort","id":"154","title":"Abort"},"155":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. The code argument is required and has to be a u64 value. // aborts if `user_has_access` is `false` with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Move Basics » Aborting Execution » assert!","id":"155","title":"assert!"},"156":{"body":"To make error codes more descriptive, it is a good practice to define error constants . Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constants are no different from other constants and don't have special handling, however, they are used to increase the readability of the code and make it easier to understand the abort scenarios. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; /// Updates a record.\npublic fun update_record(/* ... , */ user_has_access: bool, field_exists: bool) { // asserts are way more readable now assert!(user_has_access, ENoAccess); assert!(field_exists, ENoField); /* ... */\n}","breadcrumbs":"Move Basics » Aborting Execution » Error constants","id":"156","title":"Error constants"},"157":{"body":"Abort and Assert in the Move Reference. We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Move Basics » Aborting Execution » Further reading","id":"157","title":"Further reading"},"158":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Move Basics » Function » Function","id":"158","title":"Function"},"159":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Move Basics » Function » Function declaration","id":"159","title":"Function declaration"},"16":{"body":"To create a new program, we will use the sui move new command followed by the name of the application. Our first program will be called hello_world. Note: In this and other chapters, if you see code blocks with lines starting with $ (dollar sign), it means that the following command should be run in a terminal. The sign should not be included. It's a common way of showing commands in terminal environments. $ sui move new hello_world The sui move command gives access to the Move CLI - a built-in compiler, test runner and a utility for all things Move. The new command followed by the name of the package will create a new package in a new folder. In our case, the folder name is \"hello_world\". We can view the contents of the folder to see that the package was created successfully. $ ls -l hello_world\nMove.toml\nsources\ntests","breadcrumbs":"Hello, World! » Create a New Package","id":"16","title":"Create a New Package"},"160":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Move Basics » Function » Accessing functions","id":"160","title":"Accessing functions"},"161":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // Tuple must be destructured to access its elements.\n// Name and age are declared as immutable variables.\nlet (name, age) = get_name_and_age();\nassert!(name == b\"John\", 0);\nassert!(age == 25, 0); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, only use the age\nlet (_, age) = get_name_and_age();","breadcrumbs":"Move Basics » Function » Multiple return values","id":"161","title":"Multiple return values"},"162":{"body":"Functions in the Move Reference.","breadcrumbs":"Move Basics » Function » Further reading","id":"162","title":"Further reading"},"163":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Move Basics » Struct Methods » Struct Methods","id":"163","title":"Struct Methods"},"164":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Move Basics » Struct Methods » Method syntax","id":"164","title":"Method syntax"},"165":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun function_path as Type.method_name; // exported alias\npublic use fun function_path as Type.method_name; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. public struct Hero has drop { health: u8, } /// A struct representing a villain. public struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let hero = new_hero(); assert!(hero.health() == 100, 1); let villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Move Basics » Struct Methods » Method Aliases","id":"165","title":"Method Aliases"},"166":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. // TODO: better example (external module...)\nmodule book::hero_to_bytes { // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. // public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { // let mut hero = new(); // let serialized = hero.to_bytes(); // assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Move Basics » Struct Methods » Aliasing an external module's method","id":"166","title":"Aliasing an external module's method"},"167":{"body":"Method Syntax in the Move Reference.","breadcrumbs":"Move Basics » Struct Methods » Further reading","id":"167","title":"Further reading"},"168":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or public(package) - visible in the modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Move Basics » Visibility Modifiers » Visibility Modifiers","id":"168","title":"Visibility Modifiers"},"169":{"body":"A function or a struct defined in a module which has no visibility modifier is private to the module. It can't be called from other modules. module book::internal_visibility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} module book::try_calling_internal { use book::internal_visibility; // Different module -> can't call internal() fun try_calling_internal() { internal_visibility::internal(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Internal Visibility","id":"169","title":"Internal Visibility"},"17":{"body":"Move CLI will create a scaffold of the application and pre-create the directory structure and all necessary files. Let's see what's inside. hello_world\n├── Move.toml\n├── sources\n│ └── hello_world.move\n└── tests └── hello_world_tests.move","breadcrumbs":"Hello, World! » Directory Structure","id":"17","title":"Directory Structure"},"170":{"body":"A struct or a function can be made public by adding the public keyword before the fun or struct keyword. module book::public_visibility { // This function can be called from other modules public fun public() { /* ... */ }\n} A public function can be imported and called from other modules. The following code will compile: module book::try_calling_public { use book::public_visibility; // Different module -> can call public() fun try_calling_public() { public_visibility::public(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Public Visibility","id":"170","title":"Public Visibility"},"171":{"body":"Move 2024 introduces the package visibility modifier. A function with package visibility can be called from any module within the same package. It can't be called from other packages. module book::package_visibility { public(package) fun package_only() { /* ... */ }\n} A package function can be called from any module within the same package: module book::try_calling_package { use book::package_visibility; // Same package `book` -> can call package_only() fun try_calling_package() { package_visibility::package_only(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Package Visibility","id":"171","title":"Package Visibility"},"172":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership and Scope","id":"172","title":"Ownership and Scope"},"173":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here public fun other() { let b = 2; // b is owned by the `other` function } // b is dropped here #[test] fun test_owner() { owner(); other(); // a & b is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership","id":"173","title":"Ownership"},"174":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Move Basics » Ownership and Scope » Returning a Value","id":"174","title":"Returning a Value"},"175":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Passing by Value","id":"175","title":"Passing by Value"},"176":{"body":"Each function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Scopes with Blocks","id":"176","title":"Scopes with Blocks"},"177":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Move Basics » Ownership and Scope » Copyable Types","id":"177","title":"Copyable Types"},"178":{"body":"Local Variables and Scopes in the Move Reference.","breadcrumbs":"Move Basics » Ownership and Scope » Further reading","id":"178","title":"Further reading"},"179":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator let Copyable {} = a; // doesn't have `drop`\nlet Copyable {} = b; // doesn't have `drop`\nlet Copyable {} = c; // doesn't have `drop` In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Move Basics » Ability: Copy » Abilities: Copy","id":"179","title":"Abilities: Copy"},"18":{"body":"The Move.toml file, known as the package manifest , contains definitions and configuration settings for the package. It is used by the Move Compiler to manage package metadata, fetch dependencies, and register named addresses. We will explain it in detail in the Concepts chapter. By default, the package features one named address - the name of the package. [addresses]\nhello_world = \"0x0\"","breadcrumbs":"Hello, World! » Manifest","id":"18","title":"Manifest"},"180":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Move Basics » Ability: Copy » Copying and Drop","id":"180","title":"Copying and Drop"},"181":{"body":"All native types in Move have the copy ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the copy ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Copy » Types with the copy Ability","id":"181","title":"Types with the copy Ability"},"182":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Copy » Further reading","id":"182","title":"Further reading"},"183":{"body":"In the Ownership and Scope section, we explained that when a value is passed to a function, it is moved to the function's scope. This means that the function becomes the owner of the value, and the original scope (owner) can no longer use it. This is an important concept in Move, as it ensures that the value is not used in multiple places at the same time. However, there are use cases when we want to pass a value to a function but retain the ownership. This is where references come into play. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty","breadcrumbs":"Move Basics » References » References","id":"183","title":"References"},"184":{"body":"The initial layout of the metro pass application is simple. We define the Card type and the USES constant that represents the number of rides for a single card. We also add an error constant for the case when the card is empty. module book::metro_pass { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card public struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } }\n}","breadcrumbs":"Move Basics » References » Layout","id":"184","title":"Layout"},"185":{"body":"References are a way to show a value to a function without giving up the ownership. In our case, when we show the Card to the inspector, we don't want to give up the ownership of it, and we don't allow them to spend the rides. We just want to allow reading the value of the Card and prove its ownership. To do so, in the function signature, we use the & symbol to indicate that we are passing a reference to the value, not the value itself. /// Show the metro pass card to the inspector. public fun is_valid(card: &Card): bool { card.uses > 0 } Now the function can't take the ownership of the card, and it can't spend the rides. But it can read its value. Worth noting, that a signature like this makes it impossible to call the function without a Card at all. This is an important property which allows the Capability Pattern which we will cover in the next chapters.","breadcrumbs":"Move Basics » References » Reference","id":"185","title":"Reference"},"186":{"body":"In some cases, we want to allow the function to change the value of the Card. For example, when we use the Card at the turnstile, we want to spend a ride. To implement it, we use the &mut keyword in the function signature. /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } As you can see in the function body, the &mut reference allows mutating the value, and the function can spend the rides.","breadcrumbs":"Move Basics » References » Mutable Reference","id":"186","title":"Mutable Reference"},"187":{"body":"Lastly, let's give an illustration of what happens when we pass the value itself to the function. In this case, the function takes the ownership of the value, and the original scope can no longer use it. The owner of the Card can recycle it, and, hence, lose the ownership. /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } In the recycle function, the Card is taken by value and can be unpacked and destroyed. The original scope can't use it anymore.","breadcrumbs":"Move Basics » References » Passing by Value","id":"187","title":"Passing by Value"},"188":{"body":"To illustrate the full flow of the application, let's put all the pieces together in a test. #[test] fun test_card_2024() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.is_valid(), 0); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }","breadcrumbs":"Move Basics » References » Full Example","id":"188","title":"Full Example"},"189":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Move Basics » Generics » Generics","id":"189","title":"Generics"},"19":{"body":"The sources/ directory contains the source files. Move source files have .move extension, and are typically named after the module defined in the file. For example, in our case, the file name is hello_world.move and the Move CLI has already placed commented out code inside: /*\n/// Module: hello_world\nmodule hello_world::hello_world { }\n*/ The /* and */ are the comment delimiters in Move. Everything in between is ignored by the compiler and can be used for documentation or notes. We explain all ways to comment the code in the Basic Syntax . The commented out code is a module definition, it starts with the keyword module followed by a named address (or an address literal), and the module name. The module name is a unique identifier for the module and has to be unique within the package. The module name is used to reference the module from other modules or transactions.","breadcrumbs":"Hello, World! » Sources","id":"19","title":"Sources"},"190":{"body":"In this chapter we already mentioned the vector type, which is a generic type that can hold any other type. Another example of a generic type in the standard library is the Option type, which is used to represent a value that may or may not be present.","breadcrumbs":"Move Basics » Generics » In the Standard Library","id":"190","title":"In the Standard Library"},"191":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\npublic struct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_container() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0); // Value can be ignored only if it has the `drop` ability. let Container { value: _ } = container;\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Move Basics » Generics » Generic Syntax","id":"191","title":"Generic Syntax"},"192":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\npublic struct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair_1: Pair = new_pair(10, true); // type inference let pair_2 = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair_3 = new_pair(10u8, true); assert!(pair_1.first == 10, 0x0); assert!(pair_1.second, 0x0); // Unpacking is identical. let Pair { first: _, second: _ } = pair_1; let Pair { first: _, second: _ } = pair_2; let Pair { first: _, second: _ } = pair_3; } If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0); let Pair { first: pf1, second: ps1 } = pair1; // first1: u8, second1: bool let Pair { first: pf2, second: ps2 } = pair2; // first2: bool, second2: u8 assert!(pf1 == ps2, 0x0); // 10 == 10 assert!(ps1 == pf2, 0x0); // true == true\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Move Basics » Generics » Multiple Type Parameters","id":"192","title":"Multiple Type Parameters"},"193":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\npublic struct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Move Basics » Generics » Why Generics?","id":"193","title":"Why Generics?"},"194":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\npublic struct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. public struct USD {}\npublic struct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 }; // Unpacking is identical because the phantom type parameter is not used. let Coin { value: _ } = coin1; let Coin { value: _ } = coin2;\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Move Basics » Generics » Phantom Type Parameters","id":"194","title":"Phantom Type Parameters"},"195":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\npublic struct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\npublic struct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\npublic struct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability // let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities // let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Move Basics » Generics » Constraints on Type Parameters","id":"195","title":"Constraints on Type Parameters"},"196":{"body":"Generics in the Move Reference.","breadcrumbs":"Move Basics » Generics » Further Reading","id":"196","title":"Further Reading"},"197":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Move Basics » Type Reflection » Type Reflection","id":"197","title":"Type Reflection"},"198":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::ascii::String; use std::type_name::{Self, TypeName}; /// A function that returns the name of the type `T` and its module and address. public fun do_i_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] public struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, _address_str) = do_i_know_you(); // assert!(module_name == b\"type_reflection\".to_ascii_string(), 1); }\n}","breadcrumbs":"Move Basics » Type Reflection » In practice","id":"198","title":"In practice"},"199":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Move Basics » Type Reflection » Further reading","id":"199","title":"Further reading"},"2":{"body":"Move requires an environment to run and develop applications, and in this small chapter we will cover the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"2","title":"Before we begin"},"20":{"body":"The tests/ directory contains package tests. The compiler excludes these files in the regular build process but uses them in test and dev modes. The tests are written in Move and are marked with the #[test] attribute. Tests can be grouped in a separate module (then it's usually called module_name_tests.move ), or inside the module they're testing. Modules, imports, constants and functions can be annotated with #[test_only]. This attribute is used to exclude modules, functions or imports from the build process. This is useful when you want to add helpers for your tests without including them in the code that will be published on chain. The hello_world_tests.move file contains a commented out test module template: /*\n#[test_only]\nmodule hello_world::hello_world_tests { // uncomment this line to import the module // use hello_world::hello_world; const ENotImplemented: u64 = 0; #[test] fun test_hello_world() { // pass } #[test, expected_failure(abort_code = hello_world::hello_world_tests::ENotImplemented)] fun test_hello_world_fail() { abort ENotImplemented }\n}\n*/","breadcrumbs":"Hello, World! » Tests","id":"20","title":"Tests"},"200":{"body":"A crucial part of any software development, and even more - blockchain development, is testing. Here, we will cover the basics of testing in Move and how to write and organize tests for your Move code.","breadcrumbs":"Move Basics » Testing » Testing","id":"200","title":"Testing"},"201":{"body":"Tests in Move are functions marked with the #[test] attribute. This attribute tells the compiler that the function is a test function, and it should be run when the tests are executed. Test functions are regular functions, but they must take no arguments and have no return value. They are excluded from the bytecode, and are never published. module book::testing { // Test attribute is placed before the `fun` keyword. Can be both above or // right before the `fun` keyword: `#[test] fun my_test() { ... }` // The name of the test would be `book::testing::simple_test`. #[test] fun simple_test() { let sum = 2 + 2; assert!(sum == 4, 1); } // The name of the test would be `book::testing::more_advanced_test`. #[test] fun more_advanced_test() { let sum = 2 + 2 + 2; assert!(sum == 4, 1); }\n}","breadcrumbs":"Move Basics » Testing » The #[test] attribute","id":"201","title":"The #[test] attribute"},"202":{"body":"To run tests, you can use the sui move test command. This command will first build the package in the test mode and then run all the tests found in the package. During test mode, modules from both sources/ and tests/ directories are processed, and the tests are executed. $ sui move test\n> INCLUDING DEPENDENCY Sui\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING book\n> Running Move unit tests\n> ...","breadcrumbs":"Move Basics » Testing » Running Tests","id":"202","title":"Running Tests"},"203":{"body":"Tests for fail cases can be marked with #[expected_failure]. This attribute placed on a #[test] function tells the compiler that the test is expected to fail. This is useful when you want to test that a function fails when a certain condition is met. This attribute can only be placed on a #[test] function. The attribute can take an argument for abort code, which is the expected abort code when the test fails. If the test fails with a different abort code, the test will fail. If the execution did not abort, the test will also fail. module book::testing_failure { const EInvalidArgument: u64 = 1; #[test] #[expected_failure(abort_code = 0)] fun test_fail() { abort 0 // aborts with 0 } // attributes can be grouped together #[test, expected_failure(abort_code = EInvalidArgument)] fun test_fail_1() { abort 1 // aborts with 1 }\n} The abort_code argument can use constants defined in the tests module as well as imported from other modules. This is the only case where constants can be used and \"accessed\" in other modules.","breadcrumbs":"Move Basics » Testing » Test Fail Cases with #[expected_failure]","id":"203","title":"Test Fail Cases with #[expected_failure]"},"204":{"body":"In some cases, it is helpful to give the test environment access to some of the internal functions or features. It simplifies the testing process and allows for more thorough testing. However, it is important to remember that these functions should not be included in the final package. This is where the #[test_only] attribute comes in handy. module book::testing { // Public function which uses the `secret` function. public fun multiply_by_secret(x: u64): u64 { x * secret() } /// Private function which is not available to the public. fun secret(): u64 { 100 } #[test_only] /// This function is only available for testing purposes in tests and other /// test-only functions. Mind the visibility - for `#[test_only]` it is /// common to use `public` visibility. public fun secret_for_testing(): u64 { secret() } #[test] // In the test environment we have access to the `secret_for_testing` function. fun test_multiply_by_secret() { let expected = secret_for_testing() * 2; assert!(multiply_by_secret(2) == expected, 1); }\n} Functions marked with the #[test_only] will be available to the test environment, and to the other modules if their visibility is set so.","breadcrumbs":"Move Basics » Testing » Utilities with #[test_only]","id":"204","title":"Utilities with #[test_only]"},"205":{"body":"Unit Testing in the Move Reference.","breadcrumbs":"Move Basics » Testing » Further Reading","id":"205","title":"Further Reading"},"206":{"body":"This chapter describes the Object Model of Sui. It focuses on the theory and concepts behind the Object Model, preparing you for a practical dive into Sui Storage operations and resource ownership. For convenience and easier lookup, we split the chapter into several sections, each covering a specific aspect of the Object Model. In no way should this chapter be considered a comprehensive guide to the Object Model. It is only a high-level overview of the concepts and principles behind the Object Model. For a more detailed description, refer to the Sui Documentation .","breadcrumbs":"Object Model » Object Model","id":"206","title":"Object Model"},"207":{"body":"Smart-contract programming languages have historically focused on defining and managing digital assets. For example, the ERC-20 standard in Ethereum pioneered a set of standards to interact with digital currency tokens, establishing a blueprint for creating and managing digital currencies on the blockchain. Subsequently, the introduction of the ERC-721 standard marked a significant evolution, popularising the concept of non-fungible tokens (NFTs), which represent unique, indivisible assets. These standards laid the groundwork for the complex digital assets we see today. However, Ethereum's programming model lacked a native representation of assets. In other words, externally, a Smart Contract behaved like an asset, but the language itself did not have a way to inherently represent assets. From the start, Move aimed to provide a first-class abstraction for assets, opening up new avenues for thinking about and programming assets. It is important to highlight which properties are essential for an asset: Ownership: Every asset is associated with an owner(s), mirroring the straightforward concept of ownership in the physical world—just as you own a car, you can own a digital asset. Move enforces ownership in such a way that once an asset is moved , the previous owner completely loses any control over it. This mechanism ensures a clear and secure change of ownership. Non-copyable: In the real world, unique items cannot be duplicated effortlessly. Move applies this principle to digital assets, ensuring they cannot be arbitrarily copied within the program. This property is crucial for maintaining the scarcity and uniqueness of digital assets, mirroring the intrinsic value of physical assets. Non-discardable: Just as you cannot accidentally lose a house or a car without a trace, Move ensures that no asset can be discarded or lost in a program. Instead, assets must be explicitly transferred or destroyed. This property guarantees the deliberate handling of digital assets, preventing accidental loss and ensuring accountability in asset management. Move managed to encapsulate these properties in its design, becoming an ideal language for digital assets.","breadcrumbs":"Object Model » Language for Digital Assets » Move - Language for Digital Assets","id":"207","title":"Move - Language for Digital Assets"},"208":{"body":"Move was designed to provide a first-class abstraction for digital assets, enabling developers to create and manage assets natively. Essential properties of digital assets include ownership, non-copyability, and non-discardability, which Move enforces in its design. Move's asset model mirrors real-world asset management, ensuring secure and accountable asset ownership and transfer.","breadcrumbs":"Object Model » Language for Digital Assets » Summary","id":"208","title":"Summary"},"209":{"body":"Move: A Language With Programmable Resources (pdf) by Sam Blackshear, Evan Cheng, David L. Dill, Victor Gao, Ben Maurer, Todd Nowacki, Alistair Pott, Shaz Qadeer, Rain, Dario Russi, Stephane Sezer, Tim Zakian, Runtian Zhou*","breadcrumbs":"Object Model » Language for Digital Assets » Further reading","id":"209","title":"Further reading"},"21":{"body":"Additionally, Move CLI supports the examples/ folder. The files there are treated similarly to the ones placed under the tests/ folder - they're only built in the test and dev modes. They are to be examples of how to use the package or how to integrate it with other packages. The most popular use case is for documentation purposes and library packages.","breadcrumbs":"Hello, World! » Other Folders","id":"21","title":"Other Folders"},"210":{"body":"While Move was created to manage digital assets, its initial storage model was bulky and not well-suited for many use cases. For instance, if Alice wanted to transfer an asset X to Bob, Bob had to create a new \"empty\" resource, and then Alice could transfer asset X to Bob. This process was not intuitive and presented implementation challenges, partly due to the restrictive design of Diem . Another drawback of the original design was the lack of built-in support for a \"transfer\" operation, requiring every module to implement its own storage transfer logic. Additionally, managing heterogeneous collections of assets in a single account was particularly challenging. Sui addressed these challenges by redesigning the storage and ownership model of objects to more closely resemble real-world object interactions. With a native concept of ownership and transfer , Alice can directly transfer asset X to Bob. Furthermore, Bob can maintain a collection of different assets without any preparatory steps. These improvements laid the foundation for the Object Model in Sui.","breadcrumbs":"Object Model » Evolution of Move » Evolution of Move","id":"210","title":"Evolution of Move"},"211":{"body":"Move's initial storage model was not well-suited for managing digital assets, requiring complex and restrictive transfer operations. Sui introduced the Object Model, which provides a native concept of ownership, simplifying asset management and enabling heterogeneous collections.","breadcrumbs":"Object Model » Evolution of Move » Summary","id":"211","title":"Summary"},"212":{"body":"Why We Created Sui Move by Sam Blackshear","breadcrumbs":"Object Model » Evolution of Move » Further reading","id":"212","title":"Further reading"},"213":{"body":"The Object Model in Sui can be viewed as a high-level abstraction representing digital assets as objects . These objects have their own type and associated behaviors, a unique identifier, and support native storage operations like transfer and share . Designed to be intuitive and easy to use, the Object Model enables a wide range of use cases to be implemented with ease. Objects in Sui have the following properties: Type: Every object has a type, defining the structure and behavior of the object. Objects of different types cannot be mixed or used interchangeably, ensuring objects are used correctly according to their type system. Unique ID: Each object has a unique identifier, distinguishing it from other objects. This ID is generated upon the object's creation and is immutable. It's used to track and identify objects within the system. Owner: Every object is associated with an owner, who has control over the object. Ownership on Sui can be exclusive to an account, shared across the network, or frozen, allowing read-only access without modification or transfer capabilities. We will discuss ownership in more detail in the following sections. Data: Objects encapsulate their data, simplifying management and manipulation. The data structure and operations are defined by the object's type. Version: The transition from accounts to objects is facilitated by object versioning. Traditionally, blockchains use a nonce to prevent replay attacks. In Sui, the object's version acts as a nonce, preventing replay attacks for each object. Digest: Every object has a digest, which is a hash of the object's data. The digest is used to cryptographically verify the integrity of the object's data and ensures that it has not been tampered with. The digest is calculated when the object is created and is updated whenever the object's data changes.","breadcrumbs":"Object Model » What is an Object? » What is an Object?","id":"213","title":"What is an Object?"},"214":{"body":"Objects in Sui are high-level abstractions representing digital assets. Objects have a type, unique ID, owner, data, version, and digest. The Object Model simplifies asset management and enables a wide range of use cases.","breadcrumbs":"Object Model » What is an Object? » Summary","id":"214","title":"Summary"},"215":{"body":"Object Model in Sui Documentation.","breadcrumbs":"Object Model » What is an Object? » Further reading","id":"215","title":"Further reading"},"216":{"body":"Sui introduces four distinct ownership types for objects: single owner, shared state, immutable shared state, and object-owner. Each model offers unique characteristics and suits different use cases, enhancing flexibility and control in object management.","breadcrumbs":"Object Model » Ownership » Ownership","id":"216","title":"Ownership"},"217":{"body":"The account owner, also known as the single owner model, is the foundational ownership type in Sui. Here, an object is owned by a single account, granting that account exclusive control over the object within the behaviors associated with its type. This model embodies the concept of true ownership , where the account possesses complete authority over the object, making it inaccessible to others for modification or transfer. This level of ownership clarity is a significant advantage over other blockchain systems, where ownership definitions can be more ambiguous, and smart contracts may have the ability to alter or transfer assets without the owner's consent.","breadcrumbs":"Object Model » Ownership » Account Owner (or Single Owner)","id":"217","title":"Account Owner (or Single Owner)"},"218":{"body":"Single owner model has its limitations: for example, it is very tricky to implement a marketplace for digital assets without a shared state. For a generic marketplace scenario, imagine that Alice owns an asset X, and she wants to sell it by putting it into a shared marketplace. Then Bob can come and buy the asset directly from the marketplace. The reason why this is tricky is that it is impossible to write a smart contract that would \"lock\" the asset in Alice's account and take it out when Bob buys it. First, it will be a violation of the single owner model, and second, it requires a shared access to the asset. To facilitate a problem of shared data access, Sui has introduced a shared ownership model. In this model, an object can be shared with the network. Shared objects can be read and modified by any account on the network, and the rules of interaction are defined by the implementation of the object. Typical uses for shared objects are: marketplaces, shared resources, escrows, and other scenarios where multiple accounts need access to the same state.","breadcrumbs":"Object Model » Ownership » Shared State","id":"218","title":"Shared State"},"219":{"body":"Sui also offers the frozen object model, where an object becomes permanently read-only. These immutable objects, while readable, cannot be modified or moved, providing a stable and constant state accessible to all network participants. Frozen objects are ideal for public data, reference materials, and other use cases where the state permanence is desirable.","breadcrumbs":"Object Model » Ownership » Immutable (Frozen) State","id":"219","title":"Immutable (Frozen) State"},"22":{"body":"Move is a compiled language, and as such, it requires the compilation of source files into Move Bytecode. It contains only necessary information about the module, its members, and types, and excludes comments and some identifiers (for example, for constants). To demonstrate these features, let's replace the contents of the sources/hello_world.move file with the following: /// The module `hello_world` under named address `hello_world`.\n/// The named address is set in the `Move.toml`.\nmodule hello_world::hello_world { // Imports the `String` type from the Standard Library use std::string::String; /// Returns the \"Hello, World!\" as a `String`. public fun hello_world(): String { b\"Hello, World!\".to_string() }\n} During compilation, the code is built, but not run. A compiled package only includes functions that can be called by other modules or in a transaction. We will explain these concepts in the Concepts chapter. But now, let's see what happens when we run the sui move build . # run from the `hello_world` folder\n$ sui move build # alternatively, if you didn't `cd` into it\n$ sui move build --path hello_world It should output the following message on your console. UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world During the compilation, Move Compiler automatically creates a build folder where it places all fetched and compiled dependencies as well as the bytecode for the modules of the current package. If you're using a versioning system, such as Git, build folder should be ignored. For example, you should use a .gitignore file and add build to it.","breadcrumbs":"Hello, World! » Compiling the Package","id":"22","title":"Compiling the Package"},"220":{"body":"The last ownership model in Sui is the object owner . In this model, an object is owned by another object. This feature allows creating complex relationships between objects, store large heterogenious collections, and implementing extensible and modular systems. Practically speaking, since the transactions are initiated by accounts, the transaction still accesses the parent object, but it can then access the child objects through the parent object. A use case we love to mention is a game character. Alice can own the Hero object from a game, and the Hero can own items: also represented as objects, like a \"Map\", or a \"Compass\". Alice may take the \"Map\" from the \"Hero\" object, and then send it to Bob, or sell it on a marketplace. With object owner, it becomes very natural to imagine how the assets can be structured and managed in relation to each other.","breadcrumbs":"Object Model » Ownership » Object Owner","id":"220","title":"Object Owner"},"221":{"body":"Single Owner: Objects are owned by a single account, granting exclusive control over the object. Shared State: Objects can be shared with the network, allowing multiple accounts to read and modify the object. Immutable State: Objects become permanently read-only, providing a stable and constant state. Object Owner: Objects can own other objects, enabling complex relationships and modular systems.","breadcrumbs":"Object Model » Ownership » Summary","id":"221","title":"Summary"},"222":{"body":"In the next section we will talk about transaction execution paths in Sui, and how the ownership models affect the transaction execution.","breadcrumbs":"Object Model » Ownership » Next Steps","id":"222","title":"Next Steps"},"223":{"body":"The Object Model allows for variable transaction execution paths, depending on the object's ownership type. The transaction execution path determines how the transaction is processed and validated by the network. In this section, we'll explore the different transaction execution paths in Sui and how they interact with the consensus mechanism.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path & Consensus","id":"223","title":"Fast Path & Consensus"},"224":{"body":"At its core, blockchain technology faces a fundamental concurrency challenge: multiple parties may try to modify or access the same data simultaneously in a decentralized environment. This requires a system for sequencing and validating transactions to support the network's consistency. Sui addresses this challenge through a consensus mechanism, ensuring all nodes agree on the transactions' sequence and state. Consider a marketplace scenario where Alice and Bob simultaneously attempt to purchase the same asset. The network must resolve this conflict to prevent double-spending, ensuring that at most one transaction succeeds while the other is rightfully rejected.","breadcrumbs":"Object Model » Fast Path & Consensus » Concurrency Challenge","id":"224","title":"Concurrency Challenge"},"225":{"body":"However, not all transactions require the same level of validation and consensus. For example, if Alice wants to transfer an object that she owns to Bob, the network can process this transaction without sequencing it with respect to all other transactions in the network, as only Alice has the authority to access the object. This is known as the fast path execution, where transactions accessing account-owned objects are processed quickly without the need for extensive consensus. No concurrent data access -> simpler challenge -> fast path. Another ownership model that allows for fast path execution is the immutable state . Since immutable objects cannot change, transactions involving them can be processed quickly without the need to sequence them.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path","id":"225","title":"Fast Path"},"226":{"body":"Transactions that do access shared state - on Sui it is represented with shared objects - require sequencing to ensure that the state is updated and consistented across all nodes. This is known as the execution through consensus , where transactions accessing shared objects are subject to the agreement process to maintain network consistency.","breadcrumbs":"Object Model » Fast Path & Consensus » Consensus Path","id":"226","title":"Consensus Path"},"227":{"body":"Lastly, it is important to mention that objects owned by other objects are subject to the same rules as the parent object. If the parent object is shared , the child object is also transitively shared. If the parent object is immutable, the child object is also immutable.","breadcrumbs":"Object Model » Fast Path & Consensus » Objects owned by Objects","id":"227","title":"Objects owned by Objects"},"228":{"body":"Fast Path: Transactions involving account-owned objects or immutable shared state are processed quickly without the need for extensive consensus. Consensus Path: Transactions involving shared objects require sequencing and consensus to ensure network integrity. Objects owned by Objects: Child objects inherit the ownership model of the parent object.","breadcrumbs":"Object Model » Fast Path & Consensus » Summary","id":"228","title":"Summary"},"229":{"body":"In the Object Model chapter we briefly explained the evolution of the Move language from an account-based model to an object-based model. In this chapter, we will dive deeper into the object model and explore how to use objects in your Sui applications. If you haven't read the Object Model chapter yet, we recommend you do so before continuing with this chapter.","breadcrumbs":"Using Objects » Using Objects","id":"229","title":"Using Objects"},"23":{"body":"Before we get to testing, we should add a test. Move Compiler supports tests written in Move and provides the execution environment. The tests can be placed in both the source files and in the tests/ folder. Tests are marked with the #[test] attribute and are automatically discovered by the compiler. We explain tests in depth in the Testing section. Replace the contents of the tests/hello_world_tests.move with the following content: #[test_only]\nmodule hello_world::hello_world_tests { use hello_world::hello_world; #[test] fun test_hello_world() { assert!(hello_world::hello_world() == b\"Hello, World!\".to_string(), 0); }\n} Here we import the hello_world module, and call its hello_world function to test that the output is indeed the string \"Hello, World!\". Now, that we have tests in place, let's compile the package in the test mode and run tests. Move CLI has the test command for this: $ sui move test The output should be similar to the following: INCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world\nRunning Move unit tests\n[ PASS ] 0x0::hello_world_tests::test_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 If you're running the tests outside of the package folder, you can specify the path to the package: $ sui move test --path hello_world You can also run a single or multiple tests at once by specifying a string. All the tests names containing the string will be run: $ sui move test test_hello","breadcrumbs":"Hello, World! » Running Tests","id":"23","title":"Running Tests"},"230":{"body":"In the Basic Syntax chapter we already covered two out of four abilities - Drop and Copy . They affect the behaviour of the value in a scope and are not directly related to storage. It is time to cover the key ability, which allows the struct to be stored. Historically, the key ability was created to mark the type as a key in the storage . A type with the key ability could be stored at top-level in the storage, and could be directly owned by an account or address. With the introduction of the Object Model , the key ability naturally became the defining ability for the object.","breadcrumbs":"Using Objects » Ability: Key » The Key Ability","id":"230","title":"The Key Ability"},"231":{"body":"A struct with the key ability is considered an object and can be used in the storage functions. The Sui Verifier will require the first field of the struct to be named id and have the type UID. public struct Object has key { id: UID, // required name: String,\n} /// Creates a new Object with a Unique ID\npublic fun new(name: String, ctx: &mut TxContext): Object { Object { id: object::new(ctx), // creates a new UID name, }\n} A struct with the key ability is still a struct, and can have any number of fields and associated functions. There is no special handling or syntax for packing, accessing or unpacking the struct. However, because the first field of an object struct must be of type UID - a non-copyable and non-droppable type (we will get to it very soon!), the struct transitively cannot have drop and copy abilities. Thus, the object is non-discardable by design.","breadcrumbs":"Using Objects » Ability: Key » Object Definition","id":"231","title":"Object Definition"},"232":{"body":"Due to the UID requirement for types with key, none of the native types in Move can have the key ability, nor can any of the Standard Library types. The key ability is only present in the Sui Framework and custom types.","breadcrumbs":"Using Objects » Ability: Key » Types with the key Ability","id":"232","title":"Types with the key Ability"},"233":{"body":"Key ability defines the object in Move, and objects are intended to be stored . In the next section we present the sui::transfer module, which provides native storage functions for objects.","breadcrumbs":"Using Objects » Ability: Key » Next Steps","id":"233","title":"Next Steps"},"234":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Key » Further reading","id":"234","title":"Further reading"},"235":{"body":"The module that defines main storage operations is sui::transfer. It is implicitly imported in all packages that depend on the Sui Framework , so, like other implicitly imported modules (e.g. std::option or std::vector), it does not require adding a use statement.","breadcrumbs":"Using Objects » Storage Functions » Storage Functions","id":"235","title":"Storage Functions"},"236":{"body":"The transfer module provides functions to perform all three storage operations matching ownership types which we explained before: On this page we will only talk about so-called restricted storage operations, later we will cover public ones, after the store ability is introduced. Transfer - send an object to an address, put it into account owned state; Share - put an object into a shared state, so it is available to everyone; Freeze - put an object into immutable state, so it becomes a public constant and can never change. The transfer module is a go-to for most of the storage operations, except a special case with Dynamic Fields awaits us in the next chapter.","breadcrumbs":"Using Objects » Storage Functions » Overview","id":"236","title":"Overview"},"237":{"body":"In the Ownership and Scope and References chapters, we covered the basics of ownership and references in Move. It is important that you understand these concepts when using storage functions. Here is a quick recap of the most important points: The move semantics in Move means that the value is moved from one scope to another. In other words, if an instance of a type is passed to a function by value , it is moved to the function scope and can't be accessed in the caller scope anymore. To maintain the ownership of the value, you can pass it by reference . Either by immutable reference &T or mutable reference &mut T. Then the value is borrowed and can be accessed in the caller scope, however the owner stays the same. /// Moved by value\npublic fun take(value: T) { /* value is moved here! */ abort 0 } /// For immutable reference\npublic fun borrow(value: &T) { /* value is borrowed here! can be read */ abort 0 } /// For mutable reference\npublic fun borrow_mut(value: &mut T) { /* value is mutably borrowed here! */ abort 0 }","breadcrumbs":"Using Objects » Storage Functions » Ownership and References: A Quick Recap","id":"237","title":"Ownership and References: A Quick Recap"},"238":{"body":"The transfer::transfer function is a public function used to transfer an object to another address. Its signature is as follows, only accepts a type with the key ability and an address of the recipient. Please, note that the object is passed into the function by value , therefore it is moved to the function scope and then moved to the recipient address: // File: sui-framework/sources/transfer.move\npublic fun transfer(obj: T, recipient: address); In the next example, you can see how it can be used in a module that defines and sends an object to the transaction sender. module book::transfer_to_sender { /// A struct with `key` is an object. The first field is `id: UID`! public struct AdminCap has key { id: UID } /// `init` function is a special function that is called when the module /// is published. It is a good place to create application objects. fun init(ctx: &mut TxContext) { // Create a new `AdminCap` object, in this scope. let admin_cap = AdminCap { id: object::new(ctx) }; // Transfer the object to the transaction sender. transfer::transfer(admin_cap, ctx.sender()); // admin_cap is gone! Can't be accessed anymore. } /// Transfers the `AdminCap` object to the `recipient`. Thus, the recipient /// becomes the owner of the object, and only they can access it. public fun transfer_admin_cap(cap: AdminCap, recipient: address) { transfer::transfer(cap, recipient); }\n} When the module is published, the init function will get called, and the AdminCap object which we created there will be transferred to the transaction sender. The ctx.sender() function returns the sender address for the current transaction. Once the AdminCap has been transferred to the sender, for example, to 0xa11ce, the sender, and only the sender, will be able to access the object. The object is now account owned . Account owned objects are a subject to true ownership - only the account owner can access them. This is a fundamental concept in the Sui storage model. Let's extend the example with a function that uses AdminCap to authorize a mint of a new object and its transfer to another address: /// Some `Gift` object that the admin can `mint_and_transfer`.\npublic struct Gift has key { id: UID } /// Creates a new `Gift` object and transfers it to the `recipient`.\npublic fun mint_and_transfer( _: &AdminCap, recipient: address, ctx: &mut TxContext\n) { let gift = Gift { id: object::new(ctx) }; transfer::transfer(gift, recipient);\n} The mint_and_transfer function is a public function that \"could\" be called by anyone, but it requires an AdminCap object to be passed as the first argument by reference. Without it, the function will not be callable. This is a simple way to restrict access to privileged functions called Capability . Because the AdminCap object is account owned , only 0xa11ce will be able to call the mint_and_transfer function. The Gifts sent to recipients will also be account owned , each gift being unique and owned exclusively by the recipient. A quick recap: transfer function is used to send an object to an address; The object becomes account owned and can only be accessed by the recipient; Functions can be gated by requiring an object to be passed as an argument, creating a capability .","breadcrumbs":"Using Objects » Storage Functions » Transfer","id":"238","title":"Transfer"},"239":{"body":"The transfer::freeze_object function is public function used to put an object into an immutable state. Once an object is frozen , it can never be changed, and it can be accessed by anyone by immutable reference. The function signature is as follows, only accepts a type with the key ability . Just like all other storage functions, it takes the object by value : // File: sui-framework/sources/transfer.move\npublic fun freeze_object(obj: T); Let's expand on the previous example and add a function that allows the admin to create a Config object and freeze it: /// Some `Config` object that the admin can `create_and_freeze`.\npublic struct Config has key { id: UID, message: String\n} /// Creates a new `Config` object and freezes it.\npublic fun create_and_freeze( _: &AdminCap, message: String, ctx: &mut TxContext\n) { let config = Config { id: object::new(ctx), message }; // Freeze the object so it becomes immutable. transfer::freeze_object(config);\n} /// Returns the message from the `Config` object.\n/// Can access the object by immutable reference!\npublic fun message(c: &Config): String { c.message } Config is an object that has a message field, and the create_and_freeze function creates a new Config and freezes it. Once the object is frozen, it can be accessed by anyone by immutable reference. The message function is a public function that returns the message from the Config object. Config is now publicly available by its ID, and the message can be read by anyone. Function definitions are not connected to the object's state. It is possible to define a function that takes a mutable reference to an object that is used as frozen. However, it won't be callable on a frozen object. The message function can be called on an immutable Config object, however, two functions below are not callable on a frozen object: // === Functions below can't be called on a frozen object! === /// The function can be defined, but it won't be callable on a frozen object.\n/// Only immutable references are allowed.\npublic fun message_mut(c: &mut Config): &mut String { &mut c.message } /// Deletes the `Config` object, takes it by value.\n/// Can't be called on a frozen object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} To summarize: transfer::freeze_object function is used to put an object into an immutable state; Once an object is frozen , it can never be changed, deleted or transferred, and it can be accessed by anyone by immutable reference;","breadcrumbs":"Using Objects » Storage Functions » Freeze","id":"239","title":"Freeze"},"24":{"body":"In this section, we explained the basics of a Move package: its structure, the manifest, the build, and test flows. On the next page , we will write an application and see how the code is structured and what the language can do.","breadcrumbs":"Hello, World! » Next Steps","id":"24","title":"Next Steps"},"240":{"body":"Since the transfer::freeze_object signature accepts any type with the key ability, it can take an object that was created in the same scope, but it can also take an object that was owned by an account. This means that the freeze_object function can be used to freeze an object that was transferred to the sender. For security concerns, we would not want to freeze the AdminCap object - it would be a security risk to allow access to it to anyone. However, we can freeze the Gift object that was minted and transferred to the recipient: Single Owner -> Immutable conversion is possible! /// Freezes the `Gift` object so it becomes immutable.\npublic fun freeze_gift(gift: Gift) { transfer::freeze_object(gift);\n}","breadcrumbs":"Using Objects » Storage Functions » Owned -> Frozen","id":"240","title":"Owned -> Frozen"},"241":{"body":"The transfer::share_object function is a public function used to put an object into a shared state. Once an object is shared , it can be accessed by anyone by a mutable reference (hence, immutable too). The function signature is as follows, only accepts a type with the key ability : // File: sui-framework/sources/transfer.move\npublic fun share_object(obj: T); Once an object is shared , it is publicly available as a mutable reference.","breadcrumbs":"Using Objects » Storage Functions » Share","id":"241","title":"Share"},"242":{"body":"While the shared object can't normally be taken by value, there is one special case where it can - if the function that takes it deletes the object. This is a special case in the Sui storage model, and it is used to allow the deletion of shared objects. To show how it works, we will create a function that creates and shares a Config object and then another one that deletes it: /// Creates a new `Config` object and shares it.\npublic fun create_and_share(message: String, ctx: &mut TxContext) { let config = Config { id: object::new(ctx), message }; // Share the object so it becomes shared. transfer::share_object(config);\n} The create_and_share function creates a new Config object and shares it. The object is now publicly available as a mutable reference. Let's create a function that deletes the shared object: /// Deletes the `Config` object, takes it by value.\n/// Can be called on a shared object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} The delete_config function takes the Config object by value and deletes it, and the Sui Verifier would allow this call. However, if the function returned the Config object back or attempted to freeze or transfer it, the Sui Verifier would reject the transaction. // Won't work!\npublic fun transfer_shared(c: Config, to: address) { transfer::transfer(c, to);\n} To summarize: share_object function is used to put an object into a shared state; Once an object is shared , it can be accessed by anyone by a mutable reference; Shared objects can be deleted, but they can't be transferred or frozen.","breadcrumbs":"Using Objects » Storage Functions » Special Case: Shared Object Deletion","id":"242","title":"Special Case: Shared Object Deletion"},"243":{"body":"Now that you know main features of the transfer module, you can start building more complex applications on Sui that involve storage operations. In the next chapter, we will cover the Store Ability which allows storing data inside objects and relaxes transfer restrictions which we barely touched on here. And after that we will cover the UID and ID types which are the most important types in the Sui storage model.","breadcrumbs":"Using Objects » Storage Functions » Next Steps","id":"243","title":"Next Steps"},"244":{"body":"Now that you have an understanding of top-level storage functions which are enabled by the key ability, we can talk about the last ability in the list - store.","breadcrumbs":"Using Objects » Ability: Store » Ability: Store","id":"244","title":"Ability: Store"},"245":{"body":"The store is a special ability that allows a type to be stored in objects. This ability is required for the type to be used as a field in a struct that has the key ability. Another way to put it is that the store ability allows the value to be wrapped in an object. The store ability also relaxes restrictions on transfer operations. We talk about it more in the Restricted and Public Transfer section.","breadcrumbs":"Using Objects » Ability: Store » Definition","id":"245","title":"Definition"},"246":{"body":"In previous sections we already used types with the key ability: all objects must have a UID field, which we used in examples; we also used the Storable type as a part of the Config struct. The Config type also has the store ability. /// This type has the `store` ability.\npublic struct Storable has store {} /// Config contains a `Storable` field which must have the `store` ability.\npublic struct Config has key, store { id: UID, stores: Storable,\n} /// MegaConfig contains a `Config` field which has the `store` ability.\npublic struct MegaConfig has key { id: UID, config: Config, // there it is!\n}","breadcrumbs":"Using Objects » Ability: Store » Example","id":"246","title":"Example"},"247":{"body":"All native types (except for references) in Move have the store ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the store ability as well. This includes: Option String TypeName","breadcrumbs":"Using Objects » Ability: Store » Types with the store Ability","id":"247","title":"Types with the store Ability"},"248":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Store » Further reading","id":"248","title":"Further reading"},"249":{"body":"The UID type is defined in the sui::object module and is a wrapper around an ID which, in turn, wraps the address type. The UIDs on Sui are guaranteed to be unique, and can't be reused after the object was deleted. // File: sui-framework/sources/object.move\n/// UID is a unique identifier of an object\npublic struct UID has store { id: ID\n} /// ID is a wrapper around an address\npublic struct ID has store, drop { bytes: address\n}","breadcrumbs":"Using Objects » UID and ID » UID and ID","id":"249","title":"UID and ID"},"25":{"body":"Package Manifest section Package in The Move Reference","breadcrumbs":"Hello, World! » Further Reading","id":"25","title":"Further Reading"},"250":{"body":"UID is derived from the tx_hash and an index which is incremented for each new UID. The derive_id function is implemented in the sui::tx_context module, and that is why TxContext is required for UID generation. Sui Verifier will not allow using a UID that wasn't created in the same function. That prevents UIDs from being pre-generated and reused after the object was unpacked. New UID is created with the object::new(ctx) function. It takes a mutable reference to TxContext, and returns a new UID. let ctx = &mut tx_context::dummy();\nlet uid = object::new(ctx); On Sui, UID acts as a representation of an object, and allows defining behaviors and features of an object. One of the key-features - Dynamic Fields - is possible because of the UID type being explicit. Additionally, it allows the Transfer To Object (TTO) which we will explain later in this chapter.","breadcrumbs":"Using Objects » UID and ID » Fresh UID generation:","id":"250","title":"Fresh UID generation:"},"251":{"body":"The UID type is created with the object::new(ctx) function, and it is destroyed with the object::delete(uid) function. The object::delete consumes the UID by value , and it is impossible to delete it unless the value was unpacked from an Object. let ctx = &mut tx_context::dummy(); let char = Character { id: object::new(ctx)\n}; let Character { id } = char;\nid.delete();","breadcrumbs":"Using Objects » UID and ID » UID lifecycle","id":"251","title":"UID lifecycle"},"252":{"body":"The UID does not need to be deleted immediately after the object struct is unpacked. Sometimes it may carry Dynamic Fields or objects transferred to it via Transfer To Object . In such cases, the UID may be kept and stored in a separate object.","breadcrumbs":"Using Objects » UID and ID » Keeping the UID","id":"252","title":"Keeping the UID"},"253":{"body":"The ability to return the UID of an object may be utilized in pattern called proof of deletion . It is a rarely used technique, but it may be useful in some cases, for example, the creator or an application may incentivize the deletion of an object by exchanging the deleted IDs for some reward. In framework development this method could be used to ignore / bypass certain restrictions on \"taking\" the object. If there's a container that enforces certain logic on transfers, like Kiosk does, there could be a special scenario of skipping the checks by providing a proof of deletion. This is one of the open topics for exploration and research, and it may be used in various ways.","breadcrumbs":"Using Objects » UID and ID » Proof of Deletion","id":"253","title":"Proof of Deletion"},"254":{"body":"When talking about UID we should also mention the ID type. It is a wrapper around the address type, and is used to represent an address-pointer. Usually, ID is used to point at an object, however, there's no restriction, and no guarantee that the ID points to an existing object. ID can be received as a transaction argument in a Transaction Block . Alternatively, ID can be created from an address value using to_id() function.","breadcrumbs":"Using Objects » UID and ID » ID","id":"254","title":"ID"},"255":{"body":"TxContext provides the fresh_object_address function which can be utilized to create unique addresses and ID - it may be useful in some application that assign unique identifiers to user actions - for example, an order_id in a marketplace.","breadcrumbs":"Using Objects » UID and ID » fresh_object_address","id":"255","title":"fresh_object_address"},"256":{"body":"Storage Operations that we described in the previous sections are restricted by default - they can only be called in the module defining the object. In other terms, the type must be internal to the module to be used in storage operations. This restriction is implemented in the Sui Verifier and is enforced at the bytecode level. However, to allow objects to be transferred and stored in other modules, these restrictions can be relaxed. The sui::transfer module offers a set of public_* functions that allow calling storage operations in other modules. The functions are prefixed with public_ and are available to all modules and transactions.","breadcrumbs":"Using Objects » Restricted and Public Transfer » Restricted and Public Transfer","id":"256","title":"Restricted and Public Transfer"},"257":{"body":"The sui::transfer module provides the following public functions. They are almost identical to the ones we already covered, but can be called from any module. // File: sui-framework/sources/transfer.move\n/// Public version of the `transfer` function.\npublic fun public_transfer(object: T, to: address) {} /// Public version of the `share_object` function.\npublic fun public_share_object(object: T) {} /// Public version of the `freeze_object` function.\npublic fun public_freeze_object(object: T) {} To illustrate the usage of these functions, consider the following example: module A defines an ObjectK with key and ObjectKS with key + store abilities, and module B tries to implement a transfer function for these objects. In this example we use transfer::transfer, but the behaviour is identical for share_object and freeze_object functions. /// Defines `ObjectK` and `ObjectKS` with `key` and `key + store`\n/// abilities respectively\nmodule book::transfer_a { public struct ObjectK has key { id: UID } public struct ObjectKS has key, store { id: UID }\n} /// Imports the `ObjectK` and `ObjectKS` types from `transfer_a` and attempts\n/// to implement different `transfer` functions for them\nmodule book::transfer_b { // types are not internal to this module use book::transfer_a::{ObjectK, ObjectKS}; // Fails! ObjectK is not `store`, and ObjectK is not internal to this module public fun transfer_k(k: ObjectK, to: address) { sui::transfer::transfer(k, to); } // Fails! ObjectKS has `store` but the function is not public public fun transfer_ks(ks: ObjectKS, to: address) { sui::transfer::transfer(ks, to); } // Fails! ObjectK is not `store`, `public_transfer` requires `store` public fun public_transfer_k(k: ObjectK) { sui::transfer::public_transfer(k); } // Works! ObjectKS has `store` and the function is public public fun public_transfer_ks(y: ObjectKS, to: address) { sui::transfer::public_transfer(y, to); }\n} To expand on the example above: transfer_k fails because ObjectK is not internal to module transfer_b transfer_ks fails because ObjectKS is not internal to module transfer_b public_transfer_k fails because ObjectK does not have the store ability public_transfer_ks works because ObjectKS has the store ability and the transfer is public","breadcrumbs":"Using Objects » Restricted and Public Transfer » Public Storage Operations","id":"257","title":"Public Storage Operations"},"258":{"body":"The decision on whether to add the store ability to a type should be made carefully. On one hand, it is de-facto a requirement for the type to be usable by other applications. On the other hand, it allows wrapping and changing the intended storage model. For example, a character may be intended to be owned by accounts, but with the store ability it can be frozen (cannot be shared - this transition is restricted).","breadcrumbs":"Using Objects » Restricted and Public Transfer » Implications of store","id":"258","title":"Implications of store"},"259":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"259","title":"Advanced Programmability"},"26":{"body":"In the previous section we created a new package and demonstrated the basic flow of creating, building, and testing a Move package. In this section, we will write a simple application that uses the storage model and can be interacted with. To do this, we will create a simple todo list application.","breadcrumbs":"Hello, Sui! » Hello, Sui!","id":"26","title":"Hello, Sui!"},"260":{"body":"Every transaction has the execution context. The context is a set of predefined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: // File: sui-framework/sources/tx_context.move\n/// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"260","title":"Transaction Context"},"261":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let me = ctx.sender(); let epoch = ctx.epoch(); let digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"261","title":"Reading the Transaction Context"},"262":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: // File: sui-framework/sources/tx_context.move\nnative fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"262","title":"Mutability"},"263":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. // File: sui-framework/sources/tx_context.move\n/// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"263","title":"Generating unique addresses"},"264":{"body":"A common use case in many applications is to run certain code just once when the package is published. Imagine a simple store module that needs to create the main Store object upon its publication. In Sui, this is achieved by defining an init function within the module. This function will automatically be called when the module is published. All of the modules' init functions are called during the publishing process. Currently, this behavior is limited to the publish command and does not extend to package upgrades . module book::shop { /// The Capability which grants the Shop owner the right to manage /// the shop. public struct ShopOwnerCap has key, store { id: UID } /// The singular Shop itself, created in the `init` function. public struct Shop has key { id: UID, /* ... */ } // Called only once, upon module publication. It must be // private to prevent external invocation. fun init(ctx: &mut TxContext) { // Transfers the ShopOwnerCap to the sender (publisher). transfer::transfer(ShopOwnerCap { id: object::new(ctx) }, ctx.sender()); // Shares the Shop object. transfer::share_object(Shop { id: object::new(ctx) }); }\n} In the same package, another module can have its own init function, encapsulating distinct logic. // In the same package as the `shop` module\nmodule book::bank { public struct Bank has key { id: UID, /* ... */ } fun init(ctx: &mut TxContext) { transfer::share_object(Bank { id: object::new(ctx) }); }\n}","breadcrumbs":"Advanced Programmability » Module Initializer » Module Initializer","id":"264","title":"Module Initializer"},"265":{"body":"The function is called on publish, if it is present in the module and follows the rules: The function has to be named init, be private and have no return values. Takes one or two arguments: One Time Witness (optional) and TxContext . With TxContext always being the last argument. fun init(ctx: &mut TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &mut TxContext) { /* ... */ } TxContext can also be passed as immutable reference: &TxContext. However, practically speaking, it should always be &mut TxContext since the init function can't access the onchain state and to create new objects it requires the mutable reference to the context. fun init(ctx: &TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &TxContext) { /* ... */ }","breadcrumbs":"Advanced Programmability » Module Initializer » init features","id":"265","title":"init features"},"266":{"body":"While init function can be used to create sensitive objects once, it is important to know that the same object (eg. StoreOwnerCap from the first example) can still be created in another function. Especially given that new functions can be added to the module during an upgrade. So the init function is a good place to set up the initial state of the module, but it is not a security measure on its own. There are ways to guarantee that the object was created only once, such as the One Time Witness . And there are ways to limit or disable the upgrade of the module, which we will cover in the Package Upgrades chapter.","breadcrumbs":"Advanced Programmability » Module Initializer » Trust and security","id":"266","title":"Trust and security"},"267":{"body":"As follows from the definition, the init function is guaranteed to be called only once when the module is published. So it is a good place to put the code that initializes module's objects and sets up the environment and configuration. For example, if there's a Capability which is required for certain actions, it should be created in the init function. In the next chapter we will talk about the Capability pattern in more detail.","breadcrumbs":"Advanced Programmability » Module Initializer » Next steps","id":"267","title":"Next steps"},"268":{"body":"In programming, a capability is a token that gives the owner the right to perform a specific action. It is a pattern that is used to control access to resources and operations. A simple example of a capability is a key to a door. If you have the key, you can open the door. If you don't have the key, you can't open the door. A more practical example is an Admin Capability which allows the owner to perform administrative operations, which regular users cannot.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Pattern: Capability","id":"268","title":"Pattern: Capability"},"269":{"body":"In the Sui Object Model , capabilities are represented as objects. An owner of an object can pass this object to a function to prove that they have the right to perform a specific action. Due to strict typing, the function taking a capability as an argument can only be called with the correct capability. There's a convention to name capabilities with the Cap suffix, for example, AdminCap or KioskOwnerCap. module book::capability { use std::string::String; use sui::event; /// The capability granting the application admin the right to create new /// accounts in the system. public struct AdminCap has key, store { id: UID } /// The user account in the system. public struct Account has key, store { id: UID, name: String } /// A simple `Ping` event with no data. public struct Ping has copy, drop { by: ID } /// Creates a new account in the system. Requires the `AdminCap` capability /// to be passed as the first argument. public fun new(_: &AdminCap, name: String, ctx: &mut TxContext): Account { Account { id: object::new(ctx), name, } } /// Account, and any other objects, can also be used as a Capability in the /// application. For example, to emit an event. public fun send_ping(acc: &Account) { event::emit(Ping { by: acc.id.to_inner() }) } /// Updates the account name. Can only be called by the `Account` owner. public fun update(account: &mut Account, name: String) { account.name = name; }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Capability is an Object","id":"269","title":"Capability is an Object"},"27":{"body":"Following the same flow as in Hello, World! , we will create a new package called todo_list. $ sui move new todo_list","breadcrumbs":"Hello, Sui! » Create a New Package","id":"27","title":"Create a New Package"},"270":{"body":"A very common practice is to create a single AdminCap object on package publish. This way, the application can have a setup phase where the admin account prepares the state of the application. module book::admin_cap { /// The capability granting the admin privileges in the system. /// Created only once in the `init` function. public struct AdminCap has key { id: UID } /// Create the AdminCap object on package publish and transfer it to the /// package owner. fun init(ctx: &mut TxContext) { transfer::transfer( AdminCap { id: object::new(ctx) }, ctx.sender() ) }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Using init for Admin Capability","id":"270","title":"Using init for Admin Capability"},"271":{"body":"Utilizing objects as capabilities is a relatively new concept in blockchain programming. And in other smart-contract languages, authorization is often performed by checking the address of the sender. This pattern is still viable on Sui, however, overall recommendation is to use capabilities for better security, discoverability, and code organization. Let's look at how the new function that creates a user would look like if it was using the address check: /// Error code for unauthorized access.\nconst ENotAuthorized: u64 = 0; /// The application admin address.\nconst APPLICATION_ADMIN: address = @0xa11ce; /// Creates a new user in the system. Requires the sender to be the application\n/// admin.\npublic fun new(ctx: &mut TxContext): User { assert!(ctx.sender() == APPLICATION_ADMIN, ENotAuthorized); User { id: object::new(ctx) }\n} And now, let's see how the same function would look like with the capability: /// Grants the owner the right to create new users in the system.\npublic struct AdminCap {} /// Creates a new user in the system. Requires the `AdminCap` capability to be\n/// passed as the first argument.\npublic fun new(_: &AdminCap, ctx: &mut TxContext): User { User { id: object::new(ctx) }\n} Using capabilities has several advantages over the address check: Migration of admin rights is easier with capabilities due to them being objects. In case of address, if the admin address changes, all the functions that check the address need to be updated - hence, require a package upgrade . Function signatures are more descriptive with capabilities. It is clear that the new function requires the AdminCap to be passed as an argument. And this function can't be called without it. Object Capabilities don't require extra checks in the function body, and hence, decrease the chance of a developer mistake. An owned Capability also serves in discovery. The owner of the AdminCap can see the object in their account (via a Wallet or Explorer), and know that they have the admin rights. This is less transparent with the address check. However, the address approach has its own advantages. For example, if an address is multisig, and transaction building gets more complex, it might be easier to check the address. Also, if there's a central object of the application that is used in every function, it can store the admin address, and this would simplify migration. The central object approach is also valuable for revokable capabilities, where the admin can revoke the capability from the user.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Address check vs Capability","id":"271","title":"Address check vs Capability"},"272":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"272","title":"Epoch and Time"},"273":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are critical if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"273","title":"Epoch"},"274":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object, but a transaction attempting to access it mutably will fail. This limitation allows parallel access to the Clock object, which is important for maintaining performance. // File: sui-framework/clock.move\n/// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. use sui::clock::Clock; /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"274","title":"Time"},"275":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the vector-based collection types offered by the Sui Framework .","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"275","title":"Collections"},"276":{"body":"While we have previously covered the vector type in the vector section , it is worth going over it again in a new context. This time we will cover the usage of the vector type in objects and how it can be used in an application. module book::collections_vector { use std::string::String; /// The Book that can be sold by a `BookStore` public struct Book has key, store { id: UID, name: String } /// The BookStore that sells `Book`s public struct BookStore has key, store { id: UID, books: vector }\n}","breadcrumbs":"Advanced Programmability » Collections » Vector","id":"276","title":"Vector"},"277":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections_vec_set { use sui::vec_set::{Self, VecSet}; public struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let mut set = vec_set::singleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(&1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(&2); // remove an item from the set }\n} VecSet will fail on attempt to insert a an item that already exists in the set.","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"277","title":"VecSet"},"278":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; public struct Metadata has drop { name: String, /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(&2), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"278","title":"VecMap"},"279":{"body":"Standard collection types are a great way to store typed data with guaranteed safety and consistency. However, they are limited by the type of data they can store - the type system won't allow you to store a wrong type in a collection; and they're limited in size - by the object size limit. They will work for relatively small-sized sets and lists, but for larger collections you may need to use a different approach. Another limitations on collection types is inability to compare them. Because the order of insertion is not guaranteed, an attempt to compare a VecSet to another VecSet may not yield the expected results. This behavior is caught by the linter and will emit a warning: Comparing collections of type 'sui::vec_set::VecSet' may yield unexpected result let mut set1 = vec_set::empty();\nset1.insert(1);\nset1.insert(2); let mut set2 = vec_set::empty();\nset2.insert(2);\nset2.insert(1); assert!(set1 == set2, 0); In the example above, the comparison will fail because the order of insertion is not guaranteed, and the two VecSet instances may have different orders of elements. And the comparison will fail even if the two VecSet instances contain the same elements.","breadcrumbs":"Advanced Programmability » Collections » Limitations","id":"279","title":"Limitations"},"28":{"body":"To speed things up and focus on the application logic, we will provide the code for the todo list application. Replace the contents of the sources/todo_list.move file with the following code: Note: while the contents may seem overwhelming at first, we will break it down in the following sections. Try to focus on what's at hand right now. /// Module: todo_list\nmodule todo_list::todo_list { use std::string::String; /// List of todos. Can be managed by the owner and shared with others. public struct TodoList has key, store { id: UID, items: vector } /// Create a new todo list. public fun new(ctx: &mut TxContext): TodoList { let list = TodoList { id: object::new(ctx), items: vector[] }; (list) } /// Add a new todo item to the list. public fun add(list: &mut TodoList, item: String) { list.items.push_back(item); } /// Remove a todo item from the list by index. public fun remove(list: &mut TodoList, index: u64): String { list.items.remove(index) } /// Delete the list and the capability to manage it. public fun delete(list: TodoList) { let TodoList { id, items: _ } = list; id.delete(); } /// Get the number of items in the list. public fun length(list: &TodoList): u64 { list.items.length() }\n}","breadcrumbs":"Hello, Sui! » Add the code","id":"28","title":"Add the code"},"280":{"body":"Vector is a native type that allows storing a list of items. VecSet is built on top of vector and allows storing sets of unique items. VecMap is used to store key-value pairs in a map-like structure. Vector-based collections are strictly typed and limited by the object size limit and are best suited for small-sized sets and lists.","breadcrumbs":"Advanced Programmability » Collections » Summary","id":"280","title":"Summary"},"281":{"body":"In the next section we will cover Dynamic Fields - an important primitive that allows for Dynamic Collections - a way to store large collections of data in a more flexible, yet more expensive way.","breadcrumbs":"Advanced Programmability » Collections » Next Steps","id":"281","title":"Next Steps"},"282":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages. However, unlike a Map which in Move would be strictly typed (we have covered it in the Collections section), dynamic fields allow attaching objects of any type. A similar approach from the world of frontend development would be a JavaScript Object type which allows storing any type of data dynamically. There's no limit to the number of dynamic fields that can be attached to an object. Thus, dynamic fields can be used to store large amounts of data that don't fit into the object limit size. Dynamic Fields allow for a wide range of applications, from splitting data into smaller parts to avoid object size limit to attaching objects as a part of application logic.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"282","title":"Dynamic Fields"},"283":{"body":"Dynamic Fields are defined in the sui::dynamic_field module of the Sui Framework . They are attached to object's UID via a name , and can be accessed using that name. There can be only one field with a given name attached to an object. File: sui-framework/sources/dynamic_field.move /// Internal object used for storing the field and value\npublic struct Field has key { /// Determined by the hash of the object ID, the field name /// value and it's type, i.e. hash(parent.id || name || Name) id: UID, /// The value for the name of this field name: Name, /// The value bound to this field value: Value,\n} As the definition shows, dynamic fields are stored in an internal Field object, which has the UID generated in a deterministic way based on the object ID, the field name, and the field type. The Field object contains the field name and the value bound to it. The constraints on the Name and Value type parameters define the abilities that the key and value must have.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Definition","id":"283","title":"Definition"},"284":{"body":"The methods available for dynamic fields are straightforward: a field can be added with add, removed with remove, and read with borrow and borrow_mut. Additionally, the exists_ method can be used to check if a field exists (for stricter checks with type, there is an exists_with_type method). module book::dynamic_collection { // a very common alias for `dynamic_field` is `df` since the // module name is quite long use sui::dynamic_field as df; use std::string::String; /// The object that we will attach dynamic fields to. public struct Character has key { id: UID } // List of different accessories that can be attached to a character. // They must have the `store` ability. public struct Hat has key, store { id: UID, color: u32 } public struct Mustache has key, store { id: UID } #[test] fun test_character_and_accessories() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Attach a hat to the character's UID df::add( &mut character.id, b\"hat_key\", Hat { id: object::new(ctx), color: 0xFF0000 } ); // Similarly, attach a mustache to the character's UID df::add( &mut character.id, b\"mustache_key\", Mustache { id: object::new(ctx) } ); // Check that the hat and mustache are attached to the character // assert!(df::exists_(&character.id, b\"hat_key\"), 0); assert!(df::exists_(&character.id, b\"mustache_key\"), 1); // Modify the color of the hat let hat: &mut Hat = df::borrow_mut(&mut character.id, b\"hat_key\"); hat.color = 0x00FF00; // Remove the hat and mustache from the character let hat: Hat = df::remove(&mut character.id, b\"hat_key\"); let mustache: Mustache = df::remove(&mut character.id, b\"mustache_key\"); // Check that the hat and mustache are no longer attached to the character assert!(!df::exists_(&character.id, b\"hat_key\"), 0); assert!(!df::exists_(&character.id, b\"mustache_key\"), 1); sui::test_utils::destroy(character); sui::test_utils::destroy(mustache); sui::test_utils::destroy(hat); }\n} In the example above, we define a Character object and two different types of accessories that could never be put together in a vector. However, dynamic fields allow us to store them together in a single object. Both objects are attached to the Character via a vector (bytestring literal), and can be accessed using their respective keys. As you can see, when we attached the accessories to the Character, we passed them by value . In other words, both values were moved to a new scope, and their ownership was transferred to the Character object. If we changed the ownership of Character object, the accessories would have been moved with it. And the last important property of dynamic fields we should highlight is that they are accessed through their parent . This means that the Hat and Mustache objects are not directly accessible and follow the same rules as the parent object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"284","title":"Usage"},"285":{"body":"Dynamic fields allow objects to carry data of any type, including those defined in other modules. This is possible due to their generic nature and relatively weak constraints on the type parameters. Let's illustrate this by attaching a few different values to a Character object. let mut character = Character { id: object::new(ctx) }; // Attach a `String` via a `vector` name\ndf::add(&mut character.id, b\"string_key\", b\"Hello, World!\".to_string()); // Attach a `u64` via a `u32` name\ndf::add(&mut character.id, 1000u32, 1_000_000_000u64); // Attach a `bool` via a `bool` name\ndf::add(&mut character.id, true, false); In this example we showed how different types can be used for both name and the value of a dynamic field. The String is attached via a vector name, the u64 is attached via a u32 name, and the bool is attached via a bool name. Anything is possible with dynamic fields!","breadcrumbs":"Advanced Programmability » Dynamic Fields » Foreign Types as Dynamic Fields","id":"285","title":"Foreign Types as Dynamic Fields"},"286":{"body":"To prevent orphaned dynamic fields, please, use Dynamic Collection Types such as Bag as they track the dynamic fields and won't allow unpacking if there are attached fields. The object::delete() function, which is used to delete a UID, does not track the dynamic fields, and cannot prevent dynamic fields from becoming orphaned. Once the parent UID is deleted, the dynamic fields are not automatically deleted, and they become orphaned. This means that the dynamic fields are still stored in the blockchain, but they will never become accessible again. let hat = Hat { id: object::new(ctx), color: 0xFF0000 };\nlet mut character = Character { id: object::new(ctx) }; // Attach a `Hat` via a `vector` name\ndf::add(&mut character.id, b\"hat_key\", hat); // ! DO NOT do this in your code\n// ! Danger - deleting the parent object\nlet Character { id } = character;\nid.delete(); // ...`Hat` is now stuck in a limbo, it will never be accessible again Orphaned objects are not a subject to storage rebate, and the storage fees will remain unclaimed. One way to avoid orphaned dynamic fields during unpacking of an object is to return the UID and store it somewhere temporarily until the dynamic fields are removed and handled properly.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Orphaned Dynamic Fields","id":"286","title":"Orphaned Dynamic Fields"},"287":{"body":"In the examples above, we used primitive types as field names since they have the required set of abilities. But dynamic fields get even more interesting when we use custom types as field names. This allows for a more structured way of storing data, and also allows for protecting the field names from being accessed by other modules. /// A custom type with fields in it.\npublic struct AccessoryKey has copy, drop, store { name: String } /// An empty key, can be attached only once.\npublic struct MetadataKey has copy, drop, store {} Two field names that we defined above are AccessoryKey and MetadataKey. The AccessoryKey has a String field in it, hence it can be used multiple times with different name values. The MetadataKey is an empty key, and can be attached only once. let mut character = Character { id: object::new(ctx) }; // Attaching via an `AccessoryKey { name: b\"hat\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"hat\".to_string() }, Hat { id: object::new(ctx), color: 0xFF0000 }\n);\n// Attaching via an `AccessoryKey { name: b\"mustache\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"mustache\".to_string() }, Mustache { id: object::new(ctx) }\n); // Attaching via a `MetadataKey`\ndf::add(&mut character.id, MetadataKey {}, 42); As you can see, custom types do work as field names but as long as they can be constructed by the module, in other words - if they are internal to the module and defined in it. This limitation on struct packing can open up new ways in the design of the application. This approach is used in the Object Capability pattern, where an application can authorize a foreign object to perform operations in it while not exposing the capabilities to other modules.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Type as a Field Name","id":"287","title":"Custom Type as a Field Name"},"288":{"body":"Mutable access to UID is a security risk. Exposing UID of your type as a mutable reference can lead to unwanted modifications or removal of the object's dynamic fields. Additionally, it affects the Transfer to Object and Dynamic Object Fields . Make sure to understand the implications before exposing the UID as a mutable reference. Because dynamic fields are attached to UIDs, their usage in other modules depends on whether the UID can be accessed. By default struct visibility protects the id field and won't let other modules access it directly. However, if there's a public accessor method that returns a reference to UID, dynamic fields can be read in other modules. /// Exposes the UID of the character, so that other modules can read\n/// dynamic fields.\npublic fun uid(c: &Character): &UID { &c.id\n} In the example above, we show how to expose the UID of a Character object. This solution may work for some applications, however, it is important to remember that exposed UID allows reading any dynamic field attached to the object. If you need to expose the UID only within the package, use a restrictive visibility, like public(package), or even better - use more specific accessor methods that would allow only reading specific fields. /// Only allow modules in the same package to access the UID.\npublic(package) fun uid_package(c: &Character): &UID { &c.id\n} /// Allow borrowing dynamic fields from the character.\npublic fun borrow( c: &Character, n: Name\n): &Value { df::borrow(&c.id, n)\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Exposing UID","id":"288","title":"Exposing UID"},"289":{"body":"Dynamic Fields are more expensive than regular fields, as they require additional storage and costs for accessing them. Their flexibility comes at a price, and it is important to understand the implications when making a decision between using dynamic fields and regular fields.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields vs Fields","id":"289","title":"Dynamic Fields vs Fields"},"29":{"body":"To make sure that we did everything correctly, let's build the package by running the sui move build command. If everything is correct, you should see the output similar to the following: $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list If there are no errors following this output, you have successfully built the package. If there are errors, make sure that: The code is copied correctly The file name and the package name is correct There are not many other reasons for the code to fail at this stage. But if you are still having issues, try looking up the structure of the package in this location .","breadcrumbs":"Hello, Sui! » Build the package","id":"29","title":"Build the package"},"290":{"body":"Dynamic Fields are not subject to the object size limit , and can be used to store large amounts of data. However, they are still subject to the dynamic fields created limit , which is set to 1000 fields per transaction.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Limits","id":"290","title":"Limits"},"291":{"body":"Dynamic Fields can play a crucial role in applications of any complexity. They open up a variety of different use cases, from storing heterogeneous data to attaching objects as part of the application logic. They allow for certain upgradeability practices based on the ability to define them later and change the type of the field.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"291","title":"Applications"},"292":{"body":"In the next section we will cover Dynamic Object Fields and explain how they differ from dynamic fields, and what are the implications of using them.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Next Steps","id":"292","title":"Next Steps"},"293":{"body":"This section expands on the Dynamic Fields . Please, read it first to understand the basics of dynamic fields. Another variation of dynamic fields is dynamic object fields , which have certain differences from regular dynamic fields. In this section, we will cover the specifics of dynamic object fields and explain how they differ from regular dynamic fields. General recommendation is to avoid using dynamic object fields in favor of (just) dynamic fields, especially if there's no need for direct discovery through the ID. The extra costs of dynamic object fields may not be justified by the benefits they provide.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Dynamic Object Fields","id":"293","title":"Dynamic Object Fields"},"294":{"body":"Dynamic Object Fields are defined in the sui::dynamic_object_fields module in the Sui Framework . They are similar to dynamic fields in many ways, but unlike them, dynamic object fields have an extra constraint on the Value type. The Value must have a combination of key and store, not just store as in the case of dynamic fields. They're less explicit in their framework definition, as the concept itself is more abstract: File: sui-framework/sources/dynamic_object_fields.move /// Internal object used for storing the field and the name associated with the\n/// value. The separate type is necessary to prevent key collision with direct\n/// usage of dynamic_field\npublic struct Wrapper has copy, drop, store { name: Name,\n} Unlike Field type in the Dynamic Fields section, the Wrapper type only stores the name of the field. The value is the object itself, and is not wrapped . The constraints on the Value type become visible in the methods available for dynamic object fields. Here's the signature for the add function: /// Adds a dynamic object field to the object `object: &mut UID` at field\n/// specified by `name: Name`. Aborts with `EFieldAlreadyExists` if the object\n/// already has that field with that name.\npublic fun add( // we use &mut UID in several spots for access control object: &mut UID, name: Name, value: Value,\n) { /* implementation omitted */ } The rest of the methods which are identical to the ones in the Dynamic Fields section have the same constraints on the Value type. Let's list them for reference: add - adds a dynamic object field to the object remove - removes a dynamic object field from the object borrow - borrows a dynamic object field from the object borrow_mut - borrows a mutable reference to a dynamic object field from the object exists_ - checks if a dynamic object field exists exists_with_type - checks if a dynamic object field exists with a specific type Additionally, there is an id method which returns the ID of the Value object without specifying its type.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Definition","id":"294","title":"Definition"},"295":{"body":"The main difference between dynamic fields and dynamic object fields is that the latter allows storing only objects as values. This means that you can't store primitive types like u64 or bool. It may be considered a limitation, if not for the fact that dynamic object fields are not wrapped into a separate object. The relaxed requirement for wrapping keeps the object available for off-chain discovery via its ID. However, this property may not be outstanding if wrapped object indexing is implemented, making the dynamic object fields a redundant feature. module book::dynamic_object_field { use std::string::String; // there are two common aliases for the long module name: `dof` and // `ofield`. Both are commonly used and met in different projects. use sui::dynamic_object_field as dof; use sui::dynamic_field as df; /// The `Character` that we will use for the example public struct Character has key { id: UID } /// Metadata that doesn't have the `key` ability public struct Metadata has store, drop { name: String } /// Accessory that has the `key` and `store` abilities. public struct Accessory has key, store { id: UID } #[test] fun equip_accessory() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Create an accessory and attach it to the character let hat = Accessory { id: object::new(ctx) }; // Add the hat to the character. Just like with `dynamic_fields` dof::add(&mut character.id, b\"hat_key\", hat); // However for non-key structs we can only use `dynamic_field` df::add(&mut character.id, b\"metadata_key\", Metadata { name: b\"John\".to_string() }); // Borrow the hat from the character let hat_id = dof::id(&character.id, b\"hat_key\").extract(); // Option let hat_ref: &Accessory = dof::borrow(&character.id, b\"hat_key\"); let hat_mut: &mut Accessory = dof::borrow_mut(&mut character.id, b\"hat_key\"); let hat: Accessory = dof::remove(&mut character.id, b\"hat_key\"); // Clean up, Metadata is an orphan now. sui::test_utils::destroy(hat); sui::test_utils::destroy(character); }\n}","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Usage & Differences with Dynamic Fields","id":"295","title":"Usage & Differences with Dynamic Fields"},"296":{"body":"Dynamic Object Fields come a little more exensive than dynamic fields. Because of their internal structure, they require 2 objects: the Wrapper for Name and the Value. Because of this, the cost of adding and accessing object fields (loading 2 objects compared to 1 for dynamic fields) is higher.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Pricing Differences","id":"296","title":"Pricing Differences"},"297":{"body":"Both dynamic field and dynamic object fields are powerful features which allow for innovative solutions in applications. However, they are relatively low-level and require careful handling to avoid orphaned fields. In the next section, we will introduce a higher-level abstraction - Dynamic Collections - which can help with managing dynamic fields and objects more effectively.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Next Steps","id":"297","title":"Next Steps"},"298":{"body":"Sui Framework offers a variety of collection types that build on the dynamic fields and dynamic object fields concepts. These collections are designed to be a safer and more understandable way to store and manage dynamic fields and objects. For each collection type we will specify the primitive they use, and the specific features they offer. Unlike dynamic (object) fields which operate on UID, collection types have their own type and allow calling associated functions .","breadcrumbs":"Advanced Programmability » Dynamic Collections » Dynamic Collections","id":"298","title":"Dynamic Collections"},"299":{"body":"All of the collection types share the same set of methods, which are: add - adds a field to the collection remove - removes a field from the collection borrow - borrows a field from the collection borrow_mut - borrows a mutable reference to a field from the collection contains - checks if a field exists in the collection length - returns the number of fields in the collection is_empty - checks if the length is 0 All collection types support index syntax for borrow and borrow_mut methods. If you see square brackets in the examples, they are translated into borrow and borrow_mut calls. let hat: &Hat = &bag[b\"key\"];\nlet hat_mut: &mut Hat = &mut bag[b\"key\"]; // is equivalent to\nlet hat: &Hat = bag.borrow(b\"key\");\nlet hat_mut: &mut Hat = bag.borrow_mut(b\"key\"); In the examples we won't focus on these functions, but rather on the differences between the collection types.","breadcrumbs":"Advanced Programmability » Dynamic Collections » Common Concepts","id":"299","title":"Common Concepts"},"3":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"3","title":"Install Sui"},"30":{"body":"To publish and interact with the package, we need to set up an account. For the sake of simplicity and demonstration purposes, we will use sui devnet environment. If you already have an account set up, you can skip this step. If you are doing it for the first time, you will need to create a new account. To do this, run the sui client command, then the CLI will prompt you with multiple questions. The answers are marked below with >: $ sui client\nConfig file [\"/path/to/home/.sui/sui_config/client.yaml\"] doesn't exist, do you want to connect to a Sui Full node server [y/N]?\n> y\nSui Full node server URL (Defaults to Sui Testnet if not specified) :\n>\nSelect key scheme to generate keypair (0 for ed25519, 1 for secp256k1, 2: for secp256r1):\n> 0 After you have answered the questions, the CLI will generate a new keypair and save it to the configuration file. You can now use this account to interact with the network. To check that we have the account set up correctly, run the sui client active-address command: $ sui client active-address\n0x.... The command will output the address of your account, it starts with 0x followed by 64 characters.","breadcrumbs":"Hello, Sui! » Set up an account","id":"30","title":"Set up an account"},"300":{"body":"Bag, as the name suggests, acts as a \"bag\" of heterogeneous values. It is a simple, non-generic type that can store any data. Bag will never allow orphaned fields, as it tracks the number of fields and can't be destroyed if it's not empty. // File: sui-framework/sources/bag.move\npublic struct Bag has key, store { /// the ID of this bag id: UID, /// the number of key-value pairs in the bag size: u64,\n} Due to Bag storing any types, the extra methods it offers is: contains_with_type - checks if a field exists with a specific type Used as a struct field: /// Imported from the `sui::bag` module.\nuse sui::bag::{Self, Bag}; /// An example of a `Bag` as a struct field.\npublic struct Carrier has key { id: UID, bag: Bag\n} Using the Bag: let mut bag = bag::new(ctx); // bag has the `length` function to get the number of elements\nassert!(bag.length() == 0, 0); bag.add(b\"my_key\", b\"my_value\".to_string()); // length has changed to 1\nassert!(bag.length() == 1, 1); // in order: `borrow`, `borrow_mut` and `remove`\n// the value type must be specified\nlet field_ref: &String = &bag[b\"my_key\"];\nlet field_mut: &mut String = &mut bag[b\"my_key\"];\nlet field: String = bag.remove(b\"my_key\"); // length is back to 0 - we can unpack\nbag.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Bag","id":"300","title":"Bag"},"301":{"body":"Defined in the sui::object_bag module. Identical to Bag , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectBag","id":"301","title":"ObjectBag"},"302":{"body":"Table is a typed dynamic collection that has a fixed type for keys and values. It is defined in the sui::table module. // File: sui-framework/sources/table.move\npublic struct Table has key, store { /// the ID of this table id: UID, /// the number of key-value pairs in the table size: u64,\n} Used as a struct field: /// Imported from the `sui::table` module.\nuse sui::table::{Self, Table}; /// Some record type with `store`\npublic struct Record has store { /* ... */ } /// An example of a `Table` as a struct field.\npublic struct UserRegistry has key { id: UID, table: Table\n} Using the Table: #[test] fun test_table() {\nlet ctx = &mut tx_context::dummy(); // Table requires explicit type parameters for the key and value\n// ...but does it only once in initialization.\nlet mut table = table::new(ctx); // table has the `length` function to get the number of elements\nassert!(table.length() == 0, 0); table.add(@0xa11ce, b\"my_value\".to_string());\ntable.add(@0xb0b, b\"another_value\".to_string()); // length has changed to 2\nassert!(table.length() == 2, 2); // in order: `borrow`, `borrow_mut` and `remove`\nlet addr_ref = &table[@0xa11ce];\nlet addr_mut = &mut table[@0xa11ce]; // removing both values\nlet _addr = table.remove(@0xa11ce);\nlet _addr = table.remove(@0xb0b); // length is back to 0 - we can unpack\ntable.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Table","id":"302","title":"Table"},"303":{"body":"Defined in the sui::object_table module. Identical to Table , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectTable","id":"303","title":"ObjectTable"},"304":{"body":"Bag - a simple collection that can store any type of data ObjectBag - a collection that can store only objects Table - a typed dynamic collection that has a fixed type for keys and values ObjectTable - same as Table, but can only store objects","breadcrumbs":"Advanced Programmability » Dynamic Collections » Summary","id":"304","title":"Summary"},"305":{"body":"This section is coming soon!","breadcrumbs":"Advanced Programmability » Dynamic Collections » LinkedTable","id":"305","title":"LinkedTable"},"306":{"body":"Witness is a pattern of proving an existence by constructing a proof. In the context of programming, witness is a way to prove a certain property of a system by providing a value that can only be constructed if the property holds.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Pattern: Witness","id":"306","title":"Pattern: Witness"},"307":{"body":"In the Struct section we have shown that a struct can only be created - or packed - by the module defining it. Hence, in Move, a module proves ownership of the type by constructing it. This is one of the most important patterns in Move, and it is widely used for generic type instantiation and authorization. Practically speaking, for the witness to be used, there has to be a function that expects a witness as an argument. In the example below it is the new function that expects a witness of the T type to create a Instance instance. It is often the case that the witness struct is not stored, and for that the function may require the Drop ability for the type. module book::witness { /// A struct that requires a witness to be created. public struct Instance { t: T } /// Create a new instance of `Instance` with the provided T. public fun new(witness: T): Instance { Instance { t: witness } }\n} The only way to construct an Instance is to call the new function with an instance of the type T. This is a basic example of the witness pattern in Move. A module providing a witness often has a matching implementation, like the module book::witness_source below: module book::witness_source { use book::witness::{Self, Instance}; /// A struct used as a witness. public struct W {} /// Create a new instance of `Instance`. public fun new_instance(): Instance { witness::new(W {}) }\n} The instance of the struct W is passed into the new_instance function to create an Instance, thereby proving that the module book::witness_source owns the type W.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Witness in Move","id":"307","title":"Witness in Move"},"308":{"body":"Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting associated behaviors from the type with an option to extend them, if the module provides the ability to do so. // File: sui-framework/sources/balance.move\n/// A Supply of T. Used for minting and burning.\npublic struct Supply has key, store { id: UID, value: u64\n} /// Create a new supply for type T with the provided witness.\npublic fun create_supply(_w: T): Supply { Supply { value: 0 }\n} /// Get the `Supply` value.\npublic fun supply_value(supply: &Supply): u64 { supply.value\n} In the example above, which is borrowed from the balance module of the Sui Framework , the Supply a generic struct that can be constructed only by supplying a witness of the type T. The witness is taken by value and discarded - hence the T must have the drop ability. The instantiated Supply can then be used to mint new Balance's, where T is the type of the supply. // File: sui-framework/sources/balance.move\n/// Storable balance.\nstruct Balance has store { value: u64\n} /// Increase supply by `value` and create a new `Balance` with this value.\npublic fun increase_supply(self: &mut Supply, value: u64): Balance { assert!(value < (18446744073709551615u64 - self.value), EOverflow); self.value = self.value + value; Balance { value }\n}","breadcrumbs":"Advanced Programmability » Pattern: Witness » Instantiating a Generic Type","id":"308","title":"Instantiating a Generic Type"},"309":{"body":"While a struct can be created any number of times, there are cases where a struct should be guaranteed to be created only once. For this purpose, Sui provides the \"One-Time Witness\" - a special witness that can only be used once. We explain it in more detail in the next section .","breadcrumbs":"Advanced Programmability » Pattern: Witness » One Time Witness","id":"309","title":"One Time Witness"},"31":{"body":"In devnet and testnet environments, the CLI provides a way to request coins to your account, so you can interact with the network. To request coins, run the sui client faucet command: $ sui client faucet\nRequest successful. It can take up to 1 minute to get the coin. Run sui client gas to check your gas coins. After waiting a little bit, you can check that the Coin object was sent to your account by running the sui client balance command: $ sui client balance\n╭────────────────────────────────────────╮\n│ Balance of coins owned by this address │\n├────────────────────────────────────────┤\n│ ╭──────────────────────────────────╮ │\n│ │ coin balance (raw) balance │ │\n│ ├──────────────────────────────────┤ │\n│ │ Sui 1000000000 1.00 SUI │ │\n│ ╰──────────────────────────────────╯ │\n╰────────────────────────────────────────╯ Alternatively, you can query objects owned by your account, by running the sui client objects command. The actual output will be different, because the object ID is unique, and so is digest, but the structure will be similar: $ sui client objects\n╭───────────────────────────────────────────────────────────────────────────────────────╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │ │\n│ │ version │ 4 │ │\n│ │ digest │ nA68oa8gab/CdIRw+240wze8u0P+sRe4vcisbENcR4U= │ │\n│ │ objectType │ 0x0000..0002::coin::Coin │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n╰───────────────────────────────────────────────────────────────────────────────────────╯ Now that we have the account set up and the coins in the account, we can interact with the network. We will start by publishing the package to the network.","breadcrumbs":"Hello, Sui! » Requesting Coins","id":"31","title":"Requesting Coins"},"310":{"body":"Witness is a pattern of proving a certain property by constructing a proof. In Move, a module proves ownership of a type by constructing it. Witness is often used for generic type instantiation and authorization.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Summary","id":"310","title":"Summary"},"311":{"body":"In the next section, we will learn about the One Time Witness pattern.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Next Steps","id":"311","title":"Next Steps"},"312":{"body":"While regular Witness is a great way to statically prove the ownership of a type, there are cases where we need to ensure that a Witness is instantiated only once. And this is the purpose of the One Time Witness (OTW).","breadcrumbs":"Advanced Programmability » One Time Witness » One Time Witness","id":"312","title":"One Time Witness"},"313":{"body":"The OTW is a special type of Witness that can be used only once. It cannot be manually created and it is guaranteed to be unique per module. Sui Adapter treats a type as an OTW if it follows these rules: Has only drop ability. Has no fields. Is not a generic type. Named after the module with all uppercase letters. Here is an example of an OTW: module book::one_time { /// The OTW for the `book::one_time` module. /// Only `drop`, no fields, no generics, all uppercase. public struct ONE_TIME has drop {} /// Receive the instance of `ONE_TIME` as the first argument. fun init(otw: ONE_TIME, ctx: &mut TxContext) { // do something with the OTW }\n} The OTW cannot be constructed manually, and any code attempting to do so will result in a compilation error. The OTW can be received as the first argument in the module initializer . And because the init function is called only once per module, the OTW is guaranteed to be instantiated only once.","breadcrumbs":"Advanced Programmability » One Time Witness » Definition","id":"313","title":"Definition"},"314":{"body":"To check if a type is an OTW, sui::types module of the Sui Framework offers a special function is_one_time_witness that can be used to check if the type is an OTW. use sui::types; const ENotOneTimeWitness: u64 = 1; /// Takes an OTW as an argument, aborts if the type is not OTW.\npublic fun takes_witness(otw: T) { assert!(types::is_one_time_witness(&otw), ENotOneTimeWitness);\n}","breadcrumbs":"Advanced Programmability » One Time Witness » Enforcing the OTW","id":"314","title":"Enforcing the OTW"},"315":{"body":"The OTW pattern is a great way to ensure that a type is used only once. Most of the developers should understand how to define and receive the OTW, while the OTW checks and enforcement is mostly needed in libraries and frameworks. For example, the sui::coin module requires an OTW in the coin::create_currency method, therefore enforcing that the coin::TreasuryCap is created only once. OTW is a powerful tool that lays the foundation for the Publisher object, which we will cover in the next section.","breadcrumbs":"Advanced Programmability » One Time Witness » Summary","id":"315","title":"Summary"},"316":{"body":"In application design and development, it is often needed to prove publisher authority. This is especially important in the context of digital assets, where the publisher may enable or disable certain features for their assets. The Publisher Object is an object, defined in the Sui Framework , that allows the publisher to prove their authority over a type .","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher Authority","id":"316","title":"Publisher Authority"},"317":{"body":"The Publisher object is defined in the sui::package module of the Sui Framework. It is a very simple, non-generic object that can be initialized once per module (and multiple times per package) and is used to prove the authority of the publisher over a type. To claim a Publisher object, the publisher must present a One Time Witness to the package::claim function. // File: sui-framework/sources/package.move\npublic struct Publisher has key, store { id: UID, package: String, module_name: String,\n} If you're not familiar with the One Time Witness, you can read more about it here . Here's a simple example of claiming a Publisher object in a module: module book::publisher { /// Some type defined in the module. public struct Book {} /// The OTW for the module. public struct PUBLISHER has drop {} /// Uses the One Time Witness to claim the Publisher object. fun init(otw: PUBLISHER, ctx: &mut TxContext) { // Claim the Publisher object. let publisher = sui::package::claim(otw, ctx); // Usually it is transferred to the sender. // It can also be stored in another object. transfer::public_transfer(publisher, ctx.sender()) }\n}","breadcrumbs":"Advanced Programmability » Publisher Authority » Definition","id":"317","title":"Definition"},"318":{"body":"The Publisher object has two functions associated with it which are used to prove the publisher's authority over a type: // Checks if the type is from the same module, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_module(), 0); // Checks if the type is from the same package, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_package(), 0);","breadcrumbs":"Advanced Programmability » Publisher Authority » Usage","id":"318","title":"Usage"},"319":{"body":"For small applications or simple use cases, the Publisher object can be used as an admin capability . While in the broader context, the Publisher object has control over system configurations, it can also be used to manage the application's state. /// Some action in the application gated by the Publisher object.\npublic fun admin_action(cap: &Publisher, /* app objects... */ param: u64) { assert!(cap.from_module(), ENotAuthorized); // perform application-specific action\n} However, Publisher misses some native properties of Capabilities , such as type safety and expressiveness. The signature for the admin_action is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher as Admin Role","id":"319","title":"Publisher as Admin Role"},"32":{"body":"To publish the package to the network, we will use the sui client publish command. The command will automatically build the package and use its bytecode to publish in a single transaction. We are using the --gas-budget argument during publishing. It specifies how much gas we are willing to spend on the transaction. We won't touch on this topic in this section, but it's important to know that every transaction in Sui costs gas, and the gas is paid in SUI coins. The gas-budget is specified in MISTs . 1 SUI equals 10^9 MISTs. For the sake of demonstration, we will use 100,000,000 MISTs, which is 0.1 SUI. # run this from the `todo_list` folder\n$ sui client publish --gas-budget 100000000 # alternatively, you can specify path to the package\n$ sui client publish --gas-budget 100000000 todo_list The output of the publish command is rather lengthy, so we will show and explain it in parts. $ sui client publish --gas-budget 100000000\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list\nSuccessfully verified dependencies on-chain against source.\nTransaction Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW As you can see, when we run the publish command, the CLI first builds the package, then verifies the dependencies on-chain, and finally publishes the package. The output of the command is the transaction digest, which is a unique identifier of the transaction and can be used to query the transaction status.","breadcrumbs":"Hello, Sui! » Publish","id":"32","title":"Publish"},"320":{"body":"Publisher is required for certain features on Sui. Object Display can be created only by the Publisher, and TransferPolicy - an important component of the Kiosk system - also requires the Publisher object to prove ownership of the type.","breadcrumbs":"Advanced Programmability » Publisher Authority » Role on Sui","id":"320","title":"Role on Sui"},"321":{"body":"In the next chapter we will cover the first feature that requires the Publisher object - Object Display - a way to describe objects for clients, and standardize metadata. A must-have for user-friendly applications.","breadcrumbs":"Advanced Programmability » Publisher Authority » Next Steps","id":"321","title":"Next Steps"},"322":{"body":"Objects on Sui are explicit in their structure and behavior and can be displayed in an understandable way. However, to support richer metadata for clients, there's a standard and efficient way of \"describing\" them to the client - the Display object defined in the Sui Framework .","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"322","title":"Object Display"},"323":{"body":"Historically, there were different attempts to agree on a standard structure of an object so it can be displayed in a user interface. One of the approaches was to define certain fields in the object struct which, when present, would be used in the UI. This approach was not flexible enough and required developers to define the same fields in every object, and sometimes the fields did not make sense for the object. /// An attempt to standardize the object structure for display.\npublic struct CounterWithDisplay has key { id: UID, /// If this field is present it will be displayed in the UI as `name`. name: String, /// If this field is present it will be displayed in the UI as `description`. description: String, // ... image: String, /// Actual fields of the object. counter: u64, // ...\n} If any of the fields contained static data, it would be duplicated in every object. And, since Move does not have interfaces, it is not possible to know if an object has a specific field without \"manually\" checking the object's type, which makes the client fetching more complex.","breadcrumbs":"Advanced Programmability » Display » Background","id":"323","title":"Background"},"324":{"body":"To address these issues, Sui introduces a standard way of describing an object for display. Instead of defining fields in the object struct, the display metadata is stored in a separate object, which is associated with the type. This way, the display metadata is not duplicated, and it is easy to extend and maintain. Another important feature of Sui Display is the ability to define templates and use object fields in those templates. Not only it allows for a more flexible display, but it also frees the developer from the need to define the same fields with the same names and types in every object. The Object Display is natively supported by the Sui Fullnode, and the client can fetch the display metadata for any object if the object type has a Display associated with it. module book::arena { use std::string::String; use sui::package; use sui::display; /// The One Time Witness to claim the `Publisher` object. public struct ARENA has drop {} /// Some object which will be displayed. public struct Hero has key { id: UID, class: String, level: u64, } /// In the module initializer we create the `Publisher` object, and then /// the Display for the `Hero` type. fun init(otw: ARENA, ctx: &mut TxContext) { let publisher = package::claim(otw, ctx); let mut display = display::new(&publisher, ctx); display.add( b\"name\".to_string(), b\"{class} (lvl. {level})\".to_string() ); display.add( b\"description\".to_string(), b\"One of the greatest heroes of all time. Join us!\".to_string() ); display.add( b\"link\".to_string(), b\"https://example.com/hero/{id}\".to_string() ); display.add( b\"image_url\".to_string(), b\"https://example.com/hero/{class}.jpg\".to_string() ); // Update the display with the new data. // Must be called to apply changes. display.update_version(); transfer::public_transfer(publisher, ctx.sender()); transfer::public_transfer(display, ctx.sender()); }\n}","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"324","title":"Object Display"},"325":{"body":"While the objects can be owned by accounts and may be a subject to True Ownership , the Display can be owned by the creator of the object. This way, the creator can update the display metadata and apply the changes globally without the need to update every object. The creator can also transfer Display to another account or even build an application around the object with custom functionality to manage the metadata.","breadcrumbs":"Advanced Programmability » Display » Creator Privilege","id":"325","title":"Creator Privilege"},"326":{"body":"The fields that are supported most widely are: name - A name for the object. The name is displayed when users view the object. description - A description for the object. The description is displayed when users view the object. link - A link to the object to use in an application. image_url - A URL or a blob with the image for the object. thumbnail_url - A URL to a smaller image to use in wallets, explorers, and other products as a preview. project_url - A link to a website associated with the object or creator. creator - A string that indicates the object creator. Please, refer to the Sui Documentation for the most up-to-date list of supported fields. While there's a standard set of fields, the Display object does not enforce them. The developer can define any fields they need, and the client can use them as they see fit. Some applications may require additional fields, and omit other, and the Display is flexible enough to support them.","breadcrumbs":"Advanced Programmability » Display » Standard Fields","id":"326","title":"Standard Fields"},"327":{"body":"The Display object is defined in the sui::display module. It is a generic struct that takes a phantom type as a parameter. The phantom type is used to associate the Display object with the type it describes. The fields of the Display object are a VecMap of key-value pairs, where the key is the field name and the value is the field value. The version field is used to version the display metadata, and is updated on the update_display call. File: sui-framework/sources/display.move struct Display has key, store { id: UID, /// Contains fields for display. Currently supported /// fields are: name, link, image and description. fields: VecMap, /// Version that can only be updated manually by the Publisher. version: u16\n} The Publisher object is required to a new Display, since it serves as the proof of ownership of type.","breadcrumbs":"Advanced Programmability » Display » Working with Display","id":"327","title":"Working with Display"},"328":{"body":"Currently, Display supports simple string interpolation and can use struct fields (and paths) in its templates. The syntax is trivial - {path} is replaced with the value of the field at the path. The path is a dot-separated list of field names, starting from the root object in case of nested fields. /// Some common metadata for objects.\npublic struct Metadata has store { name: String, description: String, published_at: u64\n} /// The type with nested Metadata field.\npublic struct LittlePony has key, store { id: UID, image_url: String, metadata: Metadata\n} The Display for the type LittlePony above could be defined as follows: { \"name\": \"Just a pony\", \"image_url\": \"{image_url}\", \"description\": \"{metadata.description}\"\n}","breadcrumbs":"Advanced Programmability » Display » Template Syntax","id":"328","title":"Template Syntax"},"329":{"body":"There's no restriction to how many Display objects can be created for a specific T. However, the most recently updated Display will be used by the fullnode.","breadcrumbs":"Advanced Programmability » Display » Multiple Display Objects","id":"329","title":"Multiple Display Objects"},"33":{"body":"The section titled TransactionData contains the information about the transaction we just sent. It features fields like sender, which is your address, the gas_budget set with the --gas-budget argument, and the Coin we used for payment. It also prints the Commands that were run by the CLI. In this example, the commands Publish and TransferObject were run - the latter transfers a special object UpgradeCap to the sender. ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Version: 7 │\n│ │ Digest: AXYPnups8A5J6pkvLa6RekX2ye3qur66EZ88mEbaUDQ1 │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭─────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├─────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Publish: │ │\n│ │ ┌ │ │\n│ │ │ Dependencies: │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰─────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ gebjSbVwZwTkizfYg2XIuzdx+d66VxFz8EmVaisVFiV3GkDay6L+hQG3n2CQ1hrWphP6ZLc7bd1WRq4ss+hQAQ== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Data","id":"33","title":"Transaction Data"},"330":{"body":"Sui Object Display is Sui Documentation Publisher - the representation of the creator","breadcrumbs":"Advanced Programmability » Display » Further Reading","id":"330","title":"Further Reading"},"331":{"body":"Events are a way to notify off-chain listeners about on-chain events. They are used to emit additional information about the transaction that is not stored - and, hence, can't be accessed - on-chain. Events are emitted by the sui::event module located in the Sui Framework . Any custom type with the copy and drop abilities can be emitted as an event. Sui Verifier requires the type to be internal to the module. // File: sui-framework/sources/event.move\nmodule sui::event { /// Emit a custom Move event, sending the data offchain. /// /// Used for creating custom indexes and tracking onchain /// activity in a way that suits a specific application the most. /// /// The type `T` is the main way to index the event, and can contain /// phantom parameters, eg `emit(MyEvent)`. public native fun emit(event: T);\n}","breadcrumbs":"Advanced Programmability » Events » Events","id":"331","title":"Events"},"332":{"body":"Events are emitted using the emit function in the sui::event module. The function takes a single argument - the event to be emitted. The event data is passed by value, module book::events { use sui::coin::Coin; use sui::sui::SUI; use sui::event; /// The item that can be purchased. public struct Item has key { id: UID } /// Event emitted when an item is purchased. Contains the ID of the item and /// the price for which it was purchased. public struct ItemPurchased has copy, drop { item: ID, price: u64 } /// A marketplace function which performs the purchase of an item. public fun purchase(coin: Coin, ctx: &mut TxContext) { let item = Item { id: object::new(ctx) }; // Create an instance of `ItemPurchased` and pass it to `event::emit`. event::emit(ItemPurchased { item: object::id(&item), price: coin.value() }); // Omitting the rest of the implementation to keep the example simple. abort 0 }\n} The Sui Verifier requires the type passed to the emit function to be internal to the module . So emitting a type from another module will result in a compilation error. Primitive types, although they match the copy and drop requirement, are not allowed to be emitted as events.","breadcrumbs":"Advanced Programmability » Events » Emitting Events","id":"332","title":"Emitting Events"},"333":{"body":"Events are a part of the transaction result and are stored in the transaction effects . As such, they natively have the sender field which is the address who sent the transaction. So adding a \"sender\" field to the event is not necessary. Similarly, event metadata contains the timestamp. But it is important to note that the timestamp is relative to the node and may vary a little from node to node.","breadcrumbs":"Advanced Programmability » Events » Event Structure","id":"333","title":"Event Structure"},"334":{"body":"Sui Framework is a default dependency set in the Package Manifest . It depends on the Standard Library and provides Sui-specific features, including the interaction with the storage, and Sui-specific native types and modules. For convenience, we grouped the modules in the Sui Framework into multiple categories. But they're still part of the same framework.","breadcrumbs":"Advanced Programmability » Sui Framework » Sui Framework","id":"334","title":"Sui Framework"},"335":{"body":"Module Description Chapter sui::address Adds conversion methods to the address type Address sui::transfer Implements the storage operations for Objects It starts with an Object sui::tx_context Contains the TxContext struct and methods to read it Transaction Context sui::object Defines the UID and ID type, required for creating objects It starts with an Object sui::clock Defines the Clock type and its methods Epoch and Time sui::dynamic_field Implements methods to add, use and remove dynamic fields Dynamic Fields sui::dynamic_object_field Implements methods to add, use and remove dynamic object fields Dynamic Object Fields sui::event Allows emitting events for off-chain listeners Events sui::package Defines the Publisher type and package upgrade methods Publisher , Package Upgrades sui::display Implements the Display object and ways to create and update it Display","breadcrumbs":"Advanced Programmability » Sui Framework » Core","id":"335","title":"Core"},"336":{"body":"Module Description Chapter sui::vec_set Implements a set type Collections sui::vec_map Implements a map with vector keys Collections sui::table Implements the Table type and methods to interact with it Dynamic Collections sui::linked_table Implements the LinkedTable type and methods to interact with it Dynamic Collections sui::bag Implements the Bag type and methods to interact with it Dynamic Collections sui::object_table Implements the ObjectTable type and methods to interact with it Dynamic Collections sui::object_bag Implements the ObjectBag type and methods to interact with it Dynamic Collections","breadcrumbs":"Advanced Programmability » Sui Framework » Collections","id":"336","title":"Collections"},"337":{"body":"Module Description Chapter sui::bcs Implements the BCS encoding and decoding functions Binary Canonical Serialization","breadcrumbs":"Advanced Programmability » Sui Framework » Utilities","id":"337","title":"Utilities"},"338":{"body":"Sui Framework exports two named addresses: sui = 0x2 and std = 0x1 from the std dependency. [addresses]\nsui = \"0x2\" # Exported from the MoveStdlib dependency\nstd = \"0x1\"","breadcrumbs":"Advanced Programmability » Sui Framework » Exported Addresses","id":"338","title":"Exported Addresses"},"339":{"body":"Just like with Standard Library , some of the modules and types are imported implicitly in the Sui Framework. This is the list of modules and types that are available without explicit use import: sui::object sui::object::ID sui::object::UID sui::tx_context sui::tx_context::TxContext sui::transfer","breadcrumbs":"Advanced Programmability » Sui Framework » Implicit Imports","id":"339","title":"Implicit Imports"},"34":{"body":"Transaction Effects contains the status of the transaction, the changes that the transaction made to the state of the network and the objects involved in the transaction. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW │\n│ Status: Success │\n│ Executed Epoch: 411 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ ┌── │\n│ │ ID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Owner: Immutable │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 10404400 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ 7Ukrc5GqdFqTA41wvWgreCdHn2vRLfgQ3YMFkdks72Vk │\n│ 7d4amuHGhjtYKujEs9YkJARzNEn4mRbWWv3fn4cdKdyh │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Effects","id":"34","title":"Transaction Effects"},"340":{"body":"The source code of the Sui Framework is available in the Sui repository .","breadcrumbs":"Advanced Programmability » Sui Framework » Source Code","id":"340","title":"Source Code"},"341":{"body":"Binary Canonical Serialization (BCS) is a binary encoding format for structured data. It was originally designed in Diem, and became the standard serialization format for Move. BCS is simple, efficient, deterministic, and easy to implement in any programming language. The full format specification is available in the BCS repository .","breadcrumbs":"Advanced Programmability » BCS » Binary Canonical Serialization","id":"341","title":"Binary Canonical Serialization"},"342":{"body":"BCS is a binary format that supports unsigned integers up to 256 bits, options, booleans, unit (empty value), fixed and variable-length sequences, and maps. The format is designed to be deterministic, meaning that the same data will always be serialized to the same bytes. \"BCS is not a self-describing format. As such, in order to deserialize a message, one must know the message type and layout ahead of time\" from the README Integers are stored in little-endian format, and variable-length integers are encoded using a variable-length encoding scheme. Sequences are prefixed with their length as ULEB128, enumerations are stored as the index of the variant followed by the data, and maps are stored as an ordered sequence of key-value pairs. Structs are treated as a sequence of fields, and the fields are serialized in the order they are defined in the struct. The fields are serialized using the same rules as the top-level data.","breadcrumbs":"Advanced Programmability » BCS » Format","id":"342","title":"Format"},"343":{"body":"The Sui Framework includes the sui::bcs module for encoding and decoding data. Encoding functions are native to the VM, and decoding functions are implemented in Move.","breadcrumbs":"Advanced Programmability » BCS » Using BCS","id":"343","title":"Using BCS"},"344":{"body":"To encode data, use the bcs::to_bytes function, which converts data references into byte vectors. This function supports encoding any types, including structs. // File: move-stdlib/sources/bcs.move\npublic native fun to_bytes(t: &T): vector; The following example shows how to encode a struct using BCS. The to_bytes function can take any value and encode it as a vector of bytes. use sui::bcs; // 0x01 - a single byte with value 1 (or 0 for false)\nlet bool_bytes = bcs::to_bytes(&true);\n// 0x2a - just a single byte\nlet u8_bytes = bcs::to_bytes(&42u8);\n// 0x2a00000000000000 - 8 bytes\nlet u64_bytes = bcs::to_bytes(&42u64);\n// address is a fixed sequence of 32 bytes\n// 0x0000000000000000000000000000000000000000000000000000000000000002\nlet addr = bcs::to_bytes(&@sui);","breadcrumbs":"Advanced Programmability » BCS » Encoding","id":"344","title":"Encoding"},"345":{"body":"Structs encode similarly to simple types. Here is how to encode a struct using BCS: let data = CustomData { num: 42, string: b\"hello, world!\".to_string(), value: true\n}; let struct_bytes = bcs::to_bytes(&data); let mut custom_bytes = vector[];\ncustom_bytes.append(bcs::to_bytes(&42u8));\ncustom_bytes.append(bcs::to_bytes(&b\"hello, world!\".to_string()));\ncustom_bytes.append(bcs::to_bytes(&true)); // struct is just a sequence of fields, so the bytes should be the same!\nassert!(&struct_bytes == &custom_bytes, 0);","breadcrumbs":"Advanced Programmability » BCS » Encoding a Struct","id":"345","title":"Encoding a Struct"},"346":{"body":"Because BCS does not self-describe and Move is statically typed, decoding requires prior knowledge of the data type. The sui::bcs module provides various functions to assist with this process.","breadcrumbs":"Advanced Programmability » BCS » Decoding","id":"346","title":"Decoding"},"347":{"body":"BCS is implemented as a wrapper in Move. The decoder takes the bytes by value, and then allows the caller to peel off the data by calling different decoding functions, prefixed with peel_*. The data is split off the bytes, and the remainder bytes are kept in the wrapper until the into_remainder_bytes function is called. use sui::bcs; // BCS instance should always be declared as mutable\nlet mut bcs = bcs::new(x\"010000000000000000\"); // Same bytes can be read differently, for example: Option\nlet value: Option = bcs.peel_option_u64(); assert!(value.is_some(), 0);\nassert!(value.borrow() == &0, 1); let remainder = bcs.into_remainder_bytes(); assert!(remainder.length() == 0, 2); There is a common practice to use multiple variables in a single let statement during decoding. It makes code a little bit more readable and helps to avoid unnecessary copying of the data. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // mind the order!!!\n// handy way to peel multiple values\nlet (bool_value, u8_value, u64_value) = ( bcs.peel_bool(), bcs.peel_u8(), bcs.peel_u64()\n);","breadcrumbs":"Advanced Programmability » BCS » Wrapper API","id":"347","title":"Wrapper API"},"348":{"body":"While most of the primitive types have a dedicated decoding function, vectors need special handling, which depends on the type of the elements. For vectors, first you need to decode the length of the vector, and then decode each element in a loop. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // bcs.peel_vec_length() peels the length of the vector :)\nlet mut len = bcs.peel_vec_length();\nlet mut vec = vector[]; // then iterate depending on the data type\nwhile (len > 0) { vec.push_back(bcs.peel_u64()); // or any other type len = len - 1;\n}; assert!(vec.length() == 1, 0); For most common scenarios, bcs module provides a basic set of functions for decoding vectors: peel_vec_address(): vector
peel_vec_bool(): vector peel_vec_u8(): vector peel_vec_u64(): vector peel_vec_u128(): vector peel_vec_vec_u8(): vector> - vector of byte vectors","breadcrumbs":"Advanced Programmability » BCS » Decoding Vectors","id":"348","title":"Decoding Vectors"},"349":{"body":"Option is represented as a vector of either 0 or 1 element. To read an option, you would treat it like a vector and check its length (first byte - either 1 or 0). let mut bcs = bcs::new(x\"00\");\nlet is_some = bcs.peel_bool(); assert!(is_some == false, 0); let mut bcs = bcs::new(x\"0101\");\nlet is_some = bcs.peel_bool();\nlet value = bcs.peel_u8(); assert!(is_some == true, 1);\nassert!(value == 1, 2); If you need to decode an option of a custom type, use the method in the code snippet above. The most common scenarios, bcs module provides a basic set of functions for decoding Option's: peel_option_address(): Option
peel_option_bool(): Option peel_option_u8(): Option peel_option_u64(): Option peel_option_u128(): Option","breadcrumbs":"Advanced Programmability » BCS » Decoding Option","id":"349","title":"Decoding Option"},"35":{"body":"If there were any events emitted, you would see them in this section. Our package does not use events, so the section is empty. ╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯","breadcrumbs":"Hello, Sui! » Events","id":"35","title":"Events"},"350":{"body":"Structs are decoded field by field, and there is no standard function to automatically decode bytes into a Move struct, and it would have been a violation of the Move's type system. Instead, you need to decode each field manually. // some bytes... let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); let (age, is_active, name) = ( bcs.peel_u8(), bcs.peel_bool(), bcs.peel_vec_u8().to_string()\n); let user = User { age, is_active, name };","breadcrumbs":"Advanced Programmability » BCS » Decoding Structs","id":"350","title":"Decoding Structs"},"351":{"body":"Binary Canonical Serialization is an efficient binary format for structured data, ensuring consistent serialization across platforms. The Sui Framework provides comprehensive tools for working with BCS, allowing extensive functionality through built-in functions.","breadcrumbs":"Advanced Programmability » BCS » Summary","id":"351","title":"Summary"},"352":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language. This guide provides a high-level overview of the changes in the new edition. For a more detailed and exhaustive list of changes, refer to the Sui Documentation .","breadcrumbs":"2024 Migration Guide » Move 2024 Migration Guide","id":"352","title":"Move 2024 Migration Guide"},"353":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.beta. edition = \"2024.beta\";","breadcrumbs":"2024 Migration Guide » Using the New Edition","id":"353","title":"Using the New Edition"},"354":{"body":"The Move CLI has a migration tool that updates the code to the new edition. To use the migration tool, run the following command: $ sui move migrate The migration tool will update the code to use the let mut syntax, the new public modifier for strucs, and the public(package) function visibility instead of friend declarations.","breadcrumbs":"2024 Migration Guide » Migration Tool","id":"354","title":"Migration Tool"},"355":{"body":"Move 2024 introduces let mut syntax to declare mutable variables. The let mut syntax is used to declare a mutable variable that can be changed after it is declared. let mut declaration is now required for mutable variables. Compiler will emit an error if you try to reassign a variable without the mut keyword. // Move 2020\nlet x: u64 = 10;\nx = 20; // Move 2024\nlet mut x: u64 = 10;\nx = 20; Additionally, the mut keyword is used in tuple destructuring and function arguments to declare mutable variables. // takes by value and mutates\nfun takes_by_value_and_mutates(mut v: Value): Value { v.field = 10; v\n} // `mut` should be placed before the variable name\nfun destruct() { let (x, y) = point::get_point(); let (mut x, y) = point::get_point(); let (mut x, mut y) = point::get_point();\n} // in struct unpack\nfun unpack() { let Point { x, mut y } = point::get_point(); let Point { mut x, mut y } = point::get_point();\n}","breadcrumbs":"2024 Migration Guide » Mutable bindings with let mut","id":"355","title":"Mutable bindings with let mut"},"356":{"body":"In Move 2024, the friend keyword is deprecated. Instead, you can use the public(package) visibility modifier to make functions visible to other modules in the same package. // Move 2020\nfriend book::friend_module;\npublic(friend) fun protected_function() {} // Move 2024\npublic(package) fun protected_function_2024() {}","breadcrumbs":"2024 Migration Guide » Friends are Deprecated","id":"356","title":"Friends are Deprecated"},"357":{"body":"In Move 2024, structs get a visibility modifier. Currently, the only available visibility modifier is public. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"2024 Migration Guide » Struct Visibility","id":"357","title":"Struct Visibility"},"358":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. Methods are automatically exported if the type is defined in the same module as the method. It is impossible to export methods for types defined in other modules. However, you can create custom aliases for methods in the module scope. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"2024 Migration Guide » Method Syntax","id":"358","title":"Method Syntax"},"359":{"body":"In Move 2024, some of the native and standard types received associated methods. For example, the vector type has a to_string method that converts the vector into a UTF8 string. fun aliases() { // vector to string and ascii string let str: String = b\"Hello, World!\".to_string(); let ascii: ascii::String = b\"Hello, World!\".to_ascii_string(); // address to bytes let bytes = @0xa11ce.to_bytes();\n} For the full list of built-in aliases, refer to the Standard Library and Sui Framework source code.","breadcrumbs":"2024 Migration Guide » Methods for Built-in Types","id":"359","title":"Methods for Built-in Types"},"36":{"body":"These are the changes to objects that transaction has made. In our case, we have created a new UpgradeCap object which is a special object that allows the sender to upgrade the package in the future, mutated the Gas object, and published a new package. Packages are also objects on Sui. ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├──────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::package::UpgradeCap │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Published Objects: │\n│ ┌── │\n│ │ PackageID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ │ Modules: todo_list │\n│ └── │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Object Changes","id":"36","title":"Object Changes"},"360":{"body":"Some of the built-in types support borrowing operators. The borrowing operator is used to get a reference to the element at the specified index. The borrowing operator is defined as []. fun play_vec() { let v = vector[1,2,3,4]; let first = &v[0]; // calls vector::borrow(v, 0) let first_mut = &mut v[0]; // calls vector::borrow_mut(v, 0) let first_copy = v[0]; // calls *vector::borrow(v, 0)\n} Types that support the borrowing operator are: vector sui::vec_map::VecMap sui::table::Table sui::bag::Bag sui::object_table::ObjectTable sui::object_bag::ObjectBag sui::linked_table::LinkedTable To implement the borrowing operator for a custom type, you need to add a #[syntax(index)] attribute to the methods. #[syntax(index)]\npublic fun borrow(c: &List, key: String): &T { /* ... */ } #[syntax(index)]\npublic fun borrow_mut(c: &mut List, key: String): &mut T { /* ... */ }","breadcrumbs":"2024 Migration Guide » Borrowing Operator","id":"360","title":"Borrowing Operator"},"361":{"body":"In Move 2024, methods can be associated with types. The alias can be defined for any type locally to the module; or publicly, if the type is defined in the same module. // my_module.move\n// Local: type is foreign to the module\nuse fun my_custom_function as vector.do_magic; // sui-framework/kiosk/kiosk.move\n// Exported: type is defined in the same module\npublic use fun kiosk_owner_cap_for as KioskOwnerCap.kiosk;","breadcrumbs":"2024 Migration Guide » Method Aliases","id":"361","title":"Method Aliases"},"362":{"body":"To talk about best practices for upgradeability, we need to first understand what can be upgraded in a package. The base premise of upgradeability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed (if they are not used in public signatures) use std::string::String; use sui::event; // can be removed // public structs can not be removed and can't be changed public struct Book has key { id: UID, title: String, } // public structs can not be removed and can't be changed public struct BookCreated has copy, drop { /* ... */ } // public functions can not be removed and their signature can never change // but the implementation can be changed public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) // can be removed and changed event::emit(BookCreated { /* ... */ }) } // package-visibility functions can be removed and changed public(package) fun create_book_package(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Upgradability Practices » Upgradeability Practices","id":"362","title":"Upgradeability Practices"},"363":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) public struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Upgradability Practices » Versioning objects","id":"363","title":"Versioning objects"},"364":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { use sui::vec_map::VecMap; use std::string::String; /// The base object public struct Config has key { id: UID, version: u16 } /// The actual configuration public struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Upgradability Practices » Versioning configuration with dynamic fields","id":"364","title":"Versioning configuration with dynamic fields"},"365":{"body":"This section is coming soon!","breadcrumbs":"Upgradability Practices » Modular architecture","id":"365","title":"Modular architecture"},"366":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Building against Limits » Building against Limits","id":"366","title":"Building against Limits"},"367":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Building against Limits » Transaction Size","id":"367","title":"Transaction Size"},"368":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Building against Limits » Object Size","id":"368","title":"Object Size"},"369":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Building against Limits » Single Pure Argument Size","id":"369","title":"Single Pure Argument Size"},"37":{"body":"This last section contains changes to SUI Coins, in our case, we have spent around 0.015 SUI, which in MIST is 10,500,000. You can see it under the amount field in the output. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -10426280 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Balance Changes","id":"37","title":"Balance Changes"},"370":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Building against Limits » Maximum Number of Objects created","id":"370","title":"Maximum Number of Objects created"},"371":{"body":"The maximum number of dynamic fields that can be created in a single object is 1024. If an object attempts to create more than 1024 dynamic fields, it will be rejected by the network.","breadcrumbs":"Building against Limits » Maximum Number of Dynamic Fields created","id":"371","title":"Maximum Number of Dynamic Fields created"},"372":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Building against Limits » Maximum Number of Events","id":"372","title":"Maximum Number of Events"},"373":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Better error handling » Better error handling","id":"373","title":"Better error handling"},"374":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Better error handling » Rule 1: Handle all possible scenarios","id":"374","title":"Rule 1: Handle all possible scenarios"},"375":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Better error handling » Rule 2: Abort with different codes","id":"375","title":"Rule 2: Abort with different codes"},"376":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Better error handling » Rule 3: Return bool instead of assert","id":"376","title":"Rule 3: Return bool instead of assert"},"377":{"body":"","breadcrumbs":"Coding Conventions » Coding Conventions","id":"377","title":"Coding Conventions"},"378":{"body":"","breadcrumbs":"Coding Conventions » Naming","id":"378","title":"Naming"},"379":{"body":"Module names should be in snake_case. Module names should be descriptive and should not be too long. module book::conventions { /* ... */ }\nmodule book::common_pracices { /* ... */ }","breadcrumbs":"Coding Conventions » Module","id":"379","title":"Module"},"38":{"body":"It is possible to specify the --json flag during publishing to get the output in JSON format. This is useful if you want to parse the output programmatically or store it for later use. $ sui client publish --gas-budget 100000000 --json","breadcrumbs":"Hello, Sui! » Alternative Output","id":"38","title":"Alternative Output"},"380":{"body":"Constants should be in SCREAMING_SNAKE_CASE. Error constants should be in EPascalCase const MAX_PRICE: u64 = 1000;\nconst EInvalidInput: u64 = 0;","breadcrumbs":"Coding Conventions » Constant","id":"380","title":"Constant"},"381":{"body":"Function names should be in snake_case. Function names should be descriptive. public fun add(a: u64, b: u64): u64 { a + b }\npublic fun create_if_not_exists() { /* ... */ }","breadcrumbs":"Coding Conventions » Function","id":"381","title":"Function"},"382":{"body":"Struct names should be in PascalCase. Struct fields should be in snake_case. Capabilities should be suffixed with Cap. public struct Hero has key { id: UID value: u64, another_value: u64,\n} public struct AdminCap has key { id: UID }","breadcrumbs":"Coding Conventions » Struct","id":"382","title":"Struct"},"383":{"body":"Struct methods should be in snake_case. If there's multiple structs with the same method, the method should be prefixed with the struct name. In this case, an alias can be added to the method using use fun. public fun value(h: &Hero): u64 { h.value } public use fun hero_health as Hero.health;\npublic fun hero_health(h: &Hero): u64 { h.another_value } public use fun boar_health as Boar.health;\npublic fun boar_health(b: &Boar): u64 { b.another_value }","breadcrumbs":"Coding Conventions » Struct Method","id":"383","title":"Struct Method"},"384":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Parallel Execution - term used to describe the ability of the Sui runtime to execute transactions in parallel, including the ones that involve shared objects. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"A - Glossary » Appendix A: Glossary","id":"384","title":"Appendix A: Glossary"},"385":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"A - Glossary » Abilities","id":"385","title":"Abilities"},"386":{"body":"Reserved addresses are special addresses that have a specific purpose on Sui. They stay the same between environments and are used for specific native operations. 0x1 - address of the Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the SuiSystem object 0x6 - address of the system Clock object 0x8 - address of the system Random object 0x403 - address of the DenyList system object","breadcrumbs":"B - Reserved Addresses » Appendix B: Reserved Addresses","id":"386","title":"Appendix B: Reserved Addresses"},"387":{"body":"This section lists publications related to Move and Sui. The Move Borrow Checker by Sam Blackshear, John Mitchell, Todd Nowacki, Shaz Qadeer. Resources: A Safe Language Abstraction for Money by Sam Blackshear, David L. Dill, Shaz Qadeer, Clark W. Barrett, John C. Mitchell, Oded Padon, Yoni Zohar. Robust Safety for Move by Marco Patrignani, Sam Blackshear","breadcrumbs":"C - Publications » Appendix C: Publications","id":"387","title":"Appendix C: Publications"},"388":{"body":"To contribute to this book, please, submit a pull request to the GitHub repository . The repository contains the source files for the book, written in mdBook format.","breadcrumbs":"D - Contributing » Appendix D: Contributing","id":"388","title":"Appendix D: Contributing"},"389":{"body":"The Rust Book has been a great inspiration for this book. I am personally grateful to the authors of the book, Steve Klabnik and Carol Nichols, for their work, as I have learned a lot from it. This book is a small tribute to their work and an attempt to bring a similar learning experience to the Move community.","breadcrumbs":"E - Acknowledgements » Appendix E: Acknowledgements","id":"389","title":"Appendix E: Acknowledgements"},"39":{"body":"After the package is published on chain, we can interact with it. To do this, we need to find the address (object ID) of the package. It's under the Published Objects section of the Object Changes output. The address is unique for each package, so you will need to copy it from the output. In this example, the address is: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe Now that we have the address, we can interact with the package. In the next section, we will show how to interact with the package by sending transactions.","breadcrumbs":"Hello, Sui! » Using the Results","id":"39","title":"Using the Results"},"4":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"4","title":"Download Binary"},"40":{"body":"To demonstrate the interaction with the todo_list package, we will send a transaction to create a new list and add an item to it. Transactions are sent via the sui client ptb command, it allows using the Transaction Blocks at full capacity. The command may look big and complex, but we go through it step by step.","breadcrumbs":"Hello, Sui! » Sending Transactions","id":"40","title":"Sending Transactions"},"41":{"body":"Before we construct the command, let's store the values we will use in the transaction. Replace the 0x4.... with the address of the package you have published. And MY_ADDRESS variable will be automatically set to your address from the CLI output. $ export PACKAGE_ID=0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe\n$ export MY_ADDRESS=$(sui client active-address)","breadcrumbs":"Hello, Sui! » Prepare the Variables","id":"41","title":"Prepare the Variables"},"42":{"body":"Now to building an actual transaction. The transaction will consist of two parts: we will call the new function in the todo_list package to create a new list, and then we will transfer the list object to our account. The transaction will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--assign sender @$MY_ADDRESS \\\n--move-call $PACKAGE_ID::todo_list::new \\\n--assign list \\\n--transfer-objects \"[list]\" sender In this command, we are using the ptb subcommand to build a transaction. Parameters that follow it define the actual commands and actions that the transaction will perform. The first two calls we make are utility calls to set the sender address to the command inputs and set the gas budget for the transaction. # sets the gas budget for the transaction\n--gas-budget 100000000 \\n\n# registers a variable \"sender=@...\"\n--assign sender @$MY_ADDRESS \\n Then we perform the actual call to a function in the package. We use the --move-call followed by the package ID, the module name, and the function name. In this case, we are calling the new function in the todo_list package. # calls the \"new\" function in the \"todo_list\" package under the $PACKAGE_ID address\n--move-call $PACKAGE_ID::todo_list::new The function that we defined actually returns a value, which we want need to store. We use the --assign command to give a name to the returned value. In this case, we are calling it list. And then we transfer the object to our account. --move-call $PACKAGE_ID::todo_list::new \\\n# assigns the result of the \"new\" function to the \"list\" variable (from the previous step)\n--assign list \\\n# transfers the object to the sender\n--transfer-objects \"[list]\" sender Once the command is constructed, you can run it in the terminal. If everything is correct, you should see the output similar to the one we had in previous sections. The output will contain the transaction digest, the transaction data, and the transaction effects. Spoiler: Full transaction output Transaction Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8\n╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭──────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 MoveCall: │ │\n│ │ ┌ │ │\n│ │ │ Function: new │ │\n│ │ │ Module: todo_list │ │\n│ │ │ Package: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ C5Lie4dtP5d3OkKzFBa+xM0BiNoB/A4ItthDCRTRBUrEE+jXeNs7mP4AuGwi3nzfTskh29+R1j1Kba4Wdy3QDA== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8 │\n│ Status: Success │\n│ Executed Epoch: 1213 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 2318000 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ FSz2fYXmKqTf77mFXNq5JK7cKY8agWja7V5yDKEgL8c3 │\n│ GgMZKTt482DYApbAZkPDtdssGHZLbxgjm2uMXhzJax8Q │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -2339880 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ The section that we want to focus on is the \"Object Changes\". More specifically, the \"Created Objects\" part of it. It contains the object ID, the type and the version of the TodoList that you have created. We will use this object ID to interact with the list. ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 22 │\n│ │ Digest: HyWdUpjuhjLY38dLpg6KPHQ3bt4BqQAbdF5gB8HQdEqG │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯ In this example the object ID is 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553. And the owner should be your account address. We achieved this by transferring the object to the sender in the last command of the transaction. Another way to test that you have successfully created the list is to check the account objects. $ sui client objects It should have an object that looks similar to this: ╭ ... ╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │\n│ │ version │ 22 │ │\n│ │ digest │ /DUEiCLkaNSgzpZSq2vSV0auQQEQhyH9occq9grMBZM= │ │\n│ │ objectType │ 0x468d..29fe::todo_list::TodoList │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n| ... |","breadcrumbs":"Hello, Sui! » Building the Transaction in CLI","id":"42","title":"Building the Transaction in CLI"},"43":{"body":"The TodoList that we created in the previous step is an object that you can interact with as its owner. You can call functions defined in the todo_list module on this object. To demonstrate this, we will add an item to the list. First, we will add just one item, and in the second transaction we will add 3 and remove another one. Double check that you have variables set up from the previous step , and then add one more variable for the list object. $ export LIST_ID=0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 Now we can construct the transaction to add an item to the list. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish the Hello, Sui chapter'\" In this command, we are calling the add function in the todo_list package. The function takes two arguments: the list object and the item to add. The item is a string, so we need to wrap it in single quotes. The command will add the item to the list. If everything is correct, you should see the output similar to the one we had in previous sections. Now you can check the list object to see if the item was added. $ sui client object $LIST_ID The output should contain the item that you have added. ╭───────────────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ version │ 24 │\n│ digest │ FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ │\n│ objType │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ owner │ ╭──────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ │ AddressOwner │ 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │ │\n│ │ ╰──────────────┴──────────────────────────────────────────────────────────────────────╯ │\n│ prevTx │ EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1 │\n│ storageRebate │ 1558000 │\n│ content │ ╭───────────────────┬───────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ │ dataType │ moveObject │ │\n│ │ │ type │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │ │\n│ │ │ hasPublicTransfer │ true │ │\n│ │ │ fields │ ╭───────┬───────────────────────────────────────────────────────────────────────────────╮ │ │\n│ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ id │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │ │ │\n│ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │\n│ │ │ │ │ items │ ╭─────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ finish the Hello, Sui chapter │ │ │ │\n│ │ │ │ │ │ ╰─────────────────────────────────╯ │ │ │\n│ │ │ │ ╰───────┴───────────────────────────────────────────────────────────────────────────────╯ │ │\n│ │ ╰───────────────────┴───────────────────────────────────────────────────────────────────────────────────────────╯ │\n╰───────────────┴───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ A JSON representation of the object can be obtained by adding the --json flag to the command. $ sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"24\", \"digest\": \"FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1\", \"storageRebate\": \"1558000\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [\"Finish the Hello, Sui chapter\"] } }\n}","breadcrumbs":"Hello, Sui! » Passing Objects to Functions","id":"43","title":"Passing Objects to Functions"},"44":{"body":"You can chain multiple commands in a single transaction. This shows the power of Transaction Blocks! Using the same list object, we will add three more items and remove one. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish Concepts chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Read the Move Basics chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Learn about Object Model'\" \\\n--move-call $PACKAGE_ID::todo_list::remove @$LIST_ID 0 If previous commands were successful, this one should not be any different. You can check the list object to see if the items were added and removed. The JSON representation is a bit more readable! sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"25\", \"digest\": \"EDTXDsteqPGAGu4zFAj5bbQGTkucWk4hhuUquk39enGA\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"7SXLGBSh31jv8G7okQ9mEgnw5MnTfvzzHEHpWf3Sa9gY\", \"storageRebate\": \"1922800\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [ \"Finish Concepts chapter\", \"Read the Move Basics chapter\", \"Learn about Object Model\" ] } }\n} Commands don't have to be in the same package or operate on the same object. Within a single transaction block, you can interact with multiple packages and objects. This is a powerful feature that allows you to build complex interactions on-chain!","breadcrumbs":"Hello, Sui! » Chaining Commands","id":"44","title":"Chaining Commands"},"45":{"body":"In this guide, we have shown how to publish a package on the Move blockchain and interact with it using the Sui CLI. We have demonstrated how to create a new list object, add items to it, and remove them. We have also shown how to chain multiple commands in a single transaction block. This guide should give you a good starting point for building your own applications on the Sui blockchain!","breadcrumbs":"Hello, Sui! » Conclusion","id":"45","title":"Conclusion"},"46":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"46","title":"Concepts"},"47":{"body":"Move is a language for writing smart contracts - programs that are stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » Package » Package","id":"47","title":"Package"},"48":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Package usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » Package » Package Structure","id":"48","title":"Package Structure"},"49":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » Package » Published Package","id":"49","title":"Published Package"},"5":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"5","title":"Install using Homebrew (MacOS)"},"50":{"body":"Package Manifest Address Packages in the Move Reference.","breadcrumbs":"Concepts » Package » Links","id":"50","title":"Links"},"51":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"51","title":"Package Manifest"},"52":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"52","title":"Sections"},"53":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"53","title":"Package"},"54":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"54","title":"Dependencies"},"55":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"55","title":"Resolving version conflicts with override"},"56":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"56","title":"Dev-dependencies"},"57":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"57","title":"Addresses"},"58":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"58","title":"Dev-addresses"},"59":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"59","title":"TOML styles"},"6":{"body":"You can install Sui using the Chocolatey package manager for Windows. choco install sui","breadcrumbs":"Before we begin » Install Sui » Install using Chocolatey (Windows)","id":"6","title":"Install using Chocolatey (Windows)"},"60":{"body":"Packages in the Move Reference.","breadcrumbs":"Concepts » Manifest » Further Reading","id":"60","title":"Further Reading"},"61":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x6 - address of the system Clock object You can find all reserved addresses in the Appendix B .","breadcrumbs":"Concepts » Address » Address","id":"61","title":"Address"},"62":{"body":"Address type in Move","breadcrumbs":"Concepts » Address » Further reading","id":"62","title":"Further reading"},"63":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address . Sui supports multiple cryptographic algorithms for account generation. The two supported curves are ed25519, secp256k1, and there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.","breadcrumbs":"Concepts » Account » Account","id":"63","title":"Account"},"64":{"body":"Cryptography in Sui in the Sui Blog Keys and Addresses in the Sui Docs Signatures in the Sui Docs","breadcrumbs":"Concepts » Account » Further Reading","id":"64","title":"Further Reading"},"65":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"65","title":"Transaction"},"66":{"body":"Every transaction explicitly specifies the objects it operates on! Transactions consist of: a sender - the account that signs the transaction; a list (or a chain) of commands - the operations to be executed; command inputs - the arguments for the commands: either pure - simple values like numbers or strings, or object - objects that the transaction will access; a gas object - the Coin object used to pay for the transaction; gas price and budget - the cost of the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"66","title":"Transaction Structure"},"67":{"body":"Sui transactions may consist of multiple commands. Each command is a single built-in command (like publishing a package) or a call to a function in an already published package. The commands are executed in the order they are listed in the transaction, and they can use the results of the previous commands, forming a chain. Transaction either succeeds or fails as a whole. Schematically, a transaction looks like this (in pseudo-code): Inputs:\n- sender = 0xa11ce Commands:\n- payment = SplitCoins(Gas, [ 1000 ])\n- item = MoveCall(0xAAA::market::purchase, [ payment ])\n- TransferObjects(item, sender) In this example, the transaction consists of three commands: SplitCoins - a built-in command that splits a new coin from the passed object, in this case, the Gas object; MoveCall - a command that calls a function purchase in a package 0xAAA, module market with the given arguments - the payment object; TransferObjects - a built-in command that transfers the object to the recipient.","breadcrumbs":"Concepts » Transaction » Commands","id":"67","title":"Commands"},"68":{"body":"Transaction effects are the changes that a transaction makes to the blockchain state. More specifically, a transaction can change the state in the following ways: use the gas object to pay for the transaction; create, update, or delete objects; emit events; The result of the executed transaction consists of different parts: Transaction Digest - the hash of the transaction which is used to identify the transaction; Transaction Data - the inputs, commands and gas object used in the transaction; Transaction Effects - the status and the \"effects\" of the transaction, more specifically: the status of the transaction, updates to objects and their new versions, the gas object used, the gas cost of the transaction, and the events emitted by the transaction; Events - the custom events emitted by the transaction; Object Changes - the changes made to the objects, including the change of ownership ; Balance Changes - the changes made to the aggregate balances of the account involved in the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Effects","id":"68","title":"Transaction Effects"},"69":{"body":"This chapter is all about the basic syntax of the Move language. It covers the basics of the language, such as types, modules, functions, and control flow. It focuses on the language without a storage model or a blockchain, and explains the essential concepts of the language. To learn features specific to Sui, such as storage functions and abilities, refer to the Using Objects chapter, however, it is recommended to start with this chapter first.","breadcrumbs":"Move Basics » Move Basics","id":"69","title":"Move Basics"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet Make sure that your system has the latest Rust versions with the command below. rustup update stable","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Move Basics » Module » Module","id":"70","title":"Module"},"71":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions, constants and imports all part of the module: Structs Functions Constants Imports Struct Methods","breadcrumbs":"Move Basics » Module » Module declaration","id":"71","title":"Module declaration"},"72":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module 0x0::address_literal { /* ... */ }\nmodule book::named_address { /* ... */ } Addresses section in the Move.toml: # Move.toml\n[addresses]\nbook = \"0x0\"","breadcrumbs":"Move Basics » Module » Address / Named address","id":"72","title":"Address / Named address"},"73":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Move Basics » Module » Module members","id":"73","title":"Module members"},"74":{"body":"Modules in the Move Reference.","breadcrumbs":"Move Basics » Module » Further reading","id":"74","title":"Further reading"},"75":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Move Basics » Comments » Comments","id":"75","title":"Comments"},"76":{"body":"module book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. module book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Move Basics » Comments » Line comment","id":"76","title":"Line comment"},"77":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. module book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Move Basics » Comments » Block comment","id":"77","title":"Block comment"},"78":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. /// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Move Basics » Comments » Doc comment","id":"78","title":"Doc comment"},"79":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Move Basics » Primitive Types » Primitive Types","id":"79","title":"Primitive Types"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u16 = 42;","breadcrumbs":"Move Basics » Primitive Types » Variables and assignment","id":"80","title":"Variables and assignment"},"81":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Move Basics » Primitive Types » Booleans","id":"81","title":"Booleans"},"82":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Move Basics » Primitive Types » Integer Types","id":"82","title":"Integer Types"},"83":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 For more operations, including bitwise operations, please refer to the Move Reference . The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Move Basics » Primitive Types » Operations","id":"83","title":"Operations"},"84":{"body":"Move supports explicit casting between integer types. The syntax for it is: as Note, that it may require parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = x as u16;\nlet z = 2 * (x as u16); // ambiguous, requires parentheses A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Move Basics » Primitive Types » Casting with as","id":"84","title":"Casting with as"},"85":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Move Basics » Primitive Types » Overflow","id":"85","title":"Overflow"},"86":{"body":"Bool in the Move Reference. Integer in the Move Reference.","breadcrumbs":"Move Basics » Primitive Types » Further reading","id":"86","title":"Further reading"},"87":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Move Basics » Address Type » Address Type","id":"87","title":"Address Type"},"88":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string::String; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Move Basics » Address Type » Conversion","id":"88","title":"Conversion"},"89":{"body":"Address in the Move Reference.","breadcrumbs":"Move Basics » Address Type » Further reading","id":"89","title":"Further reading"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition, some syntax won't get highlighted.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert a unit () - an empty expression.","breadcrumbs":"Move Basics » Expression » Expression","id":"90","title":"Expression"},"91":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Move Basics » Expression » Literals","id":"91","title":"Literals"},"92":{"body":"Arithmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Move Basics » Expression » Operators","id":"92","title":"Operators"},"93":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\n// let none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; // block is an expression, so it can be used in an expression and\n// doesn't have to be assigned to a variable.\n{ let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Move Basics » Expression » Blocks","id":"93","title":"Blocks"},"94":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Move Basics » Expression » Function Calls","id":"94","title":"Function Calls"},"95":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) { expr; }; // loop is an expression, but returns `()` as well.\nloop { expr; break };","breadcrumbs":"Move Basics » Expression » Control Flow Expressions","id":"95","title":"Control Flow Expressions"},"96":{"body":"Move's type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Move Basics » Struct » Custom Types with Struct","id":"96","title":"Custom Types with Struct"},"97":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. Fields of a struct are private and can only be accessed by the module defining the struct. Reading and writing the fields of a struct in other modules is only possible if the module defining the struct provides public functions to access the fields.","breadcrumbs":"Move Basics » Struct » Struct","id":"97","title":"Struct"},"98":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. let mut artist = Artist { name: b\"The Beatles\".to_string()\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Move Basics » Struct » Create and use an instance","id":"98","title":"Create and use an instance"},"99":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and ignore the `name` field.\nlet Artist { name: _ } = artist;","breadcrumbs":"Move Basics » Struct » Unpacking a struct","id":"99","title":"Unpacking a struct"}},"length":390,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"14":{"tf":2.23606797749979},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":24,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.3166247903554},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":3.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.6457513110645907},"271":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.4641016151377544},"88":{"tf":2.23606797749979},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"319":{"tf":1.7320508075688772},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"366":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.0}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.7320508075688772},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.7320508075688772}}}},"t":{"df":14,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.58257569495584},"208":{"tf":2.449489742783178},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":3.872983346207417},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"19":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.3166247903554},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"93":{"tf":3.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.449489742783178},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.23606797749979},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.4142135623730951},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":2.8284271247461903},"270":{"tf":1.4142135623730951},"271":{"tf":3.4641016151377544},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":59,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":3.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"336":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.3166247903554},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":2.23606797749979},"77":{"tf":3.0},"78":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":23,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":1.7320508075688772},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.23606797749979},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":8,"docs":{"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":2.6457513110645907},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":7,"docs":{"137":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":29,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.605551275463989},"180":{"tf":2.6457513110645907},"181":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.0},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"348":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.0},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"55":{"tf":3.0},"56":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":1.7320508075688772},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.1622776601683795},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"324":{"tf":3.605551275463989},"325":{"tf":1.7320508075688772},"326":{"tf":2.0},"327":{"tf":2.6457513110645907},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.3166247903554},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.6457513110645907},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":34,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.6457513110645907},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":3.7416573867739413},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.0},"298":{"tf":2.23606797749979},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.6457513110645907},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":2.8284271247461903},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":3.0},"274":{"tf":1.4142135623730951},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":2.6457513110645907},"332":{"tf":2.449489742783178},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"35":{"tf":2.0},"372":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":31,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.4142135623730951}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.4142135623730951},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.6457513110645907}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"92":{"tf":2.23606797749979},"93":{"tf":3.3166247903554},"94":{"tf":1.7320508075688772},"95":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":2.8284271247461903},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.0},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.449489742783178},"283":{"tf":3.4641016151377544},"284":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":3.0},"288":{"tf":3.0},"289":{"tf":2.449489742783178},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":4.358898943540674},"295":{"tf":2.23606797749979},"296":{"tf":2.0},"297":{"tf":2.0},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.449489742783178},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":32,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"239":{"tf":3.0},"240":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":122,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.3166247903554},"159":{"tf":3.0},"160":{"tf":2.23606797749979},"161":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":3.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":4.0},"239":{"tf":3.872983346207417},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.6457513110645907},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":3.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.8284271247461903},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.7320508075688772},"263":{"tf":2.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":1.7320508075688772},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.7320508075688772}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":61,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":3.4641016151377544},"114":{"tf":2.23606797749979},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"313":{"tf":1.0}},"i":{"df":16,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.23606797749979},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":3,"docs":{"101":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.0},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":55,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"209":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"138":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":1.7320508075688772},"295":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.4641016151377544}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":2.8284271247461903},"143":{"tf":2.6457513110645907},"144":{"tf":3.4641016151377544},"145":{"tf":3.7416573867739413},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.605551275463989},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.449489742783178},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":2.23606797749979},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":30,"docs":{"179":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":17,"docs":{"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.0},"83":{"tf":1.0}}}},"df":135,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.1622776601683795},"112":{"tf":2.8284271247461903},"113":{"tf":3.605551275463989},"114":{"tf":2.449489742783178},"116":{"tf":3.1622776601683795},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.605551275463989},"72":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":146,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.0},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.4641016151377544},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.4142135623730951},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":113,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":4.58257569495584},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":3.4641016151377544},"221":{"tf":2.8284271247461903},"223":{"tf":1.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":3.0},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"238":{"tf":4.58257569495584},"239":{"tf":4.69041575982343},"240":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"242":{"tf":4.123105625617661},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":4.58257569495584},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"323":{"tf":2.8284271247461903},"324":{"tf":3.4641016151377544},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"363":{"tf":2.0},"364":{"tf":2.449489742783178},"368":{"tf":2.449489742783178},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.449489742783178},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":2.8284271247461903},"85":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":2.23606797749979},"130":{"tf":3.0},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.0},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.449489742783178},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.23606797749979},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":34,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.449489742783178},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":2.8284271247461903},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":3.3166247903554},"195":{"tf":2.6457513110645907},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":2.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"105":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.449489742783178},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.6457513110645907},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":4.123105625617661},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":3.3166247903554},"318":{"tf":1.7320508075688772},"319":{"tf":2.8284271247461903},"32":{"tf":3.3166247903554},"320":{"tf":1.7320508075688772},"321":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":53,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.0},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":1.4142135623730951},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"224":{"tf":1.0},"55":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.0},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.605551275463989},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":36,"docs":{"103":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":3.605551275463989},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.449489742783178},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.4142135623730951},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":74,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":2.6457513110645907},"247":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":2.8284271247461903},"132":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":2.449489742783178},"136":{"tf":2.8284271247461903},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":2.449489742783178},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.0},"350":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":2.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":121,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.8284271247461903},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.23606797749979},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.3166247903554},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.4641016151377544},"200":{"tf":2.0},"201":{"tf":3.4641016151377544},"202":{"tf":3.1622776601683795},"203":{"tf":3.605551275463989},"204":{"tf":3.0},"205":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":5.0},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":21,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.0},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":3.872983346207417},"261":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":4.358898943540674},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":4.242640687119285}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":155,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":1.7320508075688772},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.0},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.0},"193":{"tf":2.6457513110645907},"194":{"tf":4.47213595499958},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.6457513110645907},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":42,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.23606797749979},"250":{"tf":3.3166247903554},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.7416573867739413},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":21,"docs":{"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":12,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":228,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.23606797749979},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.23606797749979},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":3.872983346207417},"125":{"tf":2.449489742783178},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.605551275463989},"364":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":3.1622776601683795},"308":{"tf":2.0},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"15":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":17,"docs":{"1":{"tf":1.0},"14":{"tf":2.6457513110645907},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":24,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":2.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.8284271247461903},"102":{"tf":2.0},"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":3.4641016151377544},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.4641016151377544},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":3.3166247903554},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.8284271247461903},"271":{"tf":3.872983346207417},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.3166247903554},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.23606797749979},"58":{"tf":2.23606797749979},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":2.6457513110645907},"319":{"tf":2.0},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":97,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"32":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.449489742783178},"166":{"tf":1.7320508075688772},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":2.0},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":2.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":2.0}}}},"t":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.795831523312719},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":4.0},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":150,"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.4142135623730951},"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.4142135623730951},"118":{"tf":1.7320508075688772},"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":26,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":2.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.4641016151377544},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"93":{"tf":3.1622776601683795}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.6457513110645907},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.449489742783178},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":3.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"269":{"tf":3.1622776601683795},"270":{"tf":2.0},"271":{"tf":3.7416573867739413},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":2.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":2.0},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":3.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":65,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":2.0},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.1622776601683795},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.449489742783178},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.6457513110645907},"299":{"tf":3.1622776601683795},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.0},"336":{"tf":3.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.4641016151377544},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":2.6457513110645907},"77":{"tf":3.3166247903554},"78":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":3.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":44,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"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.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":2.0},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.449489742783178},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":2.0},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":9,"docs":{"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":2.449489742783178},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"156":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":2.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":3.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":13,"docs":{"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.872983346207417},"180":{"tf":3.0},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":2.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":2.0},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"348":{"tf":2.449489742783178},"349":{"tf":2.0},"350":{"tf":2.23606797749979}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":3.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.1622776601683795},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":3.0},"55":{"tf":3.0},"56":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"58":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":2.0},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.4641016151377544},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":3.872983346207417},"325":{"tf":2.0},"326":{"tf":2.23606797749979},"327":{"tf":3.0},"328":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":44,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.605551275463989},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.7320508075688772},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":37,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":3.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":1.4142135623730951},"288":{"tf":2.8284271247461903},"289":{"tf":2.23606797749979},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":3.872983346207417},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"298":{"tf":2.6457513110645907},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":2.0},"147":{"tf":2.0}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.8284271247461903},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":3.0},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.449489742783178},"345":{"tf":2.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":3.3166247903554},"274":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.6457513110645907},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"376":{"tf":2.0},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":3.0},"332":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"335":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"372":{"tf":2.0},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":34,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.7320508075688772}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.7320508075688772},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":2.0},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.8284271247461903}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"94":{"tf":2.0},"95":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":3.0},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":3.605551275463989},"284":{"tf":2.6457513110645907},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":3.3166247903554},"288":{"tf":3.1622776601683795},"289":{"tf":3.0},"290":{"tf":2.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":4.47213595499958},"295":{"tf":2.6457513110645907},"296":{"tf":2.23606797749979},"297":{"tf":2.23606797749979},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.449489742783178},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.7320508075688772},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":2.0},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":123,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.605551275463989},"159":{"tf":3.3166247903554},"160":{"tf":2.6457513110645907},"161":{"tf":2.23606797749979},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":3.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":4.123105625617661},"239":{"tf":4.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":2.8284271247461903},"243":{"tf":1.0},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":2.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.8284271247461903},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"191":{"tf":3.3166247903554},"192":{"tf":2.0},"193":{"tf":3.1622776601683795},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":2.0},"263":{"tf":2.23606797749979},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":2.0},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":2.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":64,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"255":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":3.7416573867739413},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":2.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"313":{"tf":1.0}},"i":{"df":17,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.7320508075688772},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.449489742783178},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.4142135623730951},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":56,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"138":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":2.0},"295":{"tf":1.0},"366":{"tf":3.0},"367":{"tf":1.7320508075688772},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":3.605551275463989},"145":{"tf":3.872983346207417},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":3.0},"165":{"tf":3.872983346207417},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.6457513110645907},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"383":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.6457513110645907},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":36,"docs":{"179":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":18,"docs":{"158":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":136,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":3.4641016151377544},"112":{"tf":3.0},"113":{"tf":3.7416573867739413},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"116":{"tf":3.4641016151377544},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.4641016151377544},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.449489742783178},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":3.872983346207417},"72":{"tf":2.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.4142135623730951},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":214,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.8284271247461903},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.872983346207417},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.605551275463989},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.8284271247461903},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"281":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"309":{"tf":1.0},"311":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":128,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":4.898979485566356},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.23606797749979},"219":{"tf":2.23606797749979},"220":{"tf":3.7416573867739413},"221":{"tf":3.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"227":{"tf":3.4641016151377544},"228":{"tf":2.6457513110645907},"229":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"231":{"tf":3.1622776601683795},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":4.69041575982343},"239":{"tf":4.795831523312719},"240":{"tf":2.6457513110645907},"241":{"tf":2.0},"242":{"tf":4.358898943540674},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.6457513110645907},"294":{"tf":4.69041575982343},"295":{"tf":2.8284271247461903},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"323":{"tf":2.8284271247461903},"324":{"tf":3.605551275463989},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.3166247903554},"363":{"tf":2.23606797749979},"364":{"tf":2.449489742783178},"368":{"tf":2.6457513110645907},"370":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.1622776601683795},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"133":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.6457513110645907},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.0},"92":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":2.449489742783178},"130":{"tf":3.3166247903554},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.23606797749979},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.6457513110645907},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.449489742783178},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.4142135623730951},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.7320508075688772},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":37,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":2.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":3.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":3.0},"193":{"tf":1.0},"194":{"tf":3.4641016151377544},"195":{"tf":2.8284271247461903},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"105":{"tf":1.0},"151":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.6457513110645907},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":20,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":2.23606797749979},"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},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":97,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":2.0},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":102,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.8284271247461903},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":4.358898943540674},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":2.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.6457513110645907},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"319":{"tf":3.1622776601683795},"32":{"tf":3.4641016151377544},"320":{"tf":2.0},"321":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.4142135623730951},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":56,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":3.0},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.23606797749979},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":2.0},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.7320508075688772},"224":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.7416573867739413},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"22":{"tf":1.7320508075688772},"23":{"tf":2.6457513110645907},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.6457513110645907},"173":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":40,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":3.7416573867739413},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.7320508075688772},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"311":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":35,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":3.1622776601683795},"132":{"tf":3.1622776601683795},"133":{"tf":2.23606797749979},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":3.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.7320508075688772},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.8284271247461903},"165":{"tf":3.4641016151377544},"166":{"tf":2.6457513110645907},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"350":{"tf":2.0},"355":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":4.242640687119285},"98":{"tf":3.3166247903554},"99":{"tf":3.1622776601683795}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.6457513110645907}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":2.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":3.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.1622776601683795},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.1622776601683795},"320":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.6457513110645907},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"34":{"tf":1.0},"351":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.4641016151377544},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.605551275463989},"200":{"tf":2.449489742783178},"201":{"tf":3.7416573867739413},"202":{"tf":3.4641016151377544},"203":{"tf":3.872983346207417},"204":{"tf":3.1622776601683795},"205":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":5.0990195135927845},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":25,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":3.0},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":60,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":4.123105625617661},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.23606797749979},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":4.47213595499958},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.0},"67":{"tf":2.449489742783178},"68":{"tf":4.47213595499958}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.1622776601683795},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":157,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":2.0},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.123105625617661},"193":{"tf":2.6457513110645907},"194":{"tf":4.58257569495584},"195":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.449489742783178},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.8284271247461903},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.23606797749979},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.6457513110645907},"250":{"tf":3.605551275463989},"251":{"tf":2.23606797749979},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.872983346207417},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":13,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.6457513110645907},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":241,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.4142135623730951},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.8284271247461903},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.449489742783178},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"124":{"tf":4.123105625617661},"125":{"tf":2.8284271247461903},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.1622776601683795},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.7416573867739413},"364":{"tf":2.0},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.0},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":15,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":2.23606797749979},"307":{"tf":3.4641016151377544},"308":{"tf":2.23606797749979},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":1,"docs":{"374":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"375":{"tf":1.0}}},"3":{"df":1,"docs":{"376":{"tf":1.0}}},"8":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"385":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"375":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"30":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"df":1,"docs":{"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"119":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"386":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"115":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"270":{"tf":1.0},"319":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"366":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"376":{"tf":1.0}}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"343":{"tf":1.0}}},"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"4":{"tf":1.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"376":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"29":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"203":{"tf":1.0},"242":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":1,"docs":{"387":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"340":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"275":{"tf":1.0},"298":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"299":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"223":{"tf":1.0},"226":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"380":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"377":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"335":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"287":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"231":{"tf":1.0},"245":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"242":{"tf":1.0},"253":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"115":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"296":{"tf":1.0},"375":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"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":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":1,"docs":{"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"344":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"373":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"35":{"tf":1.0},"372":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"246":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"338":{"tf":1.0}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"121":{"tf":1.0},"334":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"250":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"240":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"235":{"tf":1.0},"381":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"308":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"352":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":3,"docs":{"249":{"tf":1.0},"254":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"219":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"258":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"339":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.0}},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"y":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"366":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"k":{"df":2,"docs":{"152":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"352":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"264":{"tf":1.0},"379":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"307":{"tf":1.0},"352":{"tf":1.0},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"329":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"355":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"287":{"tf":1.0},"378":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"353":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"301":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"206":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"36":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0}},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"257":{"tf":1.0},"360":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"349":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"104":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"116":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"175":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"129":{"tf":1.0},"198":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"296":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"170":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":26,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"376":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}},"n":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"217":{"tf":1.0},"369":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"117":{"tf":1.0},"190":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"244":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"163":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"333":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":6,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.0},"191":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":6,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"354":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"284":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"df":11,"docs":{"130":{"tf":1.0},"151":{"tf":1.0},"229":{"tf":1.0},"270":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"161":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"363":{"tf":1.0},"364":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"133":{"tf":1.0},"327":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}); \ No newline at end of file diff --git a/searchindex.json b/searchindex.json index ba01a22..763e58b 100644 --- a/searchindex.json +++ b/searchindex.json @@ -1 +1 @@ -{"doc_urls":["index.html#the-move-book","foreword.html#foreword","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#install-using-chocolatey-windows","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#create-a-new-package","your-first-move/hello-world.html#directory-structure","your-first-move/hello-world.html#manifest","your-first-move/hello-world.html#sources","your-first-move/hello-world.html#tests","your-first-move/hello-world.html#other-folders","your-first-move/hello-world.html#compiling-the-package","your-first-move/hello-world.html#running-tests","your-first-move/hello-world.html#next-steps","your-first-move/hello-world.html#further-reading","your-first-move/hello-sui.html#hello-sui","your-first-move/hello-sui.html#create-a-new-package","your-first-move/hello-sui.html#add-the-code","your-first-move/hello-sui.html#build-the-package","your-first-move/hello-sui.html#set-up-an-account","your-first-move/hello-sui.html#requesting-coins","your-first-move/hello-sui.html#publish","your-first-move/hello-sui.html#transaction-data","your-first-move/hello-sui.html#transaction-effects","your-first-move/hello-sui.html#events","your-first-move/hello-sui.html#object-changes","your-first-move/hello-sui.html#balance-changes","your-first-move/hello-sui.html#alternative-output","your-first-move/hello-sui.html#using-the-results","your-first-move/hello-sui.html#sending-transactions","your-first-move/hello-sui.html#prepare-the-variables","your-first-move/hello-sui.html#building-the-transaction-in-cli","your-first-move/hello-sui.html#passing-objects-to-functions","your-first-move/hello-sui.html#chaining-commands","your-first-move/hello-sui.html#conclusion","concepts/index.html#concepts","concepts/packages.html#package","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#further-reading","concepts/address.html#address","concepts/address.html#further-reading","concepts/what-is-an-account.html#account","concepts/what-is-an-account.html#further-reading","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/what-is-a-transaction.html#commands","concepts/what-is-a-transaction.html#transaction-effects","move-basics/index.html#move-basics","move-basics/module.html#module","move-basics/module.html#module-declaration","move-basics/module.html#address--named-address","move-basics/module.html#module-members","move-basics/module.html#further-reading","move-basics/comments.html#comments","move-basics/comments.html#line-comment","move-basics/comments.html#block-comment","move-basics/comments.html#doc-comment","move-basics/primitive-types.html#primitive-types","move-basics/primitive-types.html#variables-and-assignment","move-basics/primitive-types.html#booleans","move-basics/primitive-types.html#integer-types","move-basics/primitive-types.html#operations","move-basics/primitive-types.html#casting-with-as","move-basics/primitive-types.html#overflow","move-basics/primitive-types.html#further-reading","move-basics/address.html#address-type","move-basics/address.html#conversion","move-basics/address.html#further-reading","move-basics/expression.html#expression","move-basics/expression.html#literals","move-basics/expression.html#operators","move-basics/expression.html#blocks","move-basics/expression.html#function-calls","move-basics/expression.html#control-flow-expressions","move-basics/struct.html#custom-types-with-struct","move-basics/struct.html#struct","move-basics/struct.html#create-and-use-an-instance","move-basics/struct.html#unpacking-a-struct","move-basics/struct.html#further-reading","move-basics/abilities-introduction.html#abilities-introduction","move-basics/abilities-introduction.html#what-are-abilities","move-basics/abilities-introduction.html#abilities-syntax","move-basics/abilities-introduction.html#overview","move-basics/abilities-introduction.html#no-abilities","move-basics/abilities-introduction.html#further-reading","move-basics/drop-ability.html#abilities-drop","move-basics/drop-ability.html#types-with-the-drop-ability","move-basics/drop-ability.html#further-reading","move-basics/importing-modules.html#importing-modules","move-basics/importing-modules.html#importing-a-module","move-basics/importing-modules.html#importing-members","move-basics/importing-modules.html#grouping-imports","move-basics/importing-modules.html#resolving-name-conflicts","move-basics/importing-modules.html#adding-an-external-dependency","move-basics/importing-modules.html#importing-a-module-from-another-package","move-basics/standard-library.html#standard-library","move-basics/standard-library.html#most-common-modules","move-basics/standard-library.html#exported-addresses","move-basics/standard-library.html#implicit-imports","move-basics/standard-library.html#importing-std-without-sui-framework","move-basics/standard-library.html#source-code","move-basics/vector.html#vector","move-basics/vector.html#vector-syntax","move-basics/vector.html#vector-operations","move-basics/vector.html#destroying-a-vector-of-non-droppable-types","move-basics/vector.html#further-reading","move-basics/option.html#option","move-basics/option.html#in-practice","move-basics/option.html#using-option","move-basics/string.html#string","move-basics/string.html#strings-are-bytes","move-basics/string.html#working-with-utf-8-strings","move-basics/string.html#definition","move-basics/string.html#creating-a-string","move-basics/string.html#common-operations","move-basics/string.html#safe-utf-8-operations","move-basics/string.html#utf-8-limitations","move-basics/string.html#ascii-strings","move-basics/control-flow.html#control-flow","move-basics/control-flow.html#conditional-statements","move-basics/control-flow.html#repeating-statements-with-loops","move-basics/control-flow.html#the-while-loop","move-basics/control-flow.html#infinite-loop","move-basics/control-flow.html#exiting-a-loop-early","move-basics/control-flow.html#skipping-an-iteration","move-basics/control-flow.html#early-return","move-basics/constants.html#constants","move-basics/constants.html#naming-convention","move-basics/constants.html#constants-are-immutable","move-basics/constants.html#using-config-pattern","move-basics/constants.html#links","move-basics/assert-and-abort.html#aborting-execution","move-basics/assert-and-abort.html#abort","move-basics/assert-and-abort.html#assert","move-basics/assert-and-abort.html#error-constants","move-basics/assert-and-abort.html#further-reading","move-basics/function.html#function","move-basics/function.html#function-declaration","move-basics/function.html#accessing-functions","move-basics/function.html#multiple-return-values","move-basics/function.html#further-reading","move-basics/struct-methods.html#struct-methods","move-basics/struct-methods.html#method-syntax","move-basics/struct-methods.html#method-aliases","move-basics/struct-methods.html#aliasing-an-external-modules-method","move-basics/struct-methods.html#further-reading","move-basics/visibility.html#visibility-modifiers","move-basics/visibility.html#internal-visibility","move-basics/visibility.html#public-visibility","move-basics/visibility.html#package-visibility","move-basics/ownership-and-scope.html#ownership-and-scope","move-basics/ownership-and-scope.html#ownership","move-basics/ownership-and-scope.html#returning-a-value","move-basics/ownership-and-scope.html#passing-by-value","move-basics/ownership-and-scope.html#scopes-with-blocks","move-basics/ownership-and-scope.html#copyable-types","move-basics/ownership-and-scope.html#further-reading","move-basics/copy-ability.html#abilities-copy","move-basics/copy-ability.html#copying-and-drop","move-basics/copy-ability.html#types-with-the-copy-ability","move-basics/copy-ability.html#further-reading","move-basics/references.html#references","move-basics/references.html#layout","move-basics/references.html#reference","move-basics/references.html#mutable-reference","move-basics/references.html#passing-by-value","move-basics/references.html#full-example","move-basics/generics.html#generics","move-basics/generics.html#in-the-standard-library","move-basics/generics.html#generic-syntax","move-basics/generics.html#multiple-type-parameters","move-basics/generics.html#why-generics","move-basics/generics.html#phantom-type-parameters","move-basics/generics.html#constraints-on-type-parameters","move-basics/generics.html#further-reading","move-basics/type-reflection.html#type-reflection","move-basics/type-reflection.html#in-practice","move-basics/type-reflection.html#further-reading","move-basics/testing.html#testing","move-basics/testing.html#the-test-attribute","move-basics/testing.html#running-tests","move-basics/testing.html#test-fail-cases-with-expected_failure","move-basics/testing.html#utilities-with-test_only","move-basics/testing.html#further-reading","object/index.html#object-model","object/digital-assets.html#move---language-for-digital-assets","object/digital-assets.html#summary","object/digital-assets.html#further-reading","object/evolution-of-move.html#evolution-of-move","object/evolution-of-move.html#summary","object/evolution-of-move.html#further-reading","object/object-model.html#what-is-an-object","object/object-model.html#summary","object/object-model.html#further-reading","object/ownership.html#ownership","object/ownership.html#account-owner-or-single-owner","object/ownership.html#shared-state","object/ownership.html#immutable-frozen-state","object/ownership.html#object-owner","object/ownership.html#summary","object/ownership.html#next-steps","object/fast-path-and-consensus.html#fast-path--consensus","object/fast-path-and-consensus.html#concurrency-challenge","object/fast-path-and-consensus.html#fast-path","object/fast-path-and-consensus.html#consensus-path","object/fast-path-and-consensus.html#objects-owned-by-objects","object/fast-path-and-consensus.html#summary","storage/index.html#using-objects","storage/key-ability.html#the-key-ability","storage/key-ability.html#object-definition","storage/key-ability.html#types-with-the-key-ability","storage/key-ability.html#next-steps","storage/key-ability.html#further-reading","storage/storage-functions.html#storage-functions","storage/storage-functions.html#overview","storage/storage-functions.html#ownership-and-references-a-quick-recap","storage/storage-functions.html#transfer","storage/storage-functions.html#freeze","storage/storage-functions.html#owned---frozen","storage/storage-functions.html#share","storage/storage-functions.html#special-case-shared-object-deletion","storage/storage-functions.html#next-steps","storage/store-ability.html#ability-store","storage/store-ability.html#definition","storage/store-ability.html#example","storage/store-ability.html#types-with-the-store-ability","storage/store-ability.html#further-reading","storage/uid-and-id.html#uid-and-id","storage/uid-and-id.html#fresh-uid-generation","storage/uid-and-id.html#uid-lifecycle","storage/uid-and-id.html#keeping-the-uid","storage/uid-and-id.html#proof-of-deletion","storage/uid-and-id.html#id","storage/uid-and-id.html#fresh_object_address","storage/transfer-restrictions.html#restricted-and-public-transfer","storage/transfer-restrictions.html#public-storage-operations","storage/transfer-restrictions.html#implications-of-store","programmability/index.html#advanced-programmability","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/module-initializer.html#module-initializer","programmability/module-initializer.html#init-features","programmability/module-initializer.html#trust-and-security","programmability/module-initializer.html#next-steps","programmability/capability.html#pattern-capability","programmability/capability.html#capability-is-an-object","programmability/capability.html#using-init-for-admin-capability","programmability/capability.html#address-check-vs-capability","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/collections.html#collections","programmability/collections.html#vector","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/collections.html#limitations","programmability/collections.html#summary","programmability/collections.html#next-steps","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#definition","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#foreign-types-as-dynamic-fields","programmability/dynamic-fields.html#orphaned-dynamic-fields","programmability/dynamic-fields.html#custom-type-as-a-field-name","programmability/dynamic-fields.html#exposing-uid","programmability/dynamic-fields.html#dynamic-fields-vs-fields","programmability/dynamic-fields.html#limits","programmability/dynamic-fields.html#applications","programmability/dynamic-fields.html#next-steps","programmability/dynamic-object-fields.html#dynamic-object-fields","programmability/dynamic-object-fields.html#definition","programmability/dynamic-object-fields.html#usage--differences-with-dynamic-fields","programmability/dynamic-object-fields.html#pricing-differences","programmability/dynamic-object-fields.html#next-steps","programmability/dynamic-collections.html#dynamic-collections","programmability/dynamic-collections.html#common-concepts","programmability/dynamic-collections.html#bag","programmability/dynamic-collections.html#objectbag","programmability/dynamic-collections.html#table","programmability/dynamic-collections.html#objecttable","programmability/dynamic-collections.html#summary","programmability/dynamic-collections.html#linkedtable","programmability/witness-pattern.html#pattern-witness","programmability/witness-pattern.html#witness-in-move","programmability/witness-pattern.html#instantiating-a-generic-type","programmability/witness-pattern.html#one-time-witness","programmability/witness-pattern.html#summary","programmability/witness-pattern.html#next-steps","programmability/one-time-witness.html#one-time-witness","programmability/one-time-witness.html#definition","programmability/one-time-witness.html#enforcing-the-otw","programmability/one-time-witness.html#summary","programmability/publisher.html#publisher-authority","programmability/publisher.html#definition","programmability/publisher.html#usage","programmability/publisher.html#publisher-as-admin-role","programmability/publisher.html#role-on-sui","programmability/publisher.html#next-steps","programmability/display.html#object-display","programmability/display.html#background","programmability/display.html#object-display-1","programmability/display.html#creator-privilege","programmability/display.html#standard-fields","programmability/display.html#working-with-display","programmability/display.html#template-syntax","programmability/display.html#multiple-display-objects","programmability/display.html#further-reading","programmability/events.html#events","programmability/events.html#emitting-events","programmability/events.html#event-structure","programmability/sui-framework.html#sui-framework","programmability/sui-framework.html#core","programmability/sui-framework.html#collections","programmability/sui-framework.html#utilities","programmability/sui-framework.html#exported-addresses","programmability/sui-framework.html#implicit-imports","programmability/sui-framework.html#source-code","programmability/bcs.html#binary-canonical-serialization","programmability/bcs.html#format","programmability/bcs.html#using-bcs","programmability/bcs.html#encoding","programmability/bcs.html#encoding-a-struct","programmability/bcs.html#decoding","programmability/bcs.html#wrapper-api","programmability/bcs.html#decoding-vectors","programmability/bcs.html#decoding-option","programmability/bcs.html#decoding-structs","programmability/bcs.html#summary","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#migration-tool","guides/2024-migration-guide.html#mutable-bindings-with-let-mut","guides/2024-migration-guide.html#friends-are-deprecated","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#method-syntax","guides/2024-migration-guide.html#methods-for-built-in-types","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/upgradeability-practices.html#upgradeability-practices","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-dynamic-fields-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","guides/coding-conventions.html#coding-conventions","guides/coding-conventions.html#naming","guides/coding-conventions.html#module","guides/coding-conventions.html#constant","guides/coding-conventions.html#function","guides/coding-conventions.html#struct","guides/coding-conventions.html#struct-method","appendix/glossary.html#appendix-a-glossary","appendix/glossary.html#abilities","appendix/reserved-addresses.html#appendix-b-reserved-addresses","appendix/publications.html#appendix-c-publications","appendix/contributing.html#appendix-d-contributing","appendix/acknowledgements.html#appendix-e-acknowledgements"],"index":{"documentStore":{"docInfo":{"0":{"body":38,"breadcrumbs":4,"title":2},"1":{"body":288,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":3,"breadcrumbs":5,"title":2},"101":{"body":43,"breadcrumbs":6,"title":2},"102":{"body":14,"breadcrumbs":5,"title":1},"103":{"body":39,"breadcrumbs":6,"title":2},"104":{"body":65,"breadcrumbs":5,"title":1},"105":{"body":37,"breadcrumbs":5,"title":1},"106":{"body":4,"breadcrumbs":6,"title":2},"107":{"body":135,"breadcrumbs":6,"title":2},"108":{"body":22,"breadcrumbs":7,"title":3},"109":{"body":4,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":30,"breadcrumbs":6,"title":2},"111":{"body":72,"breadcrumbs":6,"title":2},"112":{"body":46,"breadcrumbs":6,"title":2},"113":{"body":109,"breadcrumbs":6,"title":2},"114":{"body":60,"breadcrumbs":7,"title":3},"115":{"body":87,"breadcrumbs":7,"title":3},"116":{"body":71,"breadcrumbs":8,"title":4},"117":{"body":24,"breadcrumbs":6,"title":2},"118":{"body":81,"breadcrumbs":6,"title":2},"119":{"body":11,"breadcrumbs":6,"title":2},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":16,"breadcrumbs":6,"title":2},"121":{"body":28,"breadcrumbs":9,"title":5},"122":{"body":8,"breadcrumbs":6,"title":2},"123":{"body":18,"breadcrumbs":4,"title":1},"124":{"body":78,"breadcrumbs":5,"title":2},"125":{"body":51,"breadcrumbs":5,"title":2},"126":{"body":50,"breadcrumbs":8,"title":5},"127":{"body":3,"breadcrumbs":5,"title":2},"128":{"body":95,"breadcrumbs":4,"title":1},"129":{"body":113,"breadcrumbs":4,"title":1},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":56,"breadcrumbs":5,"title":2},"131":{"body":45,"breadcrumbs":4,"title":1},"132":{"body":65,"breadcrumbs":5,"title":2},"133":{"body":22,"breadcrumbs":7,"title":4},"134":{"body":24,"breadcrumbs":4,"title":1},"135":{"body":45,"breadcrumbs":5,"title":2},"136":{"body":73,"breadcrumbs":5,"title":2},"137":{"body":71,"breadcrumbs":7,"title":4},"138":{"body":38,"breadcrumbs":6,"title":3},"139":{"body":3,"breadcrumbs":5,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":48,"breadcrumbs":6,"title":2},"141":{"body":131,"breadcrumbs":6,"title":2},"142":{"body":58,"breadcrumbs":7,"title":3},"143":{"body":106,"breadcrumbs":5,"title":1},"144":{"body":98,"breadcrumbs":6,"title":2},"145":{"body":99,"breadcrumbs":7,"title":3},"146":{"body":85,"breadcrumbs":6,"title":2},"147":{"body":89,"breadcrumbs":6,"title":2},"148":{"body":71,"breadcrumbs":4,"title":1},"149":{"body":47,"breadcrumbs":5,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":23,"breadcrumbs":5,"title":2},"151":{"body":82,"breadcrumbs":6,"title":3},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":42,"breadcrumbs":6,"title":2},"154":{"body":42,"breadcrumbs":5,"title":1},"155":{"body":46,"breadcrumbs":5,"title":1},"156":{"body":72,"breadcrumbs":6,"title":2},"157":{"body":16,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":4,"title":1},"159":{"body":56,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":5,"title":3},"160":{"body":40,"breadcrumbs":5,"title":2},"161":{"body":87,"breadcrumbs":6,"title":3},"162":{"body":3,"breadcrumbs":5,"title":2},"163":{"body":23,"breadcrumbs":6,"title":2},"164":{"body":112,"breadcrumbs":6,"title":2},"165":{"body":191,"breadcrumbs":6,"title":2},"166":{"body":91,"breadcrumbs":8,"title":4},"167":{"body":4,"breadcrumbs":6,"title":2},"168":{"body":34,"breadcrumbs":6,"title":2},"169":{"body":39,"breadcrumbs":6,"title":2},"17":{"body":21,"breadcrumbs":4,"title":2},"170":{"body":38,"breadcrumbs":6,"title":2},"171":{"body":41,"breadcrumbs":6,"title":2},"172":{"body":25,"breadcrumbs":6,"title":2},"173":{"body":58,"breadcrumbs":5,"title":1},"174":{"body":29,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":99,"breadcrumbs":6,"title":2},"177":{"body":31,"breadcrumbs":6,"title":2},"178":{"body":5,"breadcrumbs":6,"title":2},"179":{"body":103,"breadcrumbs":6,"title":2},"18":{"body":36,"breadcrumbs":3,"title":1},"180":{"body":49,"breadcrumbs":6,"title":2},"181":{"body":22,"breadcrumbs":7,"title":3},"182":{"body":4,"breadcrumbs":6,"title":2},"183":{"body":78,"breadcrumbs":4,"title":1},"184":{"body":62,"breadcrumbs":4,"title":1},"185":{"body":79,"breadcrumbs":4,"title":1},"186":{"body":49,"breadcrumbs":5,"title":2},"187":{"body":51,"breadcrumbs":5,"title":2},"188":{"body":43,"breadcrumbs":5,"title":2},"189":{"body":30,"breadcrumbs":4,"title":1},"19":{"body":78,"breadcrumbs":3,"title":1},"190":{"body":21,"breadcrumbs":5,"title":2},"191":{"body":127,"breadcrumbs":5,"title":2},"192":{"body":202,"breadcrumbs":6,"title":3},"193":{"body":102,"breadcrumbs":4,"title":1},"194":{"body":129,"breadcrumbs":6,"title":3},"195":{"body":92,"breadcrumbs":6,"title":3},"196":{"body":3,"breadcrumbs":5,"title":2},"197":{"body":49,"breadcrumbs":6,"title":2},"198":{"body":71,"breadcrumbs":5,"title":1},"199":{"body":10,"breadcrumbs":6,"title":2},"2":{"body":29,"breadcrumbs":4,"title":2},"20":{"body":89,"breadcrumbs":3,"title":1},"200":{"body":19,"breadcrumbs":4,"title":1},"201":{"body":69,"breadcrumbs":5,"title":2},"202":{"body":43,"breadcrumbs":5,"title":2},"203":{"body":89,"breadcrumbs":7,"title":4},"204":{"body":91,"breadcrumbs":5,"title":2},"205":{"body":4,"breadcrumbs":5,"title":2},"206":{"body":53,"breadcrumbs":4,"title":2},"207":{"body":199,"breadcrumbs":9,"title":4},"208":{"body":41,"breadcrumbs":6,"title":1},"209":{"body":31,"breadcrumbs":7,"title":2},"21":{"body":31,"breadcrumbs":3,"title":1},"210":{"body":105,"breadcrumbs":6,"title":2},"211":{"body":28,"breadcrumbs":5,"title":1},"212":{"body":5,"breadcrumbs":6,"title":2},"213":{"body":169,"breadcrumbs":4,"title":1},"214":{"body":26,"breadcrumbs":4,"title":1},"215":{"body":4,"breadcrumbs":5,"title":2},"216":{"body":30,"breadcrumbs":4,"title":1},"217":{"body":62,"breadcrumbs":7,"title":4},"218":{"body":96,"breadcrumbs":5,"title":2},"219":{"body":33,"breadcrumbs":6,"title":3},"22":{"body":144,"breadcrumbs":4,"title":2},"220":{"body":78,"breadcrumbs":5,"title":2},"221":{"body":41,"breadcrumbs":4,"title":1},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":30,"breadcrumbs":8,"title":3},"224":{"body":59,"breadcrumbs":7,"title":2},"225":{"body":65,"breadcrumbs":7,"title":2},"226":{"body":29,"breadcrumbs":7,"title":2},"227":{"body":24,"breadcrumbs":8,"title":3},"228":{"body":38,"breadcrumbs":6,"title":1},"229":{"body":33,"breadcrumbs":4,"title":2},"23":{"body":136,"breadcrumbs":4,"title":2},"230":{"body":54,"breadcrumbs":6,"title":2},"231":{"body":86,"breadcrumbs":6,"title":2},"232":{"body":21,"breadcrumbs":7,"title":3},"233":{"body":18,"breadcrumbs":6,"title":2},"234":{"body":4,"breadcrumbs":6,"title":2},"235":{"body":22,"breadcrumbs":6,"title":2},"236":{"body":64,"breadcrumbs":5,"title":1},"237":{"body":99,"breadcrumbs":8,"title":4},"238":{"body":276,"breadcrumbs":5,"title":1},"239":{"body":226,"breadcrumbs":5,"title":1},"24":{"body":18,"breadcrumbs":4,"title":2},"240":{"body":55,"breadcrumbs":6,"title":2},"241":{"body":40,"breadcrumbs":5,"title":1},"242":{"body":145,"breadcrumbs":9,"title":5},"243":{"body":40,"breadcrumbs":6,"title":2},"244":{"body":14,"breadcrumbs":6,"title":2},"245":{"body":36,"breadcrumbs":5,"title":1},"246":{"body":58,"breadcrumbs":5,"title":1},"247":{"body":24,"breadcrumbs":7,"title":3},"248":{"body":4,"breadcrumbs":6,"title":2},"249":{"body":44,"breadcrumbs":6,"title":2},"25":{"body":6,"breadcrumbs":4,"title":2},"250":{"body":79,"breadcrumbs":7,"title":3},"251":{"body":29,"breadcrumbs":6,"title":2},"252":{"body":23,"breadcrumbs":6,"title":2},"253":{"body":56,"breadcrumbs":6,"title":2},"254":{"body":39,"breadcrumbs":5,"title":1},"255":{"body":19,"breadcrumbs":5,"title":1},"256":{"body":49,"breadcrumbs":8,"title":3},"257":{"body":188,"breadcrumbs":8,"title":3},"258":{"body":34,"breadcrumbs":7,"title":2},"259":{"body":43,"breadcrumbs":4,"title":2},"26":{"body":26,"breadcrumbs":4,"title":2},"260":{"body":119,"breadcrumbs":6,"title":2},"261":{"body":27,"breadcrumbs":7,"title":3},"262":{"body":47,"breadcrumbs":5,"title":1},"263":{"body":57,"breadcrumbs":7,"title":3},"264":{"body":132,"breadcrumbs":6,"title":2},"265":{"body":68,"breadcrumbs":6,"title":2},"266":{"body":56,"breadcrumbs":6,"title":2},"267":{"body":36,"breadcrumbs":6,"title":2},"268":{"body":40,"breadcrumbs":6,"title":2},"269":{"body":132,"breadcrumbs":6,"title":2},"27":{"body":14,"breadcrumbs":5,"title":3},"270":{"body":52,"breadcrumbs":8,"title":4},"271":{"body":224,"breadcrumbs":8,"title":4},"272":{"body":28,"breadcrumbs":6,"title":2},"273":{"body":74,"breadcrumbs":5,"title":1},"274":{"body":135,"breadcrumbs":5,"title":1},"275":{"body":28,"breadcrumbs":4,"title":1},"276":{"body":48,"breadcrumbs":4,"title":1},"277":{"body":86,"breadcrumbs":4,"title":1},"278":{"body":103,"breadcrumbs":4,"title":1},"279":{"body":105,"breadcrumbs":4,"title":1},"28":{"body":120,"breadcrumbs":4,"title":2},"280":{"body":39,"breadcrumbs":4,"title":1},"281":{"body":20,"breadcrumbs":5,"title":2},"282":{"body":81,"breadcrumbs":6,"title":2},"283":{"body":99,"breadcrumbs":5,"title":1},"284":{"body":235,"breadcrumbs":5,"title":1},"285":{"body":90,"breadcrumbs":8,"title":4},"286":{"body":117,"breadcrumbs":7,"title":3},"287":{"body":154,"breadcrumbs":8,"title":4},"288":{"body":149,"breadcrumbs":6,"title":2},"289":{"body":25,"breadcrumbs":8,"title":4},"29":{"body":64,"breadcrumbs":4,"title":2},"290":{"body":22,"breadcrumbs":5,"title":1},"291":{"body":32,"breadcrumbs":5,"title":1},"292":{"body":12,"breadcrumbs":6,"title":2},"293":{"body":59,"breadcrumbs":8,"title":3},"294":{"body":202,"breadcrumbs":6,"title":1},"295":{"body":173,"breadcrumbs":9,"title":4},"296":{"body":30,"breadcrumbs":7,"title":2},"297":{"body":36,"breadcrumbs":7,"title":2},"298":{"body":46,"breadcrumbs":6,"title":2},"299":{"body":78,"breadcrumbs":6,"title":2},"3":{"body":20,"breadcrumbs":6,"title":2},"30":{"body":114,"breadcrumbs":5,"title":3},"300":{"body":122,"breadcrumbs":5,"title":1},"301":{"body":13,"breadcrumbs":5,"title":1},"302":{"body":126,"breadcrumbs":5,"title":1},"303":{"body":13,"breadcrumbs":5,"title":1},"304":{"body":23,"breadcrumbs":5,"title":1},"305":{"body":3,"breadcrumbs":5,"title":1},"306":{"body":19,"breadcrumbs":6,"title":2},"307":{"body":135,"breadcrumbs":6,"title":2},"308":{"body":126,"breadcrumbs":7,"title":3},"309":{"body":24,"breadcrumbs":7,"title":3},"31":{"body":105,"breadcrumbs":4,"title":2},"310":{"body":19,"breadcrumbs":5,"title":1},"311":{"body":7,"breadcrumbs":6,"title":2},"312":{"body":19,"breadcrumbs":8,"title":3},"313":{"body":81,"breadcrumbs":6,"title":1},"314":{"body":34,"breadcrumbs":7,"title":2},"315":{"body":42,"breadcrumbs":6,"title":1},"316":{"body":30,"breadcrumbs":6,"title":2},"317":{"body":106,"breadcrumbs":5,"title":1},"318":{"body":31,"breadcrumbs":5,"title":1},"319":{"body":76,"breadcrumbs":7,"title":3},"32":{"body":139,"breadcrumbs":3,"title":1},"320":{"body":20,"breadcrumbs":6,"title":2},"321":{"body":19,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":5,"title":2},"323":{"body":89,"breadcrumbs":4,"title":1},"324":{"body":152,"breadcrumbs":5,"title":2},"325":{"body":36,"breadcrumbs":5,"title":2},"326":{"body":82,"breadcrumbs":5,"title":2},"327":{"body":80,"breadcrumbs":5,"title":2},"328":{"body":70,"breadcrumbs":5,"title":2},"329":{"body":13,"breadcrumbs":6,"title":3},"33":{"body":84,"breadcrumbs":4,"title":2},"330":{"body":8,"breadcrumbs":5,"title":2},"331":{"body":79,"breadcrumbs":4,"title":1},"332":{"body":111,"breadcrumbs":5,"title":2},"333":{"body":33,"breadcrumbs":5,"title":2},"334":{"body":34,"breadcrumbs":6,"title":2},"335":{"body":89,"breadcrumbs":5,"title":1},"336":{"body":54,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":5,"title":1},"338":{"body":20,"breadcrumbs":6,"title":2},"339":{"body":22,"breadcrumbs":6,"title":2},"34":{"body":91,"breadcrumbs":4,"title":2},"340":{"body":7,"breadcrumbs":6,"title":2},"341":{"body":31,"breadcrumbs":6,"title":3},"342":{"body":93,"breadcrumbs":4,"title":1},"343":{"body":16,"breadcrumbs":5,"title":2},"344":{"body":68,"breadcrumbs":4,"title":1},"345":{"body":36,"breadcrumbs":5,"title":2},"346":{"body":19,"breadcrumbs":4,"title":1},"347":{"body":94,"breadcrumbs":5,"title":2},"348":{"body":74,"breadcrumbs":5,"title":2},"349":{"body":67,"breadcrumbs":5,"title":2},"35":{"body":12,"breadcrumbs":3,"title":1},"350":{"body":36,"breadcrumbs":5,"title":2},"351":{"body":25,"breadcrumbs":4,"title":1},"352":{"body":37,"breadcrumbs":7,"title":4},"353":{"body":21,"breadcrumbs":6,"title":3},"354":{"body":34,"breadcrumbs":5,"title":2},"355":{"body":102,"breadcrumbs":6,"title":3},"356":{"body":28,"breadcrumbs":5,"title":2},"357":{"body":19,"breadcrumbs":5,"title":2},"358":{"body":56,"breadcrumbs":5,"title":2},"359":{"body":46,"breadcrumbs":6,"title":3},"36":{"body":69,"breadcrumbs":4,"title":2},"360":{"body":74,"breadcrumbs":5,"title":2},"361":{"body":36,"breadcrumbs":5,"title":2},"362":{"body":133,"breadcrumbs":4,"title":2},"363":{"body":70,"breadcrumbs":4,"title":2},"364":{"body":64,"breadcrumbs":6,"title":4},"365":{"body":3,"breadcrumbs":4,"title":2},"366":{"body":45,"breadcrumbs":6,"title":3},"367":{"body":19,"breadcrumbs":5,"title":2},"368":{"body":32,"breadcrumbs":5,"title":2},"369":{"body":43,"breadcrumbs":7,"title":4},"37":{"body":28,"breadcrumbs":4,"title":2},"370":{"body":30,"breadcrumbs":7,"title":4},"371":{"body":17,"breadcrumbs":8,"title":5},"372":{"body":14,"breadcrumbs":6,"title":3},"373":{"body":101,"breadcrumbs":6,"title":3},"374":{"body":71,"breadcrumbs":8,"title":5},"375":{"body":82,"breadcrumbs":8,"title":5},"376":{"body":111,"breadcrumbs":9,"title":6},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":0,"breadcrumbs":3,"title":1},"379":{"body":11,"breadcrumbs":3,"title":1},"38":{"body":24,"breadcrumbs":4,"title":2},"380":{"body":13,"breadcrumbs":3,"title":1},"381":{"body":17,"breadcrumbs":3,"title":1},"382":{"body":25,"breadcrumbs":3,"title":1},"383":{"body":47,"breadcrumbs":4,"title":2},"384":{"body":47,"breadcrumbs":3,"title":2},"385":{"body":70,"breadcrumbs":2,"title":1},"386":{"body":46,"breadcrumbs":7,"title":4},"387":{"body":46,"breadcrumbs":5,"title":3},"388":{"body":16,"breadcrumbs":5,"title":3},"389":{"body":27,"breadcrumbs":5,"title":3},"39":{"body":39,"breadcrumbs":4,"title":2},"4":{"body":18,"breadcrumbs":6,"title":2},"40":{"body":32,"breadcrumbs":4,"title":2},"41":{"body":27,"breadcrumbs":4,"title":2},"42":{"body":446,"breadcrumbs":5,"title":3},"43":{"body":183,"breadcrumbs":5,"title":3},"44":{"body":133,"breadcrumbs":4,"title":2},"45":{"body":34,"breadcrumbs":3,"title":1},"46":{"body":30,"breadcrumbs":2,"title":1},"47":{"body":66,"breadcrumbs":3,"title":1},"48":{"body":52,"breadcrumbs":4,"title":2},"49":{"body":31,"breadcrumbs":4,"title":2},"5":{"body":9,"breadcrumbs":8,"title":4},"50":{"body":6,"breadcrumbs":3,"title":1},"51":{"body":42,"breadcrumbs":4,"title":2},"52":{"body":0,"breadcrumbs":3,"title":1},"53":{"body":36,"breadcrumbs":3,"title":1},"54":{"body":59,"breadcrumbs":3,"title":1},"55":{"body":45,"breadcrumbs":6,"title":4},"56":{"body":28,"breadcrumbs":4,"title":2},"57":{"body":21,"breadcrumbs":3,"title":1},"58":{"body":34,"breadcrumbs":4,"title":2},"59":{"body":56,"breadcrumbs":4,"title":2},"6":{"body":10,"breadcrumbs":8,"title":4},"60":{"body":3,"breadcrumbs":4,"title":2},"61":{"body":94,"breadcrumbs":3,"title":1},"62":{"body":3,"breadcrumbs":4,"title":2},"63":{"body":45,"breadcrumbs":3,"title":1},"64":{"body":11,"breadcrumbs":4,"title":2},"65":{"body":26,"breadcrumbs":3,"title":1},"66":{"body":41,"breadcrumbs":4,"title":2},"67":{"body":84,"breadcrumbs":3,"title":1},"68":{"body":90,"breadcrumbs":4,"title":2},"69":{"body":40,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":9,"title":5},"70":{"body":24,"breadcrumbs":4,"title":1},"71":{"body":69,"breadcrumbs":5,"title":2},"72":{"body":35,"breadcrumbs":6,"title":3},"73":{"body":41,"breadcrumbs":5,"title":2},"74":{"body":3,"breadcrumbs":5,"title":2},"75":{"body":36,"breadcrumbs":4,"title":1},"76":{"body":41,"breadcrumbs":5,"title":2},"77":{"body":61,"breadcrumbs":5,"title":2},"78":{"body":44,"breadcrumbs":5,"title":2},"79":{"body":30,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":56,"breadcrumbs":6,"title":2},"81":{"body":42,"breadcrumbs":5,"title":1},"82":{"body":75,"breadcrumbs":6,"title":2},"83":{"body":68,"breadcrumbs":5,"title":1},"84":{"body":49,"breadcrumbs":5,"title":1},"85":{"body":27,"breadcrumbs":5,"title":1},"86":{"body":6,"breadcrumbs":6,"title":2},"87":{"body":68,"breadcrumbs":6,"title":2},"88":{"body":59,"breadcrumbs":5,"title":1},"89":{"body":3,"breadcrumbs":6,"title":2},"9":{"body":39,"breadcrumbs":8,"title":3},"90":{"body":32,"breadcrumbs":4,"title":1},"91":{"body":83,"breadcrumbs":4,"title":1},"92":{"body":37,"breadcrumbs":4,"title":1},"93":{"body":60,"breadcrumbs":4,"title":1},"94":{"body":44,"breadcrumbs":5,"title":2},"95":{"body":43,"breadcrumbs":6,"title":3},"96":{"body":24,"breadcrumbs":6,"title":3},"97":{"body":156,"breadcrumbs":4,"title":1},"98":{"body":94,"breadcrumbs":6,"title":3},"99":{"body":73,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"This is the Move Book - a comprehensive guide to the Move programming language and the Sui blockchain. The book is intended for developers who are interested in learning about Move and building on Sui. The book is in active development and a work in progress. If you have any feedback or suggestions, feel free to open an issue or a pull request on the GitHub repository . If you're looking for The Move Reference, you can find it here .","breadcrumbs":"The Move Book » The Move Book","id":"0","title":"The Move Book"},"1":{"body":"This book is dedicated to Move, a smart contract language that captures the essence of safe programming with digital assets. Move is designed around the following values: Secure by default: Insecure languages are a serious barrier both to accessible smart contract development and to mainstream adoption of digital assets. The first duty of a smart contract language is to prevent as many potential safety issues as possible (e.g. re-entrancy, missing access control checks, arithmetic overflow, ...) by construction. Any changes to Move should preserve or enhance its existing security guarantees. Expressive by nature: Move must enable programmers to write any smart contract they can imagine. But we care as much about the way it feels to write Move as we do about what Move allows you to do - the language should be rich enough that the features needed for a task are available, and minimal enough that the choice is obvious. The Move toolchain should be a productivity enhancer and a thought partner. Intuitive for all: Smart contracts are only one part of a useful application. Move should understand the broader context of its usage and design with both the smart contract developer and the application developer in mind. It should be easy for developers to learn how to read Move-managed state, build Move powered transactions, and write new Move code. The core technical elements of Move are: Safe, familiar, and flexible abstractions for digital assets via programmable objects . A rich ability system (inspired by linear types) that gives programmers extreme control of how values are created, destroyed, stored, copied, and transferred. A module system with strong encapsulation features to enable code reuse while maintaining this control. Dynamic fields for creating hierarchical relationships between objects. Programmable transaction blocks (PTBs) to enable atomic client-side composition of Move-powered APIs. Move was born in 2018 as part of Facebook's Libra project. It was publicly revealed in 2019, the first Move-powered network launched in 2020. As of April 2024, there are numerous Move-powered chains in production with several more in the works. Move is an embedded language with a platform-agnostic core, which means it takes on a slightly different personality in each chain that uses it. Creating a new programming language and bootstrapping a community around it is an ambitious, long term project. A language has to be an order of magnitude better than alternatives in relevant ways to have a chance, but even then the quality of the community matters more than the technical fundamentals. Move is a young language, but it's off to a good start in terms of both differentiation and community. A small, but fanatical group of smart contract programmers and core contributors united by the Move values are pushing the boundaries of what smart contracts can do, the applications they can enable, and who can (safely) write them. If that inspires you, read on! — Sam Blackshear, creator of Move","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move (Extension) is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"Structs in the Move Reference.","breadcrumbs":"Move Basics » Struct » Further reading","id":"100","title":"Further reading"},"101":{"body":"Move has a unique type system which allows customizing type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . Throughout the book you will see chapters with name Ability: , where is the name of the ability. These chapters will cover the ability in detail, how it works, and how to use it in Move.","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities: Introduction","id":"101","title":"Abilities: Introduction"},"102":{"body":"Abilities are a way to allow certain behaviors for a type. They are a part of the struct declaration and define which behaviours are allowed for the instances of the struct.","breadcrumbs":"Move Basics » Abilities: Introduction » What are Abilities?","id":"102","title":"What are Abilities?"},"103":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store, each of them is used to define a specific behaviour for the struct instances. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities syntax","id":"103","title":"Abilities syntax"},"104":{"body":"A quick overview of the abilities: All of the built-in types, except references, have copy, drop and store abilities. References have copy and drop. copy - allows the struct to be copied . Explained in the Ability: Copy chapter. drop - allows the struct to be dropped or discarded . Explained in the Ability: Drop chapter. key - allows the struct to be used as a key in a storage. Explained in the Ability: Key chapter. store - allows the struct to be stored in structs with the key ability. Explained in the Ability: Store chapter. While it is important to mention them here, we will go in detail about each ability in the following chapters and give a proper context on how to use them.","breadcrumbs":"Move Basics » Abilities: Introduction » Overview","id":"104","title":"Overview"},"105":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it can only be passed around and requires special handling. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the Hot Potato chapter.","breadcrumbs":"Move Basics » Abilities: Introduction » No abilities","id":"105","title":"No abilities"},"106":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Abilities: Introduction » Further reading","id":"106","title":"Further reading"},"107":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. public struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. public struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Move Basics » Ability: Drop » Abilities: Drop","id":"107","title":"Abilities: Drop"},"108":{"body":"All native types in Move have the drop ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the drop ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Drop » Types with the drop Ability","id":"108","title":"Types with the drop Ability"},"109":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Drop » Further reading","id":"109","title":"Further reading"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Move Basics » Importing Modules » Importing Modules","id":"110","title":"Importing Modules"},"111":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} Another module defined in the same package can import the first module using the use keyword. // File: sources/module_two.move\nmodule book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module","id":"111","title":"Importing a Module"},"112":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing Members","id":"112","title":"Importing Members"},"113":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Grouping Imports","id":"113","title":"Grouping Imports"},"114":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Resolving Name Conflicts","id":"114","title":"Resolving Name Conflicts"},"115":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Move Basics » Importing Modules » Adding an External Dependency","id":"115","title":"Adding an External Dependency"},"116":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module from Another Package","id":"116","title":"Importing a Module from Another Package"},"117":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which do not interact with the storage, but provide basic tools for working and manipulating the data. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Move Basics » Standard Library » Standard Library","id":"117","title":"Standard Library"},"118":{"body":"In this book we go into detail about most of the modules in the Standard Library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements it. Module Description Chapter std::string Provides basic string operations String std::ascii Provides basic ASCII operations String std::option Implements an Option Option std::vector Native operations on the vector type Vector std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::type_name Allows runtime type reflection Type Reflection std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::debug Contains debugging functions, which are available in only in test mode Debugging std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Move Basics » Standard Library » Most Common Modules","id":"118","title":"Most Common Modules"},"119":{"body":"Standard Library exports one named address - std = 0x1. [addresses]\nstd = \"0x1\"","breadcrumbs":"Move Basics » Standard Library » Exported Addresses","id":"119","title":"Exported Addresses"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"Some of the modules are imported implicitly, and are available in the module without explicit use import. For Standard Library, these modules and types are: std::vector std::option std::option::Option","breadcrumbs":"Move Basics » Standard Library » Implicit Imports","id":"120","title":"Implicit Imports"},"121":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Move Basics » Standard Library » Importing std without Sui Framework","id":"121","title":"Importing std without Sui Framework"},"122":{"body":"The source code of the Move Standard Library is available in the Sui repository .","breadcrumbs":"Move Basics » Standard Library » Source Code","id":"122","title":"Source Code"},"123":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Move Basics » Vector » Vector","id":"123","title":"Vector"},"124":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). // An empty vector of bool elements.\nlet empty: vector = vector[]; // A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; // A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Move Basics » Vector » Vector syntax","id":"124","title":"Vector syntax"},"125":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0);\nassert!(!v.is_empty(), 1); v.push_back(40);\nlet last_value = v.pop_back(); assert!(last_value == 40, 2);","breadcrumbs":"Move Basics » Vector » Vector operations","id":"125","title":"Vector operations"},"126":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. /// A struct without `drop` ability. public struct NoDrop {} #[test] fun test_destroy_empty() { // Initialize a vector of `NoDrop` elements. let v = vector[]; // While we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }","breadcrumbs":"Move Basics » Vector » Destroying a Vector of non-droppable types","id":"126","title":"Destroying a Vector of non-droppable types"},"127":{"body":"Vector in the Move Reference.","breadcrumbs":"Move Basics » Vector » Further reading","id":"127","title":"Further reading"},"128":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library , and is defined as follows: File: move-stdlib/source/option.move // File: move-stdlib/source/option.move\n/// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The 'std::option' module is implicitly imported in every module, and you don't need to add an import. The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Move Basics » Option » Option","id":"128","title":"Option"},"129":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; /// A struct representing a user record. public struct User has drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Move Basics » Option » In Practice","id":"129","title":"In Practice"},"13":{"body":"The Web-based IDE from Github can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. // `option::some` creates an `Option` value with a value.\nlet mut opt = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(opt.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option, leaving the option empty.\nlet inner = opt.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt.is_none(), 2);","breadcrumbs":"Move Basics » Option » Using Option","id":"130","title":"Using Option"},"131":{"body":"While Move does not have a built-in type to represent strings, it does have two standard implementations for strings in the Standard Library . The std::string module defines a String type and methods for UTF-8 encoded strings, and the second module, std::ascii, provides an ASCII String type and its methods. Sui execution environment automatically converts bytevector into String in transaction inputs. So in many cases, a String does not need to be constructed in the Transaction Block .","breadcrumbs":"Move Basics » String » String","id":"131","title":"String"},"132":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide safety checks and methods to work with strings, but at the end of the day, they are just vectors of bytes. module book::custom_string { /// Anyone can implement a custom string-like type by wrapping a vector. public struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n}","breadcrumbs":"Move Basics » String » Strings are bytes","id":"132","title":"Strings are bytes"},"133":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module, which is fully implemented in Move.","breadcrumbs":"Move Basics » String » Working with UTF-8 Strings","id":"133","title":"Working with UTF-8 Strings"},"134":{"body":"The String type in the std::string module is defined as follows: // File: move-stdlib/sources/string.move\n/// A `String` holds a sequence of bytes which is guaranteed to be in utf8 format.\npublic struct String has copy, drop, store { bytes: vector,\n}","breadcrumbs":"Move Basics » String » Definition","id":"134","title":"Definition"},"135":{"body":"To create a new UTF-8 String instance, you can use the string::utf8 method. The Standard Library provides an alias .to_string() on the vector for convenience. // the module is `std::string` and the type is `String`\nuse std::string::{Self, String}; // strings are normally created using the `utf8` function\n// type declaration is not necessary, we put it here for clarity\nlet hello: String = string::utf8(b\"Hello\"); // The `.to_string()` alias on the `vector` is more convenient\nlet hello = b\"Hello\".to_string();","breadcrumbs":"Move Basics » String » Creating a String","id":"135","title":"Creating a String"},"136":{"body":"UTF8 String provides a number of methods to work with strings. The most common operations on strings are: concatenation, slicing, and getting the length. Additionally, for custom string operations, the bytes() method can be used to get the underlying byte vector. let mut str = b\"Hello,\".to_string();\nlet another = b\" World!\".to_string(); // append(String) adds the content to the end of the string\nstr.append(another); // `sub_string(start, end)` copies a slice of the string\nstr.sub_string(0, 5); // \"Hello\" // `length()` returns the number of bytes in the string\nstr.length(); // 12 (bytes) // methods can also be chained! Get a length of a substring\nstr.sub_string(0, 5).length(); // 5 (bytes) // whether the string is empty\nstr.is_empty(); // false // get the underlying byte vector for custom operations\nlet bytes: &vector = str.bytes();","breadcrumbs":"Move Basics » String » Common Operations","id":"136","title":"Common Operations"},"137":{"body":"The default utf8 method may abort if the bytes passed into it are not valid UTF-8. If you are not sure that the bytes you are passing are valid, you should use the try_utf8 method instead. It returns an Option, which contains no value if the bytes are not valid UTF-8, and a string otherwise. Hint: the name that starts with try_* indicates that the function returns an Option with the expected result or none if the operation fails. It is a common naming convention borrowed from Rust. // this is a valid UTF-8 string\nlet hello = b\"Hello\".try_to_string(); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string\nlet invalid = b\"\\xFF\".try_to_string(); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8","breadcrumbs":"Move Basics » String » Safe UTF-8 Operations","id":"137","title":"Safe UTF-8 Operations"},"138":{"body":"The string module does not provide a way to access individual characters in a string. This is because UTF-8 is a variable-length encoding, and the length of a character can be anywhere from 1 to 4 bytes. Similarly, the length() method returns the number of bytes in the string, not the number of characters. However, methods like sub_string and insert check character boundaries and will abort when the index is in the middle of a character.","breadcrumbs":"Move Basics » String » UTF-8 Limitations","id":"138","title":"UTF-8 Limitations"},"139":{"body":"This section is coming soon!","breadcrumbs":"Move Basics » String » ASCII Strings","id":"139","title":"ASCII Strings"},"14":{"body":"Move 2024 is the new edition of the Move language maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the changes and improvements in the new edition.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Move Basics » Control Flow » Control Flow","id":"140","title":"Control Flow"},"141":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; } Let's see how we can use if and else to assign a value to a variable: #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); } Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Move Basics » Control Flow » Conditional Statements","id":"141","title":"Conditional Statements"},"142":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Move Basics » Control Flow » Repeating Statements with Loops","id":"142","title":"Repeating Statements with Loops"},"143":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () { ; }; Here is an example of a while loop with a very simple condition: // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(mut x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; x = x + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }","breadcrumbs":"Move Basics » Control Flow » The while loop","id":"143","title":"The while loop"},"144":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop { ; }; Let's rewrite the previous example using loop instead of while: #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Move Basics » Control Flow » Infinite loop","id":"144","title":"Infinite loop"},"145":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is (without a semicolon): break The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break // Exit the loop. } }; assert!(x == 5, 0); } Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Move Basics » Control Flow » Exiting a Loop Early","id":"145","title":"Exiting a Loop Early"},"146":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is (without a semicolon): continue The example below skips odd numbers and prints only even numbers from 0 to 10: #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue // Skip the rest of the iteration. }; std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break // Exit the loop. } }; assert!(x == 10, 0); // 10 } break and continue statements can be used in both while and loop loops.","breadcrumbs":"Move Basics » Control Flow » Skipping an Iteration","id":"146","title":"Skipping an Iteration"},"147":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return Here is an example of a function that returns a value when a certain condition is met: /// This function returns `true` if `x` is greater than 0 and not 5, /// otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false }; if (x > 0) { return true }; false } #[test] fun test_return() { assert!(is_positive(5) == false, 0); assert!(is_positive(0) == false, 0); assert!(is_positive(1) == true, 0); } Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Move Basics » Control Flow » Early Return","id":"147","title":"Early Return"},"148":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to static values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are stored in the module's bytecode, and each time they are used, the value is copied. module book::shop_price { use sui::coin::Coin; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// The owner of the shop, an address. const SHOP_OWNER: address = @0xa11ce; /// An item sold in the shop. public struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); transfer::public_transfer(coin, SHOP_OWNER); Item { /* ... */ } }\n}","breadcrumbs":"Move Basics » Constants » Constants","id":"148","title":"Constants"},"149":{"body":"Constants must start with a capital letter - this is enforced at the compiler level. For constants used as a value, there's a convention to use uppercase letters and underscores to separate words. It's a way to make constants stand out from other identifiers in the code. One exception is made for error constants , which are written in ECamelCase. /// Price of the item used at the shop.\nconst ITEM_PRICE: u64 = 100; /// Error constant.\nconst EItemNotFound: u64 = 1;","breadcrumbs":"Move Basics » Constants » Naming Convention","id":"149","title":"Naming Convention"},"15":{"body":"In this chapter, you will learn how to create a new package, write a simple module, compile it, and run tests with the Move CLI. Make sure you have installed Sui and set up your IDE environment . Run the command below to test if Sui has been installed correctly. # It should print the client version. E.g. sui-client 1.22.0-036299745.\nsui client --version Move CLI is a command-line interface for the Move language; it is built into the Sui binary and provides a set of commands to manage packages, compile and test code. The structure of the chapter is as follows: Create a New Package Directory Structure Compiling the Package Running Tests","breadcrumbs":"Hello, World! » Hello, World!","id":"15","title":"Hello, World!"},"150":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Move Basics » Constants » Constants are Immutable","id":"150","title":"Constants are Immutable"},"151":{"body":"A common use case for an application is to define a set of constants that are used throughout the codebase. But due to constants being private to the module, they can't be accessed from other modules. One way to solve this is to define a \"config\" module that exports the constants. module book::config { const ITEM_PRICE: u64 = 100; const TAX_RATE: u64 = 10; const SHIPPING_COST: u64 = 5; /// Returns the price of an item. public fun item_price(): u64 { ITEM_PRICE } /// Returns the tax rate. public fun tax_rate(): u64 { TAX_RATE } /// Returns the shipping cost. public fun shipping_cost(): u64 { SHIPPING_COST }\n} This way other modules can import and read the constants, and the update process is simplified. If the constants need to be changed, only the config module needs to be updated during the package upgrade.","breadcrumbs":"Move Basics » Constants » Using Config Pattern","id":"151","title":"Using Config Pattern"},"152":{"body":"Constants in the Move Reference Coding conventions for constants","breadcrumbs":"Move Basics » Constants » Links","id":"152","title":"Links"},"153":{"body":"A transaction can either succeed or fail. Successful execution applies all the changes made to objects and on-chain data, and the transaction is committed to the blockchain. Alternatively, if a transaction aborts, the changes are not applied. The abort keyword is used to abort a transaction and revert the changes made so far. It is important to note that there is no catch mechanism in Move. If a transaction aborts, the changes made so far are reverted, and the transaction is considered failed.","breadcrumbs":"Move Basics » Aborting Execution » Aborting Execution","id":"153","title":"Aborting Execution"},"154":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(1)\n}; The code above will, of course, abort with abort code 1.","breadcrumbs":"Move Basics » Aborting Execution » Abort","id":"154","title":"Abort"},"155":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. The code argument is required and has to be a u64 value. // aborts if `user_has_access` is `false` with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Move Basics » Aborting Execution » assert!","id":"155","title":"assert!"},"156":{"body":"To make error codes more descriptive, it is a good practice to define error constants . Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constants are no different from other constants and don't have special handling, however, they are used to increase the readability of the code and make it easier to understand the abort scenarios. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; /// Updates a record.\npublic fun update_record(/* ... , */ user_has_access: bool, field_exists: bool) { // asserts are way more readable now assert!(user_has_access, ENoAccess); assert!(field_exists, ENoField); /* ... */\n}","breadcrumbs":"Move Basics » Aborting Execution » Error constants","id":"156","title":"Error constants"},"157":{"body":"Abort and Assert in the Move Reference. We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Move Basics » Aborting Execution » Further reading","id":"157","title":"Further reading"},"158":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Move Basics » Function » Function","id":"158","title":"Function"},"159":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Move Basics » Function » Function declaration","id":"159","title":"Function declaration"},"16":{"body":"To create a new program, we will use the sui move new command followed by the name of the application. Our first program will be called hello_world. Note: In this and other chapters, if you see code blocks with lines starting with $ (dollar sign), it means that the following command should be run in a terminal. The sign should not be included. It's a common way of showing commands in terminal environments. $ sui move new hello_world The sui move command gives access to the Move CLI - a built-in compiler, test runner and a utility for all things Move. The new command followed by the name of the package will create a new package in a new folder. In our case, the folder name is \"hello_world\". We can view the contents of the folder to see that the package was created successfully. $ ls -l hello_world\nMove.toml\nsources\ntests","breadcrumbs":"Hello, World! » Create a New Package","id":"16","title":"Create a New Package"},"160":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Move Basics » Function » Accessing functions","id":"160","title":"Accessing functions"},"161":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // Tuple must be destructured to access its elements.\n// Name and age are declared as immutable variables.\nlet (name, age) = get_name_and_age();\nassert!(name == b\"John\", 0);\nassert!(age == 25, 0); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, only use the age\nlet (_, age) = get_name_and_age();","breadcrumbs":"Move Basics » Function » Multiple return values","id":"161","title":"Multiple return values"},"162":{"body":"Functions in the Move Reference.","breadcrumbs":"Move Basics » Function » Further reading","id":"162","title":"Further reading"},"163":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Move Basics » Struct Methods » Struct Methods","id":"163","title":"Struct Methods"},"164":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Move Basics » Struct Methods » Method syntax","id":"164","title":"Method syntax"},"165":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun function_path as Type.method_name; // exported alias\npublic use fun function_path as Type.method_name; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. public struct Hero has drop { health: u8, } /// A struct representing a villain. public struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let hero = new_hero(); assert!(hero.health() == 100, 1); let villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Move Basics » Struct Methods » Method Aliases","id":"165","title":"Method Aliases"},"166":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. // TODO: better example (external module...)\nmodule book::hero_to_bytes { // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. // public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { // let mut hero = new(); // let serialized = hero.to_bytes(); // assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Move Basics » Struct Methods » Aliasing an external module's method","id":"166","title":"Aliasing an external module's method"},"167":{"body":"Method Syntax in the Move Reference.","breadcrumbs":"Move Basics » Struct Methods » Further reading","id":"167","title":"Further reading"},"168":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or public(package) - visible in the modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Move Basics » Visibility Modifiers » Visibility Modifiers","id":"168","title":"Visibility Modifiers"},"169":{"body":"A function or a struct defined in a module which has no visibility modifier is private to the module. It can't be called from other modules. module book::internal_visibility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} module book::try_calling_internal { use book::internal_visibility; // Different module -> can't call internal() fun try_calling_internal() { internal_visibility::internal(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Internal Visibility","id":"169","title":"Internal Visibility"},"17":{"body":"Move CLI will create a scaffold of the application and pre-create the directory structure and all necessary files. Let's see what's inside. hello_world\n├── Move.toml\n├── sources\n│ └── hello_world.move\n└── tests └── hello_world_tests.move","breadcrumbs":"Hello, World! » Directory Structure","id":"17","title":"Directory Structure"},"170":{"body":"A struct or a function can be made public by adding the public keyword before the fun or struct keyword. module book::public_visibility { // This function can be called from other modules public fun public() { /* ... */ }\n} A public function can be imported and called from other modules. The following code will compile: module book::try_calling_public { use book::public_visibility; // Different module -> can call public() fun try_calling_public() { public_visibility::public(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Public Visibility","id":"170","title":"Public Visibility"},"171":{"body":"Move 2024 introduces the package visibility modifier. A function with package visibility can be called from any module within the same package. It can't be called from other packages. module book::package_visibility { public(package) fun package_only() { /* ... */ }\n} A package function can be called from any module within the same package: module book::try_calling_package { use book::package_visibility; // Same package `book` -> can call package_only() fun try_calling_package() { package_visibility::package_only(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Package Visibility","id":"171","title":"Package Visibility"},"172":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership and Scope","id":"172","title":"Ownership and Scope"},"173":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here #[test] fun test_owner() { owner(); // a is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership","id":"173","title":"Ownership"},"174":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Move Basics » Ownership and Scope » Returning a Value","id":"174","title":"Returning a Value"},"175":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Passing by Value","id":"175","title":"Passing by Value"},"176":{"body":"Each function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Scopes with Blocks","id":"176","title":"Scopes with Blocks"},"177":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Move Basics » Ownership and Scope » Copyable Types","id":"177","title":"Copyable Types"},"178":{"body":"Local Variables and Scopes in the Move Reference.","breadcrumbs":"Move Basics » Ownership and Scope » Further reading","id":"178","title":"Further reading"},"179":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator let Copyable {} = a; // doesn't have `drop`\nlet Copyable {} = b; // doesn't have `drop`\nlet Copyable {} = c; // doesn't have `drop` In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Move Basics » Ability: Copy » Abilities: Copy","id":"179","title":"Abilities: Copy"},"18":{"body":"The Move.toml file, known as the package manifest , contains definitions and configuration settings for the package. It is used by the Move Compiler to manage package metadata, fetch dependencies, and register named addresses. We will explain it in detail in the Concepts chapter. By default, the package features one named address - the name of the package. [addresses]\nhello_world = \"0x0\"","breadcrumbs":"Hello, World! » Manifest","id":"18","title":"Manifest"},"180":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Move Basics » Ability: Copy » Copying and Drop","id":"180","title":"Copying and Drop"},"181":{"body":"All native types in Move have the copy ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the copy ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Copy » Types with the copy Ability","id":"181","title":"Types with the copy Ability"},"182":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Copy » Further reading","id":"182","title":"Further reading"},"183":{"body":"In the Ownership and Scope section, we explained that when a value is passed to a function, it is moved to the function's scope. This means that the function becomes the owner of the value, and the original scope (owner) can no longer use it. This is an important concept in Move, as it ensures that the value is not used in multiple places at the same time. However, there are use cases when we want to pass a value to a function but retain the ownership. This is where references come into play. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty","breadcrumbs":"Move Basics » References » References","id":"183","title":"References"},"184":{"body":"The initial layout of the metro pass application is simple. We define the Card type and the USES constant that represents the number of rides for a single card. We also add an error constant for the case when the card is empty. module book::metro_pass { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card public struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } }\n}","breadcrumbs":"Move Basics » References » Layout","id":"184","title":"Layout"},"185":{"body":"References are a way to show a value to a function without giving up the ownership. In our case, when we show the Card to the inspector, we don't want to give up the ownership of it, and we don't allow them to spend the rides. We just want to allow reading the value of the Card and prove its ownership. To do so, in the function signature, we use the & symbol to indicate that we are passing a reference to the value, not the value itself. /// Show the metro pass card to the inspector. public fun is_valid(card: &Card): bool { card.uses > 0 } Now the function can't take the ownership of the card, and it can't spend the rides. But it can read its value. Worth noting, that a signature like this makes it impossible to call the function without a Card at all. This is an important property which allows the Capability Pattern which we will cover in the next chapters.","breadcrumbs":"Move Basics » References » Reference","id":"185","title":"Reference"},"186":{"body":"In some cases, we want to allow the function to change the value of the Card. For example, when we use the Card at the turnstile, we want to spend a ride. To implement it, we use the &mut keyword in the function signature. /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } As you can see in the function body, the &mut reference allows mutating the value, and the function can spend the rides.","breadcrumbs":"Move Basics » References » Mutable Reference","id":"186","title":"Mutable Reference"},"187":{"body":"Lastly, let's give an illustration of what happens when we pass the value itself to the function. In this case, the function takes the ownership of the value, and the original scope can no longer use it. The owner of the Card can recycle it, and, hence, lose the ownership. /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } In the recycle function, the Card is taken by value and can be unpacked and destroyed. The original scope can't use it anymore.","breadcrumbs":"Move Basics » References » Passing by Value","id":"187","title":"Passing by Value"},"188":{"body":"To illustrate the full flow of the application, let's put all the pieces together in a test. #[test] fun test_card_2024() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.is_valid(), 0); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }","breadcrumbs":"Move Basics » References » Full Example","id":"188","title":"Full Example"},"189":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Move Basics » Generics » Generics","id":"189","title":"Generics"},"19":{"body":"The sources/ directory contains the source files. Move source files have .move extension, and are typically named after the module defined in the file. For example, in our case, the file name is hello_world.move and the Move CLI has already placed commented out code inside: /*\n/// Module: hello_world\nmodule hello_world::hello_world { }\n*/ The /* and */ are the comment delimiters in Move. Everything in between is ignored by the compiler and can be used for documentation or notes. We explain all ways to comment the code in the Basic Syntax . The commented out code is a module definition, it starts with the keyword module followed by a named address (or an address literal), and the module name. The module name is a unique identifier for the module and has to be unique within the package. The module name is used to reference the module from other modules or transactions.","breadcrumbs":"Hello, World! » Sources","id":"19","title":"Sources"},"190":{"body":"In this chapter we already mentioned the vector type, which is a generic type that can hold any other type. Another example of a generic type in the standard library is the Option type, which is used to represent a value that may or may not be present.","breadcrumbs":"Move Basics » Generics » In the Standard Library","id":"190","title":"In the Standard Library"},"191":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\npublic struct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_container() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0); // Value can be ignored only if it has the `drop` ability. let Container { value: _ } = container;\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Move Basics » Generics » Generic Syntax","id":"191","title":"Generic Syntax"},"192":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\npublic struct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair_1: Pair = new_pair(10, true); // type inference let pair_2 = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair_3 = new_pair(10u8, true); assert!(pair_1.first == 10, 0x0); assert!(pair_1.second, 0x0); // Unpacking is identical. let Pair { first: _, second: _ } = pair_1; let Pair { first: _, second: _ } = pair_2; let Pair { first: _, second: _ } = pair_3; } If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0); let Pair { first: pf1, second: ps1 } = pair1; // first1: u8, second1: bool let Pair { first: pf2, second: ps2 } = pair2; // first2: bool, second2: u8 assert!(pf1 == ps2, 0x0); // 10 == 10 assert!(ps1 == pf2, 0x0); // true == true\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Move Basics » Generics » Multiple Type Parameters","id":"192","title":"Multiple Type Parameters"},"193":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\npublic struct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Move Basics » Generics » Why Generics?","id":"193","title":"Why Generics?"},"194":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\npublic struct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. public struct USD {}\npublic struct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 }; // Unpacking is identical because the phantom type parameter is not used. let Coin { value: _ } = coin1; let Coin { value: _ } = coin2;\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Move Basics » Generics » Phantom Type Parameters","id":"194","title":"Phantom Type Parameters"},"195":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\npublic struct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\npublic struct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\npublic struct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability // let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities // let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Move Basics » Generics » Constraints on Type Parameters","id":"195","title":"Constraints on Type Parameters"},"196":{"body":"Generics in the Move Reference.","breadcrumbs":"Move Basics » Generics » Further Reading","id":"196","title":"Further Reading"},"197":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Move Basics » Type Reflection » Type Reflection","id":"197","title":"Type Reflection"},"198":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::ascii::String; use std::type_name::{Self, TypeName}; /// A function that returns the name of the type `T` and its module and address. public fun do_i_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] public struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, _address_str) = do_i_know_you(); // assert!(module_name == b\"type_reflection\".to_ascii_string(), 1); }\n}","breadcrumbs":"Move Basics » Type Reflection » In practice","id":"198","title":"In practice"},"199":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Move Basics » Type Reflection » Further reading","id":"199","title":"Further reading"},"2":{"body":"Move requires an environment to run and develop applications, and in this small chapter we will cover the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"2","title":"Before we begin"},"20":{"body":"The tests/ directory contains package tests. The compiler excludes these files in the regular build process but uses them in test and dev modes. The tests are written in Move and are marked with the #[test] attribute. Tests can be grouped in a separate module (then it's usually called module_name_tests.move ), or inside the module they're testing. Modules, imports, constants and functions can be annotated with #[test_only]. This attribute is used to exclude modules, functions or imports from the build process. This is useful when you want to add helpers for your tests without including them in the code that will be published on chain. The hello_world_tests.move file contains a commented out test module template: /*\n#[test_only]\nmodule hello_world::hello_world_tests { // uncomment this line to import the module // use hello_world::hello_world; const ENotImplemented: u64 = 0; #[test] fun test_hello_world() { // pass } #[test, expected_failure(abort_code = hello_world::hello_world_tests::ENotImplemented)] fun test_hello_world_fail() { abort ENotImplemented }\n}\n*/","breadcrumbs":"Hello, World! » Tests","id":"20","title":"Tests"},"200":{"body":"A crucial part of any software development, and even more - blockchain development, is testing. Here, we will cover the basics of testing in Move and how to write and organize tests for your Move code.","breadcrumbs":"Move Basics » Testing » Testing","id":"200","title":"Testing"},"201":{"body":"Tests in Move are functions marked with the #[test] attribute. This attribute tells the compiler that the function is a test function, and it should be run when the tests are executed. Test functions are regular functions, but they must take no arguments and have no return value. They are excluded from the bytecode, and are never published. module book::testing { // Test attribute is placed before the `fun` keyword. Can be both above or // right before the `fun` keyword: `#[test] fun my_test() { ... }` // The name of the test would be `book::testing::simple_test`. #[test] fun simple_test() { let sum = 2 + 2; assert!(sum == 4, 1); } // The name of the test would be `book::testing::more_advanced_test`. #[test] fun more_advanced_test() { let sum = 2 + 2 + 2; assert!(sum == 4, 1); }\n}","breadcrumbs":"Move Basics » Testing » The #[test] attribute","id":"201","title":"The #[test] attribute"},"202":{"body":"To run tests, you can use the sui move test command. This command will first build the package in the test mode and then run all the tests found in the package. During test mode, modules from both sources/ and tests/ directories are processed, and the tests are executed. $ sui move test\n> INCLUDING DEPENDENCY Sui\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING book\n> Running Move unit tests\n> ...","breadcrumbs":"Move Basics » Testing » Running Tests","id":"202","title":"Running Tests"},"203":{"body":"Tests for fail cases can be marked with #[expected_failure]. This attribute placed on a #[test] function tells the compiler that the test is expected to fail. This is useful when you want to test that a function fails when a certain condition is met. This attribute can only be placed on a #[test] function. The attribute can take an argument for abort code, which is the expected abort code when the test fails. If the test fails with a different abort code, the test will fail. If the execution did not abort, the test will also fail. module book::testing_failure { const EInvalidArgument: u64 = 1; #[test] #[expected_failure(abort_code = 0)] fun test_fail() { abort 0 // aborts with 0 } // attributes can be grouped together #[test, expected_failure(abort_code = EInvalidArgument)] fun test_fail_1() { abort 1 // aborts with 1 }\n} The abort_code argument can use constants defined in the tests module as well as imported from other modules. This is the only case where constants can be used and \"accessed\" in other modules.","breadcrumbs":"Move Basics » Testing » Test Fail Cases with #[expected_failure]","id":"203","title":"Test Fail Cases with #[expected_failure]"},"204":{"body":"In some cases, it is helpful to give the test environment access to some of the internal functions or features. It simplifies the testing process and allows for more thorough testing. However, it is important to remember that these functions should not be included in the final package. This is where the #[test_only] attribute comes in handy. module book::testing { // Public function which uses the `secret` function. public fun multiply_by_secret(x: u64): u64 { x * secret() } /// Private function which is not available to the public. fun secret(): u64 { 100 } #[test_only] /// This function is only available for testing purposes in tests and other /// test-only functions. Mind the visibility - for `#[test_only]` it is /// common to use `public` visibility. public fun secret_for_testing(): u64 { secret() } #[test] // In the test environment we have access to the `secret_for_testing` function. fun test_multiply_by_secret() { let expected = secret_for_testing() * 2; assert!(multiply_by_secret(2) == expected, 1); }\n} Functions marked with the #[test_only] will be available to the test environment, and to the other modules if their visibility is set so.","breadcrumbs":"Move Basics » Testing » Utilities with #[test_only]","id":"204","title":"Utilities with #[test_only]"},"205":{"body":"Unit Testing in the Move Reference.","breadcrumbs":"Move Basics » Testing » Further Reading","id":"205","title":"Further Reading"},"206":{"body":"This chapter describes the Object Model of Sui. It focuses on the theory and concepts behind the Object Model, preparing you for a practical dive into Sui Storage operations and resource ownership. For convenience and easier lookup, we split the chapter into several sections, each covering a specific aspect of the Object Model. In no way should this chapter be considered a comprehensive guide to the Object Model. It is only a high-level overview of the concepts and principles behind the Object Model. For a more detailed description, refer to the Sui Documentation .","breadcrumbs":"Object Model » Object Model","id":"206","title":"Object Model"},"207":{"body":"Smart-contract programming languages have historically focused on defining and managing digital assets. For example, the ERC-20 standard in Ethereum pioneered a set of standards to interact with digital currency tokens, establishing a blueprint for creating and managing digital currencies on the blockchain. Subsequently, the introduction of the ERC-721 standard marked a significant evolution, popularising the concept of non-fungible tokens (NFTs), which represent unique, indivisible assets. These standards laid the groundwork for the complex digital assets we see today. However, Ethereum's programming model lacked a native representation of assets. In other words, externally, a Smart Contract behaved like an asset, but the language itself did not have a way to inherently represent assets. From the start, Move aimed to provide a first-class abstraction for assets, opening up new avenues for thinking about and programming assets. It is important to highlight which properties are essential for an asset: Ownership: Every asset is associated with an owner(s), mirroring the straightforward concept of ownership in the physical world—just as you own a car, you can own a digital asset. Move enforces ownership in such a way that once an asset is moved , the previous owner completely loses any control over it. This mechanism ensures a clear and secure change of ownership. Non-copyable: In the real world, unique items cannot be duplicated effortlessly. Move applies this principle to digital assets, ensuring they cannot be arbitrarily copied within the program. This property is crucial for maintaining the scarcity and uniqueness of digital assets, mirroring the intrinsic value of physical assets. Non-discardable: Just as you cannot accidentally lose a house or a car without a trace, Move ensures that no asset can be discarded or lost in a program. Instead, assets must be explicitly transferred or destroyed. This property guarantees the deliberate handling of digital assets, preventing accidental loss and ensuring accountability in asset management. Move managed to encapsulate these properties in its design, becoming an ideal language for digital assets.","breadcrumbs":"Object Model » Language for Digital Assets » Move - Language for Digital Assets","id":"207","title":"Move - Language for Digital Assets"},"208":{"body":"Move was designed to provide a first-class abstraction for digital assets, enabling developers to create and manage assets natively. Essential properties of digital assets include ownership, non-copyability, and non-discardability, which Move enforces in its design. Move's asset model mirrors real-world asset management, ensuring secure and accountable asset ownership and transfer.","breadcrumbs":"Object Model » Language for Digital Assets » Summary","id":"208","title":"Summary"},"209":{"body":"Move: A Language With Programmable Resources (pdf) by Sam Blackshear, Evan Cheng, David L. Dill, Victor Gao, Ben Maurer, Todd Nowacki, Alistair Pott, Shaz Qadeer, Rain, Dario Russi, Stephane Sezer, Tim Zakian, Runtian Zhou*","breadcrumbs":"Object Model » Language for Digital Assets » Further reading","id":"209","title":"Further reading"},"21":{"body":"Additionally, Move CLI supports the examples/ folder. The files there are treated similarly to the ones placed under the tests/ folder - they're only built in the test and dev modes. They are to be examples of how to use the package or how to integrate it with other packages. The most popular use case is for documentation purposes and library packages.","breadcrumbs":"Hello, World! » Other Folders","id":"21","title":"Other Folders"},"210":{"body":"While Move was created to manage digital assets, its initial storage model was bulky and not well-suited for many use cases. For instance, if Alice wanted to transfer an asset X to Bob, Bob had to create a new \"empty\" resource, and then Alice could transfer asset X to Bob. This process was not intuitive and presented implementation challenges, partly due to the restrictive design of Diem . Another drawback of the original design was the lack of built-in support for a \"transfer\" operation, requiring every module to implement its own storage transfer logic. Additionally, managing heterogeneous collections of assets in a single account was particularly challenging. Sui addressed these challenges by redesigning the storage and ownership model of objects to more closely resemble real-world object interactions. With a native concept of ownership and transfer , Alice can directly transfer asset X to Bob. Furthermore, Bob can maintain a collection of different assets without any preparatory steps. These improvements laid the foundation for the Object Model in Sui.","breadcrumbs":"Object Model » Evolution of Move » Evolution of Move","id":"210","title":"Evolution of Move"},"211":{"body":"Move's initial storage model was not well-suited for managing digital assets, requiring complex and restrictive transfer operations. Sui introduced the Object Model, which provides a native concept of ownership, simplifying asset management and enabling heterogeneous collections.","breadcrumbs":"Object Model » Evolution of Move » Summary","id":"211","title":"Summary"},"212":{"body":"Why We Created Sui Move by Sam Blackshear","breadcrumbs":"Object Model » Evolution of Move » Further reading","id":"212","title":"Further reading"},"213":{"body":"The Object Model in Sui can be viewed as a high-level abstraction representing digital assets as objects . These objects have their own type and associated behaviors, a unique identifier, and support native storage operations like transfer and share . Designed to be intuitive and easy to use, the Object Model enables a wide range of use cases to be implemented with ease. Objects in Sui have the following properties: Type: Every object has a type, defining the structure and behavior of the object. Objects of different types cannot be mixed or used interchangeably, ensuring objects are used correctly according to their type system. Unique ID: Each object has a unique identifier, distinguishing it from other objects. This ID is generated upon the object's creation and is immutable. It's used to track and identify objects within the system. Owner: Every object is associated with an owner, who has control over the object. Ownership on Sui can be exclusive to an account, shared across the network, or frozen, allowing read-only access without modification or transfer capabilities. We will discuss ownership in more detail in the following sections. Data: Objects encapsulate their data, simplifying management and manipulation. The data structure and operations are defined by the object's type. Version: The transition from accounts to objects is facilitated by object versioning. Traditionally, blockchains use a nonce to prevent replay attacks. In Sui, the object's version acts as a nonce, preventing replay attacks for each object. Digest: Every object has a digest, which is a hash of the object's data. The digest is used to cryptographically verify the integrity of the object's data and ensures that it has not been tampered with. The digest is calculated when the object is created and is updated whenever the object's data changes.","breadcrumbs":"Object Model » What is an Object? » What is an Object?","id":"213","title":"What is an Object?"},"214":{"body":"Objects in Sui are high-level abstractions representing digital assets. Objects have a type, unique ID, owner, data, version, and digest. The Object Model simplifies asset management and enables a wide range of use cases.","breadcrumbs":"Object Model » What is an Object? » Summary","id":"214","title":"Summary"},"215":{"body":"Object Model in Sui Documentation.","breadcrumbs":"Object Model » What is an Object? » Further reading","id":"215","title":"Further reading"},"216":{"body":"Sui introduces four distinct ownership types for objects: single owner, shared state, immutable shared state, and object-owner. Each model offers unique characteristics and suits different use cases, enhancing flexibility and control in object management.","breadcrumbs":"Object Model » Ownership » Ownership","id":"216","title":"Ownership"},"217":{"body":"The account owner, also known as the single owner model, is the foundational ownership type in Sui. Here, an object is owned by a single account, granting that account exclusive control over the object within the behaviors associated with its type. This model embodies the concept of true ownership , where the account possesses complete authority over the object, making it inaccessible to others for modification or transfer. This level of ownership clarity is a significant advantage over other blockchain systems, where ownership definitions can be more ambiguous, and smart contracts may have the ability to alter or transfer assets without the owner's consent.","breadcrumbs":"Object Model » Ownership » Account Owner (or Single Owner)","id":"217","title":"Account Owner (or Single Owner)"},"218":{"body":"Single owner model has its limitations: for example, it is very tricky to implement a marketplace for digital assets without a shared state. For a generic marketplace scenario, imagine that Alice owns an asset X, and she wants to sell it by putting it into a shared marketplace. Then Bob can come and buy the asset directly from the marketplace. The reason why this is tricky is that it is impossible to write a smart contract that would \"lock\" the asset in Alice's account and take it out when Bob buys it. First, it will be a violation of the single owner model, and second, it requires a shared access to the asset. To facilitate a problem of shared data access, Sui has introduced a shared ownership model. In this model, an object can be shared with the network. Shared objects can be read and modified by any account on the network, and the rules of interaction are defined by the implementation of the object. Typical uses for shared objects are: marketplaces, shared resources, escrows, and other scenarios where multiple accounts need access to the same state.","breadcrumbs":"Object Model » Ownership » Shared State","id":"218","title":"Shared State"},"219":{"body":"Sui also offers the frozen object model, where an object becomes permanently read-only. These immutable objects, while readable, cannot be modified or moved, providing a stable and constant state accessible to all network participants. Frozen objects are ideal for public data, reference materials, and other use cases where the state permanence is desirable.","breadcrumbs":"Object Model » Ownership » Immutable (Frozen) State","id":"219","title":"Immutable (Frozen) State"},"22":{"body":"Move is a compiled language, and as such, it requires the compilation of source files into Move Bytecode. It contains only necessary information about the module, its members, and types, and excludes comments and some identifiers (for example, for constants). To demonstrate these features, let's replace the contents of the sources/hello_world.move file with the following: /// The module `hello_world` under named address `hello_world`.\n/// The named address is set in the `Move.toml`.\nmodule hello_world::hello_world { // Imports the `String` type from the Standard Library use std::string::String; /// Returns the \"Hello, World!\" as a `String`. public fun hello_world(): String { b\"Hello, World!\".to_string() }\n} During compilation, the code is built, but not run. A compiled package only includes functions that can be called by other modules or in a transaction. We will explain these concepts in the Concepts chapter. But now, let's see what happens when we run the sui move build . # run from the `hello_world` folder\n$ sui move build # alternatively, if you didn't `cd` into it\n$ sui move build --path hello_world It should output the following message on your console. UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world During the compilation, Move Compiler automatically creates a build folder where it places all fetched and compiled dependencies as well as the bytecode for the modules of the current package. If you're using a versioning system, such as Git, build folder should be ignored. For example, you should use a .gitignore file and add build to it.","breadcrumbs":"Hello, World! » Compiling the Package","id":"22","title":"Compiling the Package"},"220":{"body":"The last ownership model in Sui is the object owner . In this model, an object is owned by another object. This feature allows creating complex relationships between objects, store large heterogenious collections, and implementing extensible and modular systems. Practically speaking, since the transactions are initiated by accounts, the transaction still accesses the parent object, but it can then access the child objects through the parent object. A use case we love to mention is a game character. Alice can own the Hero object from a game, and the Hero can own items: also represented as objects, like a \"Map\", or a \"Compass\". Alice may take the \"Map\" from the \"Hero\" object, and then send it to Bob, or sell it on a marketplace. With object owner, it becomes very natural to imagine how the assets can be structured and managed in relation to each other.","breadcrumbs":"Object Model » Ownership » Object Owner","id":"220","title":"Object Owner"},"221":{"body":"Single Owner: Objects are owned by a single account, granting exclusive control over the object. Shared State: Objects can be shared with the network, allowing multiple accounts to read and modify the object. Immutable State: Objects become permanently read-only, providing a stable and constant state. Object Owner: Objects can own other objects, enabling complex relationships and modular systems.","breadcrumbs":"Object Model » Ownership » Summary","id":"221","title":"Summary"},"222":{"body":"In the next section we will talk about transaction execution paths in Sui, and how the ownership models affect the transaction execution.","breadcrumbs":"Object Model » Ownership » Next Steps","id":"222","title":"Next Steps"},"223":{"body":"The Object Model allows for variable transaction execution paths, depending on the object's ownership type. The transaction execution path determines how the transaction is processed and validated by the network. In this section, we'll explore the different transaction execution paths in Sui and how they interact with the consensus mechanism.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path & Consensus","id":"223","title":"Fast Path & Consensus"},"224":{"body":"At its core, blockchain technology faces a fundamental concurrency challenge: multiple parties may try to modify or access the same data simultaneously in a decentralized environment. This requires a system for sequencing and validating transactions to support the network's consistency. Sui addresses this challenge through a consensus mechanism, ensuring all nodes agree on the transactions' sequence and state. Consider a marketplace scenario where Alice and Bob simultaneously attempt to purchase the same asset. The network must resolve this conflict to prevent double-spending, ensuring that at most one transaction succeeds while the other is rightfully rejected.","breadcrumbs":"Object Model » Fast Path & Consensus » Concurrency Challenge","id":"224","title":"Concurrency Challenge"},"225":{"body":"However, not all transactions require the same level of validation and consensus. For example, if Alice wants to transfer an object that she owns to Bob, the network can process this transaction without sequencing it with respect to all other transactions in the network, as only Alice has the authority to access the object. This is known as the fast path execution, where transactions accessing account-owned objects are processed quickly without the need for extensive consensus. No concurrent data access -> simpler challenge -> fast path. Another ownership model that allows for fast path execution is the immutable state . Since immutable objects cannot change, transactions involving them can be processed quickly without the need to sequence them.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path","id":"225","title":"Fast Path"},"226":{"body":"Transactions that do access shared state - on Sui it is represented with shared objects - require sequencing to ensure that the state is updated and consistented across all nodes. This is known as the execution through consensus , where transactions accessing shared objects are subject to the agreement process to maintain network consistency.","breadcrumbs":"Object Model » Fast Path & Consensus » Consensus Path","id":"226","title":"Consensus Path"},"227":{"body":"Lastly, it is important to mention that objects owned by other objects are subject to the same rules as the parent object. If the parent object is shared , the child object is also transitively shared. If the parent object is immutable, the child object is also immutable.","breadcrumbs":"Object Model » Fast Path & Consensus » Objects owned by Objects","id":"227","title":"Objects owned by Objects"},"228":{"body":"Fast Path: Transactions involving account-owned objects or immutable shared state are processed quickly without the need for extensive consensus. Consensus Path: Transactions involving shared objects require sequencing and consensus to ensure network integrity. Objects owned by Objects: Child objects inherit the ownership model of the parent object.","breadcrumbs":"Object Model » Fast Path & Consensus » Summary","id":"228","title":"Summary"},"229":{"body":"In the Object Model chapter we briefly explained the evolution of the Move language from an account-based model to an object-based model. In this chapter, we will dive deeper into the object model and explore how to use objects in your Sui applications. If you haven't read the Object Model chapter yet, we recommend you do so before continuing with this chapter.","breadcrumbs":"Using Objects » Using Objects","id":"229","title":"Using Objects"},"23":{"body":"Before we get to testing, we should add a test. Move Compiler supports tests written in Move and provides the execution environment. The tests can be placed in both the source files and in the tests/ folder. Tests are marked with the #[test] attribute and are automatically discovered by the compiler. We explain tests in depth in the Testing section. Replace the contents of the tests/hello_world_tests.move with the following content: #[test_only]\nmodule hello_world::hello_world_tests { use hello_world::hello_world; #[test] fun test_hello_world() { assert!(hello_world::hello_world() == b\"Hello, World!\".to_string(), 0); }\n} Here we import the hello_world module, and call its hello_world function to test that the output is indeed the string \"Hello, World!\". Now, that we have tests in place, let's compile the package in the test mode and run tests. Move CLI has the test command for this: $ sui move test The output should be similar to the following: INCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world\nRunning Move unit tests\n[ PASS ] 0x0::hello_world_tests::test_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 If you're running the tests outside of the package folder, you can specify the path to the package: $ sui move test --path hello_world You can also run a single or multiple tests at once by specifying a string. All the tests names containing the string will be run: $ sui move test test_hello","breadcrumbs":"Hello, World! » Running Tests","id":"23","title":"Running Tests"},"230":{"body":"In the Basic Syntax chapter we already covered two out of four abilities - Drop and Copy . They affect the behaviour of the value in a scope and are not directly related to storage. It is time to cover the key ability, which allows the struct to be stored. Historically, the key ability was created to mark the type as a key in the storage . A type with the key ability could be stored at top-level in the storage, and could be directly owned by an account or address. With the introduction of the Object Model , the key ability naturally became the defining ability for the object.","breadcrumbs":"Using Objects » Ability: Key » The Key Ability","id":"230","title":"The Key Ability"},"231":{"body":"A struct with the key ability is considered an object and can be used in the storage functions. The Sui Verifier will require the first field of the struct to be named id and have the type UID. public struct Object has key { id: UID, // required name: String,\n} /// Creates a new Object with a Unique ID\npublic fun new(name: String, ctx: &mut TxContext): Object { Object { id: object::new(ctx), // creates a new UID name, }\n} A struct with the key ability is still a struct, and can have any number of fields and associated functions. There is no special handling or syntax for packing, accessing or unpacking the struct. However, because the first field of an object struct must be of type UID - a non-copyable and non-droppable type (we will get to it very soon!), the struct transitively cannot have drop and copy abilities. Thus, the object is non-discardable by design.","breadcrumbs":"Using Objects » Ability: Key » Object Definition","id":"231","title":"Object Definition"},"232":{"body":"Due to the UID requirement for types with key, none of the native types in Move can have the key ability, nor can any of the Standard Library types. The key ability is only present in the Sui Framework and custom types.","breadcrumbs":"Using Objects » Ability: Key » Types with the key Ability","id":"232","title":"Types with the key Ability"},"233":{"body":"Key ability defines the object in Move, and objects are intended to be stored . In the next section we present the sui::transfer module, which provides native storage functions for objects.","breadcrumbs":"Using Objects » Ability: Key » Next Steps","id":"233","title":"Next Steps"},"234":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Key » Further reading","id":"234","title":"Further reading"},"235":{"body":"The module that defines main storage operations is sui::transfer. It is implicitly imported in all packages that depend on the Sui Framework , so, like other implicitly imported modules (e.g. std::option or std::vector), it does not require adding a use statement.","breadcrumbs":"Using Objects » Storage Functions » Storage Functions","id":"235","title":"Storage Functions"},"236":{"body":"The transfer module provides functions to perform all three storage operations matching ownership types which we explained before: On this page we will only talk about so-called restricted storage operations, later we will cover public ones, after the store ability is introduced. Transfer - send an object to an address, put it into account owned state; Share - put an object into a shared state, so it is available to everyone; Freeze - put an object into immutable state, so it becomes a public constant and can never change. The transfer module is a go-to for most of the storage operations, except a special case with Dynamic Fields awaits us in the next chapter.","breadcrumbs":"Using Objects » Storage Functions » Overview","id":"236","title":"Overview"},"237":{"body":"In the Ownership and Scope and References chapters, we covered the basics of ownership and references in Move. It is important that you understand these concepts when using storage functions. Here is a quick recap of the most important points: The move semantics in Move means that the value is moved from one scope to another. In other words, if an instance of a type is passed to a function by value , it is moved to the function scope and can't be accessed in the caller scope anymore. To maintain the ownership of the value, you can pass it by reference . Either by immutable reference &T or mutable reference &mut T. Then the value is borrowed and can be accessed in the caller scope, however the owner stays the same. /// Moved by value\npublic fun take(value: T) { /* value is moved here! */ abort 0 } /// For immutable reference\npublic fun borrow(value: &T) { /* value is borrowed here! can be read */ abort 0 } /// For mutable reference\npublic fun borrow_mut(value: &mut T) { /* value is mutably borrowed here! */ abort 0 }","breadcrumbs":"Using Objects » Storage Functions » Ownership and References: A Quick Recap","id":"237","title":"Ownership and References: A Quick Recap"},"238":{"body":"The transfer::transfer function is a public function used to transfer an object to another address. Its signature is as follows, only accepts a type with the key ability and an address of the recipient. Please, note that the object is passed into the function by value , therefore it is moved to the function scope and then moved to the recipient address: // File: sui-framework/sources/transfer.move\npublic fun transfer(obj: T, recipient: address); In the next example, you can see how it can be used in a module that defines and sends an object to the transaction sender. module book::transfer_to_sender { /// A struct with `key` is an object. The first field is `id: UID`! public struct AdminCap has key { id: UID } /// `init` function is a special function that is called when the module /// is published. It is a good place to create application objects. fun init(ctx: &mut TxContext) { // Create a new `AdminCap` object, in this scope. let admin_cap = AdminCap { id: object::new(ctx) }; // Transfer the object to the transaction sender. transfer::transfer(admin_cap, ctx.sender()); // admin_cap is gone! Can't be accessed anymore. } /// Transfers the `AdminCap` object to the `recipient`. Thus, the recipient /// becomes the owner of the object, and only they can access it. public fun transfer_admin_cap(cap: AdminCap, recipient: address) { transfer::transfer(cap, recipient); }\n} When the module is published, the init function will get called, and the AdminCap object which we created there will be transferred to the transaction sender. The ctx.sender() function returns the sender address for the current transaction. Once the AdminCap has been transferred to the sender, for example, to 0xa11ce, the sender, and only the sender, will be able to access the object. The object is now account owned . Account owned objects are a subject to true ownership - only the account owner can access them. This is a fundamental concept in the Sui storage model. Let's extend the example with a function that uses AdminCap to authorize a mint of a new object and its transfer to another address: /// Some `Gift` object that the admin can `mint_and_transfer`.\npublic struct Gift has key { id: UID } /// Creates a new `Gift` object and transfers it to the `recipient`.\npublic fun mint_and_transfer( _: &AdminCap, recipient: address, ctx: &mut TxContext\n) { let gift = Gift { id: object::new(ctx) }; transfer::transfer(gift, recipient);\n} The mint_and_transfer function is a public function that \"could\" be called by anyone, but it requires an AdminCap object to be passed as the first argument by reference. Without it, the function will not be callable. This is a simple way to restrict access to privileged functions called Capability . Because the AdminCap object is account owned , only 0xa11ce will be able to call the mint_and_transfer function. The Gifts sent to recipients will also be account owned , each gift being unique and owned exclusively by the recipient. A quick recap: transfer function is used to send an object to an address; The object becomes account owned and can only be accessed by the recipient; Functions can be gated by requiring an object to be passed as an argument, creating a capability .","breadcrumbs":"Using Objects » Storage Functions » Transfer","id":"238","title":"Transfer"},"239":{"body":"The transfer::freeze_object function is public function used to put an object into an immutable state. Once an object is frozen , it can never be changed, and it can be accessed by anyone by immutable reference. The function signature is as follows, only accepts a type with the key ability . Just like all other storage functions, it takes the object by value : // File: sui-framework/sources/transfer.move\npublic fun freeze_object(obj: T); Let's expand on the previous example and add a function that allows the admin to create a Config object and freeze it: /// Some `Config` object that the admin can `create_and_freeze`.\npublic struct Config has key { id: UID, message: String\n} /// Creates a new `Config` object and freezes it.\npublic fun create_and_freeze( _: &AdminCap, message: String, ctx: &mut TxContext\n) { let config = Config { id: object::new(ctx), message }; // Freeze the object so it becomes immutable. transfer::freeze_object(config);\n} /// Returns the message from the `Config` object.\n/// Can access the object by immutable reference!\npublic fun message(c: &Config): String { c.message } Config is an object that has a message field, and the create_and_freeze function creates a new Config and freezes it. Once the object is frozen, it can be accessed by anyone by immutable reference. The message function is a public function that returns the message from the Config object. Config is now publicly available by its ID, and the message can be read by anyone. Function definitions are not connected to the object's state. It is possible to define a function that takes a mutable reference to an object that is used as frozen. However, it won't be callable on a frozen object. The message function can be called on an immutable Config object, however, two functions below are not callable on a frozen object: // === Functions below can't be called on a frozen object! === /// The function can be defined, but it won't be callable on a frozen object.\n/// Only immutable references are allowed.\npublic fun message_mut(c: &mut Config): &mut String { &mut c.message } /// Deletes the `Config` object, takes it by value.\n/// Can't be called on a frozen object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} To summarize: transfer::freeze_object function is used to put an object into an immutable state; Once an object is frozen , it can never be changed, deleted or transferred, and it can be accessed by anyone by immutable reference;","breadcrumbs":"Using Objects » Storage Functions » Freeze","id":"239","title":"Freeze"},"24":{"body":"In this section, we explained the basics of a Move package: its structure, the manifest, the build, and test flows. On the next page , we will write an application and see how the code is structured and what the language can do.","breadcrumbs":"Hello, World! » Next Steps","id":"24","title":"Next Steps"},"240":{"body":"Since the transfer::freeze_object signature accepts any type with the key ability, it can take an object that was created in the same scope, but it can also take an object that was owned by an account. This means that the freeze_object function can be used to freeze an object that was transferred to the sender. For security concerns, we would not want to freeze the AdminCap object - it would be a security risk to allow access to it to anyone. However, we can freeze the Gift object that was minted and transferred to the recipient: Single Owner -> Immutable conversion is possible! /// Freezes the `Gift` object so it becomes immutable.\npublic fun freeze_gift(gift: Gift) { transfer::freeze_object(gift);\n}","breadcrumbs":"Using Objects » Storage Functions » Owned -> Frozen","id":"240","title":"Owned -> Frozen"},"241":{"body":"The transfer::share_object function is a public function used to put an object into a shared state. Once an object is shared , it can be accessed by anyone by a mutable reference (hence, immutable too). The function signature is as follows, only accepts a type with the key ability : // File: sui-framework/sources/transfer.move\npublic fun share_object(obj: T); Once an object is shared , it is publicly available as a mutable reference.","breadcrumbs":"Using Objects » Storage Functions » Share","id":"241","title":"Share"},"242":{"body":"While the shared object can't normally be taken by value, there is one special case where it can - if the function that takes it deletes the object. This is a special case in the Sui storage model, and it is used to allow the deletion of shared objects. To show how it works, we will create a function that creates and shares a Config object and then another one that deletes it: /// Creates a new `Config` object and shares it.\npublic fun create_and_share(message: String, ctx: &mut TxContext) { let config = Config { id: object::new(ctx), message }; // Share the object so it becomes shared. transfer::share_object(config);\n} The create_and_share function creates a new Config object and shares it. The object is now publicly available as a mutable reference. Let's create a function that deletes the shared object: /// Deletes the `Config` object, takes it by value.\n/// Can be called on a shared object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} The delete_config function takes the Config object by value and deletes it, and the Sui Verifier would allow this call. However, if the function returned the Config object back or attempted to freeze or transfer it, the Sui Verifier would reject the transaction. // Won't work!\npublic fun transfer_shared(c: Config, to: address) { transfer::transfer(c, to);\n} To summarize: share_object function is used to put an object into a shared state; Once an object is shared , it can be accessed by anyone by a mutable reference; Shared objects can be deleted, but they can't be transferred or frozen.","breadcrumbs":"Using Objects » Storage Functions » Special Case: Shared Object Deletion","id":"242","title":"Special Case: Shared Object Deletion"},"243":{"body":"Now that you know main features of the transfer module, you can start building more complex applications on Sui that involve storage operations. In the next chapter, we will cover the Store Ability which allows storing data inside objects and relaxes transfer restrictions which we barely touched on here. And after that we will cover the UID and ID types which are the most important types in the Sui storage model.","breadcrumbs":"Using Objects » Storage Functions » Next Steps","id":"243","title":"Next Steps"},"244":{"body":"Now that you have an understanding of top-level storage functions which are enabled by the key ability, we can talk about the last ability in the list - store.","breadcrumbs":"Using Objects » Ability: Store » Ability: Store","id":"244","title":"Ability: Store"},"245":{"body":"The store is a special ability that allows a type to be stored in objects. This ability is required for the type to be used as a field in a struct that has the key ability. Another way to put it is that the store ability allows the value to be wrapped in an object. The store ability also relaxes restrictions on transfer operations. We talk about it more in the Restricted and Public Transfer section.","breadcrumbs":"Using Objects » Ability: Store » Definition","id":"245","title":"Definition"},"246":{"body":"In previous sections we already used types with the key ability: all objects must have a UID field, which we used in examples; we also used the Storable type as a part of the Config struct. The Config type also has the store ability. /// This type has the `store` ability.\npublic struct Storable has store {} /// Config contains a `Storable` field which must have the `store` ability.\npublic struct Config has key, store { id: UID, stores: Storable,\n} /// MegaConfig contains a `Config` field which has the `store` ability.\npublic struct MegaConfig has key { id: UID, config: Config, // there it is!\n}","breadcrumbs":"Using Objects » Ability: Store » Example","id":"246","title":"Example"},"247":{"body":"All native types (except for references) in Move have the store ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the store ability as well. This includes: Option String TypeName","breadcrumbs":"Using Objects » Ability: Store » Types with the store Ability","id":"247","title":"Types with the store Ability"},"248":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Store » Further reading","id":"248","title":"Further reading"},"249":{"body":"The UID type is defined in the sui::object module and is a wrapper around an ID which, in turn, wraps the address type. The UIDs on Sui are guaranteed to be unique, and can't be reused after the object was deleted. // File: sui-framework/sources/object.move\n/// UID is a unique identifier of an object\npublic struct UID has store { id: ID\n} /// ID is a wrapper around an address\npublic struct ID has store, drop { bytes: address\n}","breadcrumbs":"Using Objects » UID and ID » UID and ID","id":"249","title":"UID and ID"},"25":{"body":"Package Manifest section Package in The Move Reference","breadcrumbs":"Hello, World! » Further Reading","id":"25","title":"Further Reading"},"250":{"body":"UID is derived from the tx_hash and an index which is incremented for each new UID. The derive_id function is implemented in the sui::tx_context module, and that is why TxContext is required for UID generation. Sui Verifier will not allow using a UID that wasn't created in the same function. That prevents UIDs from being pre-generated and reused after the object was unpacked. New UID is created with the object::new(ctx) function. It takes a mutable reference to TxContext, and returns a new UID. let ctx = &mut tx_context::dummy();\nlet uid = object::new(ctx); On Sui, UID acts as a representation of an object, and allows defining behaviors and features of an object. One of the key-features - Dynamic Fields - is possible because of the UID type being explicit. Additionally, it allows the Transfer To Object (TTO) which we will explain later in this chapter.","breadcrumbs":"Using Objects » UID and ID » Fresh UID generation:","id":"250","title":"Fresh UID generation:"},"251":{"body":"The UID type is created with the object::new(ctx) function, and it is destroyed with the object::delete(uid) function. The object::delete consumes the UID by value , and it is impossible to delete it unless the value was unpacked from an Object. let ctx = &mut tx_context::dummy(); let char = Character { id: object::new(ctx)\n}; let Character { id } = char;\nid.delete();","breadcrumbs":"Using Objects » UID and ID » UID lifecycle","id":"251","title":"UID lifecycle"},"252":{"body":"The UID does not need to be deleted immediately after the object struct is unpacked. Sometimes it may carry Dynamic Fields or objects transferred to it via Transfer To Object . In such cases, the UID may be kept and stored in a separate object.","breadcrumbs":"Using Objects » UID and ID » Keeping the UID","id":"252","title":"Keeping the UID"},"253":{"body":"The ability to return the UID of an object may be utilized in pattern called proof of deletion . It is a rarely used technique, but it may be useful in some cases, for example, the creator or an application may incentivize the deletion of an object by exchanging the deleted IDs for some reward. In framework development this method could be used to ignore / bypass certain restrictions on \"taking\" the object. If there's a container that enforces certain logic on transfers, like Kiosk does, there could be a special scenario of skipping the checks by providing a proof of deletion. This is one of the open topics for exploration and research, and it may be used in various ways.","breadcrumbs":"Using Objects » UID and ID » Proof of Deletion","id":"253","title":"Proof of Deletion"},"254":{"body":"When talking about UID we should also mention the ID type. It is a wrapper around the address type, and is used to represent an address-pointer. Usually, ID is used to point at an object, however, there's no restriction, and no guarantee that the ID points to an existing object. ID can be received as a transaction argument in a Transaction Block . Alternatively, ID can be created from an address value using to_id() function.","breadcrumbs":"Using Objects » UID and ID » ID","id":"254","title":"ID"},"255":{"body":"TxContext provides the fresh_object_address function which can be utilized to create unique addresses and ID - it may be useful in some application that assign unique identifiers to user actions - for example, an order_id in a marketplace.","breadcrumbs":"Using Objects » UID and ID » fresh_object_address","id":"255","title":"fresh_object_address"},"256":{"body":"Storage Operations that we described in the previous sections are restricted by default - they can only be called in the module defining the object. In other terms, the type must be internal to the module to be used in storage operations. This restriction is implemented in the Sui Verifier and is enforced at the bytecode level. However, to allow objects to be transferred and stored in other modules, these restrictions can be relaxed. The sui::transfer module offers a set of public_* functions that allow calling storage operations in other modules. The functions are prefixed with public_ and are available to all modules and transactions.","breadcrumbs":"Using Objects » Restricted and Public Transfer » Restricted and Public Transfer","id":"256","title":"Restricted and Public Transfer"},"257":{"body":"The sui::transfer module provides the following public functions. They are almost identical to the ones we already covered, but can be called from any module. // File: sui-framework/sources/transfer.move\n/// Public version of the `transfer` function.\npublic fun public_transfer(object: T, to: address) {} /// Public version of the `share_object` function.\npublic fun public_share_object(object: T) {} /// Public version of the `freeze_object` function.\npublic fun public_freeze_object(object: T) {} To illustrate the usage of these functions, consider the following example: module A defines an ObjectK with key and ObjectKS with key + store abilities, and module B tries to implement a transfer function for these objects. In this example we use transfer::transfer, but the behaviour is identical for share_object and freeze_object functions. /// Defines `ObjectK` and `ObjectKS` with `key` and `key + store`\n/// abilities respectively\nmodule book::transfer_a { public struct ObjectK has key { id: UID } public struct ObjectKS has key, store { id: UID }\n} /// Imports the `ObjectK` and `ObjectKS` types from `transfer_a` and attempts\n/// to implement different `transfer` functions for them\nmodule book::transfer_b { // types are not internal to this module use book::transfer_a::{ObjectK, ObjectKS}; // Fails! ObjectK is not `store`, and ObjectK is not internal to this module public fun transfer_k(k: ObjectK, to: address) { sui::transfer::transfer(k, to); } // Fails! ObjectKS has `store` but the function is not public public fun transfer_ks(ks: ObjectKS, to: address) { sui::transfer::transfer(ks, to); } // Fails! ObjectK is not `store`, `public_transfer` requires `store` public fun public_transfer_k(k: ObjectK) { sui::transfer::public_transfer(k); } // Works! ObjectKS has `store` and the function is public public fun public_transfer_ks(y: ObjectKS, to: address) { sui::transfer::public_transfer(y, to); }\n} To expand on the example above: transfer_k fails because ObjectK is not internal to module transfer_b transfer_ks fails because ObjectKS is not internal to module transfer_b public_transfer_k fails because ObjectK does not have the store ability public_transfer_ks works because ObjectKS has the store ability and the transfer is public","breadcrumbs":"Using Objects » Restricted and Public Transfer » Public Storage Operations","id":"257","title":"Public Storage Operations"},"258":{"body":"The decision on whether to add the store ability to a type should be made carefully. On one hand, it is de-facto a requirement for the type to be usable by other applications. On the other hand, it allows wrapping and changing the intended storage model. For example, a character may be intended to be owned by accounts, but with the store ability it can be frozen (cannot be shared - this transition is restricted).","breadcrumbs":"Using Objects » Restricted and Public Transfer » Implications of store","id":"258","title":"Implications of store"},"259":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"259","title":"Advanced Programmability"},"26":{"body":"In the previous section we created a new package and demonstrated the basic flow of creating, building, and testing a Move package. In this section, we will write a simple application that uses the storage model and can be interacted with. To do this, we will create a simple todo list application.","breadcrumbs":"Hello, Sui! » Hello, Sui!","id":"26","title":"Hello, Sui!"},"260":{"body":"Every transaction has the execution context. The context is a set of predefined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: // File: sui-framework/sources/tx_context.move\n/// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"260","title":"Transaction Context"},"261":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let me = ctx.sender(); let epoch = ctx.epoch(); let digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"261","title":"Reading the Transaction Context"},"262":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: // File: sui-framework/sources/tx_context.move\nnative fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"262","title":"Mutability"},"263":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. // File: sui-framework/sources/tx_context.move\n/// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"263","title":"Generating unique addresses"},"264":{"body":"A common use case in many applications is to run certain code just once when the package is published. Imagine a simple store module that needs to create the main Store object upon its publication. In Sui, this is achieved by defining an init function within the module. This function will automatically be called when the module is published. All of the modules' init functions are called during the publishing process. Currently, this behavior is limited to the publish command and does not extend to package upgrades . module book::shop { /// The Capability which grants the Shop owner the right to manage /// the shop. public struct ShopOwnerCap has key, store { id: UID } /// The singular Shop itself, created in the `init` function. public struct Shop has key { id: UID, /* ... */ } // Called only once, upon module publication. It must be // private to prevent external invocation. fun init(ctx: &mut TxContext) { // Transfers the ShopOwnerCap to the sender (publisher). transfer::transfer(ShopOwnerCap { id: object::new(ctx) }, ctx.sender()); // Shares the Shop object. transfer::share_object(Shop { id: object::new(ctx) }); }\n} In the same package, another module can have its own init function, encapsulating distinct logic. // In the same package as the `shop` module\nmodule book::bank { public struct Bank has key { id: UID, /* ... */ } fun init(ctx: &mut TxContext) { transfer::share_object(Bank { id: object::new(ctx) }); }\n}","breadcrumbs":"Advanced Programmability » Module Initializer » Module Initializer","id":"264","title":"Module Initializer"},"265":{"body":"The function is called on publish, if it is present in the module and follows the rules: The function has to be named init, be private and have no return values. Takes one or two arguments: One Time Witness (optional) and TxContext . With `TxContext always being the last argument. fun init(ctx: &mut TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &mut TxContext) { /* ... */ } TxContext can also be passed as immutable reference: &TxContext. However, practically speaking, it should always be &mut TxContext since the init function can't access the onchain state and to create new objects it requires the mutable reference to the context. fun init(ctx: &TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &TxContext) { /* ... */ }","breadcrumbs":"Advanced Programmability » Module Initializer » init features","id":"265","title":"init features"},"266":{"body":"While init function can be used to create sensitive objects once, it is important to know that the same object (eg. StoreOwnerCap from the first example) can still be created in another function. Especially given that new functions can be added to the module during an upgrade. So the init function is a good place to set up the initial state of the module, but it is not a security measure on its own. There are ways to guarantee that the object was created only once, such as the One Time Witness . And there are ways to limit or disable the upgrade of the module, which we will cover in the Package Upgrades chapter.","breadcrumbs":"Advanced Programmability » Module Initializer » Trust and security","id":"266","title":"Trust and security"},"267":{"body":"As follows from the definition, the init function is guaranteed to be called only once when the module is published. So it is a good place to put the code that initializes module's objects and sets up the environment and configuration. For example, if there's a Capability which is required for certain actions, it should be created in the init function. In the next chapter we will talk about the Capability pattern in more detail.","breadcrumbs":"Advanced Programmability » Module Initializer » Next steps","id":"267","title":"Next steps"},"268":{"body":"In programming, a capability is a token that gives the owner the right to perform a specific action. It is a pattern that is used to control access to resources and operations. A simple example of a capability is a key to a door. If you have the key, you can open the door. If you don't have the key, you can't open the door. A more practical example is an Admin Capability which allows the owner to perform administrative operations, which regular users cannot.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Pattern: Capability","id":"268","title":"Pattern: Capability"},"269":{"body":"In the Sui Object Model , capabilities are represented as objects. An owner of an object can pass this object to a function to prove that they have the right to perform a specific action. Due to strict typing, the function taking a capability as an argument can only be called with the correct capability. There's a convention to name capabilities with the Cap suffix, for example, AdminCap or KioskOwnerCap. module book::capability { use std::string::String; use sui::event; /// The capability granting the application admin the right to create new /// accounts in the system. public struct AdminCap has key, store { id: UID } /// The user account in the system. public struct Account has key, store { id: UID, name: String } /// A simple `Ping` event with no data. public struct Ping has copy, drop { by: ID } /// Creates a new account in the system. Requires the `AdminCap` capability /// to be passed as the first argument. public fun new(_: &AdminCap, name: String, ctx: &mut TxContext): Account { Account { id: object::new(ctx), name, } } /// Account, and any other objects, can also be used as a Capability in the /// application. For example, to emit an event. public fun send_ping(acc: &Account) { event::emit(Ping { by: acc.id.to_inner() }) } /// Updates the account name. Can only be called by the `Account` owner. public fun update(account: &mut Account, name: String) { account.name = name; }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Capability is an Object","id":"269","title":"Capability is an Object"},"27":{"body":"Following the same flow as in Hello, World! , we will create a new package called todo_list. $ sui move new todo_list","breadcrumbs":"Hello, Sui! » Create a New Package","id":"27","title":"Create a New Package"},"270":{"body":"A very common practice is to create a single AdminCap object on package publish. This way, the application can have a setup phase where the admin account prepares the state of the application. module book::admin_cap { /// The capability granting the admin privileges in the system. /// Created only once in the `init` function. public struct AdminCap has key { id: UID } /// Create the AdminCap object on package publish and transfer it to the /// package owner. fun init(ctx: &mut TxContext) { transfer::transfer( AdminCap { id: object::new(ctx) }, ctx.sender() ) }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Using init for Admin Capability","id":"270","title":"Using init for Admin Capability"},"271":{"body":"Utilizing objects as capabilities is a relatively new concept in blockchain programming. And in other smart-contract languages, authorization is often performed by checking the address of the sender. This pattern is still viable on Sui, however, overall recommendation is to use capabilities for better security, discoverability, and code organization. Let's look at how the new function that creates a user would look like if it was using the address check: /// Error code for unauthorized access.\nconst ENotAuthorized: u64 = 0; /// The application admin address.\nconst APPLICATION_ADMIN: address = @0xa11ce; /// Creates a new user in the system. Requires the sender to be the application\n/// admin.\npublic fun new(ctx: &mut TxContext): User { assert!(ctx.sender() == APPLICATION_ADMIN, ENotAuthorized); User { id: object::new(ctx) }\n} And now, let's see how the same function would look like with the capability: /// Grants the owner the right to create new users in the system.\npublic struct AdminCap {} /// Creates a new user in the system. Requires the `AdminCap` capability to be\n/// passed as the first argument.\npublic fun new(_: &AdminCap, ctx: &mut TxContext): User { User { id: object::new(ctx) }\n} Using capabilities has several advantages over the address check: Migration of admin rights is easier with capabilities due to them being objects. In case of address, if the admin address changes, all the functions that check the address need to be updated - hence, require a package upgrade . Function signatures are more descriptive with capabilities. It is clear that the new function requires the AdminCap to be passed as an argument. And this function can't be called without it. Object Capabilities don't require extra checks in the function body, and hence, decrease the chance of a developer mistake. An owned Capability also serves in discovery. The owner of the AdminCap can see the object in their account (via a Wallet or Explorer), and know that they have the admin rights. This is less transparent with the address check. However, the address approach has its own advantages. For example, if an address is multisig, and transaction building gets more complex, it might be easier to check the address. Also, if there's a central object of the application that is used in every function, it can store the admin address, and this would simplify migration. The central object approach is also valuable for revokable capabilities, where the admin can revoke the capability from the user.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Address check vs Capability","id":"271","title":"Address check vs Capability"},"272":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"272","title":"Epoch and Time"},"273":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are critical if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"273","title":"Epoch"},"274":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object, but a transaction attempting to access it mutably will fail. This limitation allows parallel access to the Clock object, which is important for maintaining performance. // File: sui-framework/clock.move\n/// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. use sui::clock::Clock; /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"274","title":"Time"},"275":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the vector-based collection types offered by the Sui Framework .","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"275","title":"Collections"},"276":{"body":"While we have previously covered the vector type in the vector section , it is worth going over it again in a new context. This time we will cover the usage of the vector type in objects and how it can be used in an application. module book::collections_vector { use std::string::String; /// The Book that can be sold by a `BookStore` public struct Book has key, store { id: UID, name: String } /// The BookStore that sells `Book`s public struct BookStore has key, store { id: UID, books: vector }\n}","breadcrumbs":"Advanced Programmability » Collections » Vector","id":"276","title":"Vector"},"277":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections_vec_set { use sui::vec_set::{Self, VecSet}; public struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let mut set = vec_set::singleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(&1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(&2); // remove an item from the set }\n} VecSet will fail on attempt to insert a an item that already exists in the set.","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"277","title":"VecSet"},"278":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; public struct Metadata has drop { name: String, /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(&2), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"278","title":"VecMap"},"279":{"body":"Standard collection types are a great way to store typed data with guaranteed safety and consistency. However, they are limited by the type of data they can store - the type system won't allow you to store a wrong type in a collection; and they're limited in size - by the object size limit. They will work for relatively small-sized sets and lists, but for larger collections you may need to use a different approach. Another limitations on collection types is inability to compare them. Because the order of insertion is not guaranteed, an attempt to compare a VecSet to another VecSet may not yield the expected results. This behavior is caught by the linter and will emit a warning: Comparing collections of type 'sui::vec_set::VecSet' may yield unexpected result let mut set1 = vec_set::empty();\nset1.insert(1);\nset1.insert(2); let mut set2 = vec_set::empty();\nset2.insert(2);\nset2.insert(1); assert!(set1 == set2, 0); In the example above, the comparison will fail because the order of insertion is not guaranteed, and the two VecSet instances may have different orders of elements. And the comparison will fail even if the two VecSet instances contain the same elements.","breadcrumbs":"Advanced Programmability » Collections » Limitations","id":"279","title":"Limitations"},"28":{"body":"To speed things up and focus on the application logic, we will provide the code for the todo list application. Replace the contents of the sources/todo_list.move file with the following code: Note: while the contents may seem overwhelming at first, we will break it down in the following sections. Try to focus on what's at hand right now. /// Module: todo_list\nmodule todo_list::todo_list { use std::string::String; /// List of todos. Can be managed by the owner and shared with others. public struct TodoList has key, store { id: UID, items: vector } /// Create a new todo list. public fun new(ctx: &mut TxContext): TodoList { let list = TodoList { id: object::new(ctx), items: vector[] }; (list) } /// Add a new todo item to the list. public fun add(list: &mut TodoList, item: String) { list.items.push_back(item); } /// Remove a todo item from the list by index. public fun remove(list: &mut TodoList, index: u64): String { list.items.remove(index) } /// Delete the list and the capability to manage it. public fun delete(list: TodoList) { let TodoList { id, items: _ } = list; id.delete(); } /// Get the number of items in the list. public fun length(list: &TodoList): u64 { list.items.length() }\n}","breadcrumbs":"Hello, Sui! » Add the code","id":"28","title":"Add the code"},"280":{"body":"Vector is a native type that allows storing a list of items. VecSet is built on top of vector and allows storing sets of unique items. VecMap is used to store key-value pairs in a map-like structure. Vector-based collections are strictly typed and limited by the object size limit and are best suited for small-sized sets and lists.","breadcrumbs":"Advanced Programmability » Collections » Summary","id":"280","title":"Summary"},"281":{"body":"In the next section we will cover Dynamic Fields - an important primitive that allows for Dynamic Collections - a way to store large collections of data in a more flexible, yet more expensive way.","breadcrumbs":"Advanced Programmability » Collections » Next Steps","id":"281","title":"Next Steps"},"282":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages. However, unlike a Map which in Move would be strictly typed (we have covered it in the Collections section), dynamic fields allow attaching objects of any type. A similar approach from the world of frontend development would be a JavaScript Object type which allows storing any type of data dynamically. There's no limit to the number of dynamic fields that can be attached to an object. Thus, dynamic fields can be used to store large amounts of data that don't fit into the object limit size. Dynamic Fields allow for a wide range of applications, from splitting data into smaller parts to avoid object size limit to attaching objects as a part of application logic.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"282","title":"Dynamic Fields"},"283":{"body":"Dynamic Fields are defined in the sui::dynamic_field module of the Sui Framework . They are attached to object's UID via a name , and can be accessed using that name. There can be only one field with a given name attached to an object. File: sui-framework/sources/dynamic_field.move /// Internal object used for storing the field and value\npublic struct Field has key { /// Determined by the hash of the object ID, the field name /// value and it's type, i.e. hash(parent.id || name || Name) id: UID, /// The value for the name of this field name: Name, /// The value bound to this field value: Value,\n} As the definition shows, dynamic fields are stored in an internal Field object, which has the UID generated in a deterministic way based on the object ID, the field name, and the field type. The Field object contains the field name and the value bound to it. The constraints on the Name and Value type parameters define the abilities that the key and value must have.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Definition","id":"283","title":"Definition"},"284":{"body":"The methods available for dynamic fields are straightforward: a field can be added with add, removed with remove, and read with borrow and borrow_mut. Additionally, the exists_ method can be used to check if a field exists (for stricter checks with type, there is an exists_with_type method). module book::dynamic_collection { // a very common alias for `dynamic_field` is `df` since the // module name is quite long use sui::dynamic_field as df; use std::string::String; /// The object that we will attach dynamic fields to. public struct Character has key { id: UID } // List of different accessories that can be attached to a character. // They must have the `store` ability. public struct Hat has key, store { id: UID, color: u32 } public struct Mustache has key, store { id: UID } #[test] fun test_character_and_accessories() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Attach a hat to the character's UID df::add( &mut character.id, b\"hat_key\", Hat { id: object::new(ctx), color: 0xFF0000 } ); // Similarly, attach a mustache to the character's UID df::add( &mut character.id, b\"mustache_key\", Mustache { id: object::new(ctx) } ); // Check that the hat and mustache are attached to the character // assert!(df::exists_(&character.id, b\"hat_key\"), 0); assert!(df::exists_(&character.id, b\"mustache_key\"), 1); // Modify the color of the hat let hat: &mut Hat = df::borrow_mut(&mut character.id, b\"hat_key\"); hat.color = 0x00FF00; // Remove the hat and mustache from the character let hat: Hat = df::remove(&mut character.id, b\"hat_key\"); let mustache: Mustache = df::remove(&mut character.id, b\"mustache_key\"); // Check that the hat and mustache are no longer attached to the character assert!(!df::exists_(&character.id, b\"hat_key\"), 0); assert!(!df::exists_(&character.id, b\"mustache_key\"), 1); sui::test_utils::destroy(character); sui::test_utils::destroy(mustache); sui::test_utils::destroy(hat); }\n} In the example above, we define a Character object and two different types of accessories that could never be put together in a vector. However, dynamic fields allow us to store them together in a single object. Both objects are attached to the Character via a vector (bytestring literal), and can be accessed using their respective keys. As you can see, when we attached the accessories to the Character, we passed them by value . In other words, both values were moved to a new scope, and their ownership was transferred to the Character object. If we changed the ownership of Character object, the accessories would have been moved with it. And the last important property of dynamic fields we should highlight is that they are accessed through their parent . This means that the Hat and Mustache objects are not directly accessible and follow the same rules as the parent object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"284","title":"Usage"},"285":{"body":"Dynamic fields allow objects to carry data of any type, including those defined in other modules. This is possible due to their generic nature and relatively weak constraints on the type parameters. Let's illustrate this by attaching a few different values to a Character object. let mut character = Character { id: object::new(ctx) }; // Attach a `String` via a `vector` name\ndf::add(&mut character.id, b\"string_key\", b\"Hello, World!\".to_string()); // Attach a `u64` via a `u32` name\ndf::add(&mut character.id, 1000u32, 1_000_000_000u64); // Attach a `bool` via a `bool` name\ndf::add(&mut character.id, true, false); In this example we showed how different types can be used for both name and the value of a dynamic field. The String is attached via a vector name, the u64 is attached via a u32 name, and the bool is attached via a bool name. Anything is possible with dynamic fields!","breadcrumbs":"Advanced Programmability » Dynamic Fields » Foreign Types as Dynamic Fields","id":"285","title":"Foreign Types as Dynamic Fields"},"286":{"body":"To prevent orphaned dynamic fields, please, use Dynamic Collection Types such as Bag as they track the dynamic fields and won't allow unpacking if there are attached fields. The object::delete() function, which is used to delete a UID, does not track the dynamic fields, and cannot prevent dynamic fields from becoming orphaned. Once the parent UID is deleted, the dynamic fields are not automatically deleted, and they become orphaned. This means that the dynamic fields are still stored in the blockchain, but they will never become accessible again. let hat = Hat { id: object::new(ctx), color: 0xFF0000 };\nlet mut character = Character { id: object::new(ctx) }; // Attach a `Hat` via a `vector` name\ndf::add(&mut character.id, b\"hat_key\", hat); // ! DO NOT do this in your code\n// ! Danger - deleting the parent object\nlet Character { id } = character;\nid.delete(); // ...`Hat` is now stuck in a limbo, it will never be accessible again Orphaned objects are not a subject to storage rebate, and the storage fees will remain unclaimed. One way to avoid orphaned dynamic fields during unpacking of an object is to return the UID and store it somewhere temporarily until the dynamic fields are removed and handled properly.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Orphaned Dynamic Fields","id":"286","title":"Orphaned Dynamic Fields"},"287":{"body":"In the examples above, we used primitive types as field names since they have the required set of abilities. But dynamic fields get even more interesting when we use custom types as field names. This allows for a more structured way of storing data, and also allows for protecting the field names from being accessed by other modules. /// A custom type with fields in it.\npublic struct AccessoryKey has copy, drop, store { name: String } /// An empty key, can be attached only once.\npublic struct MetadataKey has copy, drop, store {} Two field names that we defined above are AccessoryKey and MetadataKey. The AccessoryKey has a String field in it, hence it can be used multiple times with different name values. The MetadataKey is an empty key, and can be attached only once. let mut character = Character { id: object::new(ctx) }; // Attaching via an `AccessoryKey { name: b\"hat\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"hat\".to_string() }, Hat { id: object::new(ctx), color: 0xFF0000 }\n);\n// Attaching via an `AccessoryKey { name: b\"mustache\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"mustache\".to_string() }, Mustache { id: object::new(ctx) }\n); // Attaching via a `MetadataKey`\ndf::add(&mut character.id, MetadataKey {}, 42); As you can see, custom types do work as field names but as long as they can be constructed by the module, in other words - if they are internal to the module and defined in it. This limitation on struct packing can open up new ways in the design of the application. This approach is used in the Object Capability pattern, where an application can authorize a foreign object to perform operations in it while not exposing the capabilities to other modules.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Type as a Field Name","id":"287","title":"Custom Type as a Field Name"},"288":{"body":"Mutable access to UID is a security risk. Exposing UID of your type as a mutable reference can lead to unwanted modifications or removal of the object's dynamic fields. Additionally, it affects the Transfer to Object and Dynamic Object Fields . Make sure to understand the implications before exposing the UID as a mutable reference. Because dynamic fields are attached to UIDs, their usage in other modules depends on whether the UID can be accessed. By default struct visibility protects the id field and won't let other modules access it directly. However, if there's a public accessor method that returns a reference to UID, dynamic fields can be read in other modules. /// Exposes the UID of the character, so that other modules can read\n/// dynamic fields.\npublic fun uid(c: &Character): &UID { &c.id\n} In the example above, we show how to expose the UID of a Character object. This solution may work for some applications, however, it is important to remember that exposed UID allows reading any dynamic field attached to the object. If you need to expose the UID only within the package, use a restrictive visibility, like public(package), or even better - use more specific accessor methods that would allow only reading specific fields. /// Only allow modules in the same package to access the UID.\npublic(package) fun uid_package(c: &Character): &UID { &c.id\n} /// Allow borrowing dynamic fields from the character.\npublic fun borrow( c: &Character, n: Name\n): &Value { df::borrow(&c.id, n)\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Exposing UID","id":"288","title":"Exposing UID"},"289":{"body":"Dynamic Fields are more expensive than regular fields, as they require additional storage and costs for accessing them. Their flexibility comes at a price, and it is important to understand the implications when making a decision between using dynamic fields and regular fields.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields vs Fields","id":"289","title":"Dynamic Fields vs Fields"},"29":{"body":"To make sure that we did everything correctly, let's build the package by running the sui move build command. If everything is correct, you should see the output similar to the following: $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list If there are no errors following this output, you have successfully built the package. If there are errors, make sure that: The code is copied correctly The file name and the package name is correct There are not many other reasons for the code to fail at this stage. But if you are still having issues, try looking up the structure of the package in this location .","breadcrumbs":"Hello, Sui! » Build the package","id":"29","title":"Build the package"},"290":{"body":"Dynamic Fields are not subject to the object size limit , and can be used to store large amounts of data. However, they are still subject to the dynamic fields created limit , which is set to 1000 fields per transaction.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Limits","id":"290","title":"Limits"},"291":{"body":"Dynamic Fields can play a crucial role in applications of any complexity. They open up a variety of different use cases, from storing heterogeneous data to attaching objects as part of the application logic. They allow for certain upgradeability practices based on the ability to define them later and change the type of the field.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"291","title":"Applications"},"292":{"body":"In the next section we will cover Dynamic Object Fields and explain how they differ from dynamic fields, and what are the implications of using them.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Next Steps","id":"292","title":"Next Steps"},"293":{"body":"This section expands on the Dynamic Fields . Please, read it first to understand the basics of dynamic fields. Another variation of dynamic fields is dynamic object fields , which have certain differences from regular dynamic fields. In this section, we will cover the specifics of dynamic object fields and explain how they differ from regular dynamic fields. General recommendation is to avoid using dynamic object fields in favor of (just) dynamic fields, especially if there's no need for direct discovery through the ID. The extra costs of dynamic object fields may not be justified by the benefits they provide.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Dynamic Object Fields","id":"293","title":"Dynamic Object Fields"},"294":{"body":"Dynamic Object Fields are defined in the sui::dynamic_object_fields module in the Sui Framework . They are similar to dynamic fields in many ways, but unlike them, dynamic object fields have an extra constraint on the Value type. The Value must have a combination of key and store, not just store as in the case of dynamic fields. They're less explicit in their framework definition, as the concept itself is more abstract: File: sui-framework/sources/dynamic_object_fields.move /// Internal object used for storing the field and the name associated with the\n/// value. The separate type is necessary to prevent key collision with direct\n/// usage of dynamic_field\npublic struct Wrapper has copy, drop, store { name: Name,\n} Unlike Field type in the Dynamic Fields section, the Wrapper type only stores the name of the field. The value is the object itself, and is not wrapped . The constraints on the Value type become visible in the methods available for dynamic object fields. Here's the signature for the add function: /// Adds a dynamic object field to the object `object: &mut UID` at field\n/// specified by `name: Name`. Aborts with `EFieldAlreadyExists` if the object\n/// already has that field with that name.\npublic fun add( // we use &mut UID in several spots for access control object: &mut UID, name: Name, value: Value,\n) { /* implementation omitted */ } The rest of the methods which are identical to the ones in the Dynamic Fields section have the same constraints on the Value type. Let's list them for reference: add - adds a dynamic object field to the object remove - removes a dynamic object field from the object borrow - borrows a dynamic object field from the object borrow_mut - borrows a mutable reference to a dynamic object field from the object exists_ - checks if a dynamic object field exists exists_with_type - checks if a dynamic object field exists with a specific type Additionally, there is an id method which returns the ID of the Value object without specifying its type.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Definition","id":"294","title":"Definition"},"295":{"body":"The main difference between dynamic fields and dynamic object fields is that the latter allows storing only objects as values. This means that you can't store primitive types like u64 or bool. It may be considered a limitation, if not for the fact that dynamic object fields are not wrapped into a separate object. The relaxed requirement for wrapping keeps the object available for off-chain discovery via its ID. However, this property may not be outstanding if wrapped object indexing is implemented, making the dynamic object fields a redundant feature. module book::dynamic_object_field { use std::string::String; // there are two common aliases for the long module name: `dof` and // `ofield`. Both are commonly used and met in different projects. use sui::dynamic_object_field as dof; use sui::dynamic_field as df; /// The `Character` that we will use for the example public struct Character has key { id: UID } /// Metadata that doesn't have the `key` ability public struct Metadata has store, drop { name: String } /// Accessory that has the `key` and `store` abilities. public struct Accessory has key, store { id: UID } #[test] fun equip_accessory() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Create an accessory and attach it to the character let hat = Accessory { id: object::new(ctx) }; // Add the hat to the character. Just like with `dynamic_fields` dof::add(&mut character.id, b\"hat_key\", hat); // However for non-key structs we can only use `dynamic_field` df::add(&mut character.id, b\"metadata_key\", Metadata { name: b\"John\".to_string() }); // Borrow the hat from the character let hat_id = dof::id(&character.id, b\"hat_key\").extract(); // Option let hat_ref: &Accessory = dof::borrow(&character.id, b\"hat_key\"); let hat_mut: &mut Accessory = dof::borrow_mut(&mut character.id, b\"hat_key\"); let hat: Accessory = dof::remove(&mut character.id, b\"hat_key\"); // Clean up, Metadata is an orphan now. sui::test_utils::destroy(hat); sui::test_utils::destroy(character); }\n}","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Usage & Differences with Dynamic Fields","id":"295","title":"Usage & Differences with Dynamic Fields"},"296":{"body":"Dynamic Object Fields come a little more exensive than dynamic fields. Because of their internal structure, they require 2 objects: the Wrapper for Name and the Value. Because of this, the cost of adding and accessing object fields (loading 2 objects compared to 1 for dynamic fields) is higher.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Pricing Differences","id":"296","title":"Pricing Differences"},"297":{"body":"Both dynamic field and dynamic object fields are powerful features which allow for innovative solutions in applications. However, they are relatively low-level and require careful handling to avoid orphaned fields. In the next section, we will introduce a higher-level abstraction - Dynamic Collections - which can help with managing dynamic fields and objects more effectively.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Next Steps","id":"297","title":"Next Steps"},"298":{"body":"Sui Framework offers a variety of collection types that build on the dynamic fields and dynamic object fields concepts. These collections are designed to be a safer and more understandable way to store and manage dynamic fields and objects. For each collection type we will specify the primitive they use, and the specific features they offer. Unlike dynamic (object) fields which operate on UID, collection types have their own type and allow calling associated functions .","breadcrumbs":"Advanced Programmability » Dynamic Collections » Dynamic Collections","id":"298","title":"Dynamic Collections"},"299":{"body":"All of the collection types share the same set of methods, which are: add - adds a field to the collection remove - removes a field from the collection borrow - borrows a field from the collection borrow_mut - borrows a mutable reference to a field from the collection contains - checks if a field exists in the collection length - returns the number of fields in the collection is_empty - checks if the length is 0 All collection types support index syntax for borrow and borrow_mut methods. If you see square brackets in the examples, they are translated into borrow and borrow_mut calls. let hat: &Hat = &bag[b\"key\"];\nlet hat_mut: &mut Hat = &mut bag[b\"key\"]; // is equivalent to\nlet hat: &Hat = bag.borrow(b\"key\");\nlet hat_mut: &mut Hat = bag.borrow_mut(b\"key\"); In the examples we won't focus on these functions, but rather on the differences between the collection types.","breadcrumbs":"Advanced Programmability » Dynamic Collections » Common Concepts","id":"299","title":"Common Concepts"},"3":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"3","title":"Install Sui"},"30":{"body":"To publish and interact with the package, we need to set up an account. For the sake of simplicity and demonstration purposes, we will use sui devnet environment. If you already have an account set up, you can skip this step. If you are doing it for the first time, you will need to create a new account. To do this, run the sui client command, then the CLI will prompt you with multiple questions. The answers are marked below with >: $ sui client\nConfig file [\"/path/to/home/.sui/sui_config/client.yaml\"] doesn't exist, do you want to connect to a Sui Full node server [y/N]?\n> y\nSui Full node server URL (Defaults to Sui Testnet if not specified) :\n>\nSelect key scheme to generate keypair (0 for ed25519, 1 for secp256k1, 2: for secp256r1):\n> 0 After you have answered the questions, the CLI will generate a new keypair and save it to the configuration file. You can now use this account to interact with the network. To check that we have the account set up correctly, run the sui client active-address command: $ sui client active-address\n0x.... The command will output the address of your account, it starts with 0x followed by 64 characters.","breadcrumbs":"Hello, Sui! » Set up an account","id":"30","title":"Set up an account"},"300":{"body":"Bag, as the name suggests, acts as a \"bag\" of heterogeneous values. It is a simple, non-generic type that can store any data. Bag will never allow orphaned fields, as it tracks the number of fields and can't be destroyed if it's not empty. // File: sui-framework/sources/bag.move\npublic struct Bag has key, store { /// the ID of this bag id: UID, /// the number of key-value pairs in the bag size: u64,\n} Due to Bag storing any types, the extra methods it offers is: contains_with_type - checks if a field exists with a specific type Used as a struct field: /// Imported from the `sui::bag` module.\nuse sui::bag::{Self, Bag}; /// An example of a `Bag` as a struct field.\npublic struct Carrier has key { id: UID, bag: Bag\n} Using the Bag: let mut bag = bag::new(ctx); // bag has the `length` function to get the number of elements\nassert!(bag.length() == 0, 0); bag.add(b\"my_key\", b\"my_value\".to_string()); // length has changed to 1\nassert!(bag.length() == 1, 1); // in order: `borrow`, `borrow_mut` and `remove`\n// the value type must be specified\nlet field_ref: &String = &bag[b\"my_key\"];\nlet field_mut: &mut String = &mut bag[b\"my_key\"];\nlet field: String = bag.remove(b\"my_key\"); // length is back to 0 - we can unpack\nbag.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Bag","id":"300","title":"Bag"},"301":{"body":"Defined in the sui::object_bag module. Identical to Bag , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectBag","id":"301","title":"ObjectBag"},"302":{"body":"Table is a typed dynamic collection that has a fixed type for keys and values. It is defined in the sui::table module. // File: sui-framework/sources/table.move\npublic struct Table has key, store { /// the ID of this table id: UID, /// the number of key-value pairs in the table size: u64,\n} Used as a struct field: /// Imported from the `sui::table` module.\nuse sui::table::{Self, Table}; /// Some record type with `store`\npublic struct Record has store { /* ... */ } /// An example of a `Table` as a struct field.\npublic struct UserRegistry has key { id: UID, table: Table\n} Using the Table: #[test] fun test_table() {\nlet ctx = &mut tx_context::dummy(); // Table requires explicit type parameters for the key and value\n// ...but does it only once in initialization.\nlet mut table = table::new(ctx); // table has the `length` function to get the number of elements\nassert!(table.length() == 0, 0); table.add(@0xa11ce, b\"my_value\".to_string());\ntable.add(@0xb0b, b\"another_value\".to_string()); // length has changed to 2\nassert!(table.length() == 2, 2); // in order: `borrow`, `borrow_mut` and `remove`\nlet addr_ref = &table[@0xa11ce];\nlet addr_mut = &mut table[@0xa11ce]; // removing both values\nlet _addr = table.remove(@0xa11ce);\nlet _addr = table.remove(@0xb0b); // length is back to 0 - we can unpack\ntable.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Table","id":"302","title":"Table"},"303":{"body":"Defined in the sui::object_table module. Identical to Table , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectTable","id":"303","title":"ObjectTable"},"304":{"body":"Bag - a simple collection that can store any type of data ObjectBag - a collection that can store only objects Table - a typed dynamic collection that has a fixed type for keys and values ObjectTable - same as Table, but can only store objects","breadcrumbs":"Advanced Programmability » Dynamic Collections » Summary","id":"304","title":"Summary"},"305":{"body":"This section is coming soon!","breadcrumbs":"Advanced Programmability » Dynamic Collections » LinkedTable","id":"305","title":"LinkedTable"},"306":{"body":"Witness is a pattern of proving an existence by constructing a proof. In the context of programming, witness is a way to prove a certain property of a system by providing a value that can only be constructed if the property holds.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Pattern: Witness","id":"306","title":"Pattern: Witness"},"307":{"body":"In the Struct section we have shown that a struct can only be created - or packed - by the module defining it. Hence, in Move, a module proves ownership of the type by constructing it. This is one of the most important patterns in Move, and it is widely used for generic type instantiation and authorization. Practically speaking, for the witness to be used, there has to be a function that expects a witness as an argument. In the example below it is the new function that expects a witness of the T type to create a Instance instance. It is often the case that the witness struct is not stored, and for that the function may require the Drop ability for the type. module book::witness { /// A struct that requires a witness to be created. public struct Instance { t: T } /// Create a new instance of `Instance` with the provided T. public fun new(witness: T): Instance { Instance { t: witness } }\n} The only way to construct an Instance is to call the new function with an instance of the type T. This is a basic example of the witness pattern in Move. A module providing a witness often has a matching implementation, like the module book::witness_source below: module book::witness_source { use book::witness::{Self, Instance}; /// A struct used as a witness. public struct W {} /// Create a new instance of `Instance`. public fun new_instance(): Instance { witness::new(W {}) }\n} The instance of the struct W is passed into the new function to create an Instance, thereby proving that the module book::witness_source owns the type W.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Witness in Move","id":"307","title":"Witness in Move"},"308":{"body":"Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting associated behaviors from the type with an option to extend them, if the module provides the ability to do so. // File: sui-framework/sources/balance.move\n/// A Supply of T. Used for minting and burning.\npublic struct Supply has key, store { id: UID, value: u64\n} /// Create a new supply for type T with the provided witness.\npublic fun create_supply(_w: T): Supply { Supply { value: 0 }\n} /// Get the `Supply` value.\npublic fun supply_value(supply: &Supply): u64 { supply.value\n} In the example above, which is borrowed from the balance module of the Sui Framework , the Supply a generic struct that can be constructed only by supplying a witness of the type T. The witness is taken by value and discarded - hence the T must have the drop ability. The instantiated Supply can then be used to mint new Balance's, where T is the type of the supply. // File: sui-framework/sources/balance.move\n/// Storable balance.\nstruct Balance has store { value: u64\n} /// Increase supply by `value` and create a new `Balance` with this value.\npublic fun increase_supply(self: &mut Supply, value: u64): Balance { assert!(value < (18446744073709551615u64 - self.value), EOverflow); self.value = self.value + value; Balance { value }\n}","breadcrumbs":"Advanced Programmability » Pattern: Witness » Instantiating a Generic Type","id":"308","title":"Instantiating a Generic Type"},"309":{"body":"While a struct can be created any number of times, there are cases where a struct should be guaranteed to be created only once. For this purpose, Sui provides the \"One-Time Witness\" - a special witness that can only be used once. We explain it in more detail in the next section .","breadcrumbs":"Advanced Programmability » Pattern: Witness » One Time Witness","id":"309","title":"One Time Witness"},"31":{"body":"In devnet and testnet environments, the CLI provides a way to request coins to your account, so you can interact with the network. To request coins, run the sui client faucet command: $ sui client faucet\nRequest successful. It can take up to 1 minute to get the coin. Run sui client gas to check your gas coins. After waiting a little bit, you can check that the Coin object was sent to your account by running the sui client balance command: $ sui client balance\n╭────────────────────────────────────────╮\n│ Balance of coins owned by this address │\n├────────────────────────────────────────┤\n│ ╭──────────────────────────────────╮ │\n│ │ coin balance (raw) balance │ │\n│ ├──────────────────────────────────┤ │\n│ │ Sui 1000000000 1.00 SUI │ │\n│ ╰──────────────────────────────────╯ │\n╰────────────────────────────────────────╯ Alternatively, you can query objects owned by your account, by running the sui client objects command. The actual output will be different, because the object ID is unique, and so is digest, but the structure will be similar: $ sui client objects\n╭───────────────────────────────────────────────────────────────────────────────────────╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │ │\n│ │ version │ 4 │ │\n│ │ digest │ nA68oa8gab/CdIRw+240wze8u0P+sRe4vcisbENcR4U= │ │\n│ │ objectType │ 0x0000..0002::coin::Coin │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n╰───────────────────────────────────────────────────────────────────────────────────────╯ Now that we have the account set up and the coins in the account, we can interact with the network. We will start by publishing the package to the network.","breadcrumbs":"Hello, Sui! » Requesting Coins","id":"31","title":"Requesting Coins"},"310":{"body":"Witness is a pattern of proving a certain property by constructing a proof. In Move, a module proves ownership of a type by constructing it. Witness is often used for generic type instantiation and authorization.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Summary","id":"310","title":"Summary"},"311":{"body":"In the next section, we will learn about the One Time Witness pattern.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Next Steps","id":"311","title":"Next Steps"},"312":{"body":"While regular Witness is a great way to statically prove the ownership of a type, there are cases where we need to ensure that a Witness is instantiated only once. And this is the purpose of the One Time Witness (OTW).","breadcrumbs":"Advanced Programmability » One Time Witness » One Time Witness","id":"312","title":"One Time Witness"},"313":{"body":"The OTW is a special type of Witness that can be used only once. It cannot be manually created and it is guaranteed to be unique per module. Sui Adapter treats a type as an OTW if it follows these rules: Has only drop ability. Has no fields. Is not a generic type. Named after the module with all uppercase letters. Here is an example of an OTW: module book::one_time { /// The OTW for the `book::one_time` module. /// Only `drop`, no fields, no generics, all uppercase. public struct ONE_TIME has drop {} /// Receive the instance of `ONE_TIME` as the first argument. fun init(otw: ONE_TIME, ctx: &mut TxContext) { // do something with the OTW }\n} The OTW cannot be constructed manually, and any code attempting to do so will result in a compilation error. The OTW can be received as the first argument in the module initializer . And because the init function is called only once per module, the OTW is guaranteed to be instantiated only once.","breadcrumbs":"Advanced Programmability » One Time Witness » Definition","id":"313","title":"Definition"},"314":{"body":"To check if a type is an OTW, sui::types module of the Sui Framework offers a special function is_one_time_witness that can be used to check if the type is an OTW. use sui::types; const ENotOneTimeWitness: u64 = 1; /// Takes an OTW as an argument, aborts if the type is not OTW.\npublic fun takes_witness(otw: T) { assert!(types::is_one_time_witness(&otw), ENotOneTimeWitness);\n}","breadcrumbs":"Advanced Programmability » One Time Witness » Enforcing the OTW","id":"314","title":"Enforcing the OTW"},"315":{"body":"The OTW pattern is a great way to ensure that a type is used only once. Most of the developers should understand how to define and receive the OTW, while the OTW checks and enforcement is mostly needed in libraries and frameworks. For example, the sui::coin module requires an OTW in the coin::create_currency method, therefore enforcing that the coin::TreasuryCap is created only once. OTW is a powerful tool that lays the foundation for the Publisher object, which we will cover in the next section.","breadcrumbs":"Advanced Programmability » One Time Witness » Summary","id":"315","title":"Summary"},"316":{"body":"In application design and development, it is often needed to prove publisher authority. This is especially important in the context of digital assets, where the publisher may enable or disable certain features for their assets. The Publisher Object is an object, defined in the Sui Framework , that allows the publisher to prove their authority over a type .","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher Authority","id":"316","title":"Publisher Authority"},"317":{"body":"The Publisher object is defined in the sui::package module of the Sui Framework. It is a very simple, non-generic object that can be initialized once per module (and multiple times per package) and is used to prove the authority of the publisher over a type. To claim a Publisher object, the publisher must present a One Time Witness to the package::claim function. // File: sui-framework/sources/package.move\npublic struct Publisher has key, store { id: UID, package: String, module_name: String,\n} If you're not familiar with the One Time Witness, you can read more about it here . Here's a simple example of claiming a Publisher object in a module: module book::publisher { /// Some type defined in the module. public struct Book {} /// The OTW for the module. public struct PUBLISHER has drop {} /// Uses the One Time Witness to claim the Publisher object. fun init(otw: PUBLISHER, ctx: &mut TxContext) { // Claim the Publisher object. let publisher = sui::package::claim(otw, ctx); // Usually it is transferred to the sender. // It can also be stored in another object. transfer::public_transfer(publisher, ctx.sender()) }\n}","breadcrumbs":"Advanced Programmability » Publisher Authority » Definition","id":"317","title":"Definition"},"318":{"body":"The Publisher object has two functions associated with it which are used to prove the publisher's authority over a type: // Checks if the type is from the same module, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_module(), 0); // Checks if the type is from the same package, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_package(), 0);","breadcrumbs":"Advanced Programmability » Publisher Authority » Usage","id":"318","title":"Usage"},"319":{"body":"For small applications or simple use cases, the Publisher object can be used as an admin capability . While in the broader context, the Publisher object has control over system configurations, it can also be used to manage the application's state. /// Some action in the application gated by the Publisher object.\npublic fun admin_action(cap: &Publisher, /* app objects... */ param: u64) { assert!(cap.from_module(), ENotAuthorized); // perform application-specific action\n} However, Publisher misses some native properties of Capabilities , such as type safety and expressiveness. The signature for the admin_function is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher as Admin Role","id":"319","title":"Publisher as Admin Role"},"32":{"body":"To publish the package to the network, we will use the sui client publish command. The command will automatically build the package and use its bytecode to publish in a single transaction. We are using the --gas-budget argument during publishing. It specifies how much gas we are willing to spend on the transaction. We won't touch on this topic in this section, but it's important to know that every transaction in Sui costs gas, and the gas is paid in SUI coins. The gas-budget is specified in MISTs . 1 SUI equals 10^9 MISTs. For the sake of demonstration, we will use 100,000,000 MISTs, which is 0.1 SUI. # run this from the `todo_list` folder\n$ sui client publish --gas-budget 100000000 # alternatively, you can specify path to the package\n$ sui client publish --gas-budget 100000000 todo_list The output of the publish command is rather lengthy, so we will show and explain it in parts. $ sui client publish --gas-budget 100000000\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list\nSuccessfully verified dependencies on-chain against source.\nTransaction Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW As you can see, when we run the publish command, the CLI first builds the package, then verifies the dependencies on-chain, and finally publishes the package. The output of the command is the transaction digest, which is a unique identifier of the transaction and can be used to query the transaction status.","breadcrumbs":"Hello, Sui! » Publish","id":"32","title":"Publish"},"320":{"body":"Publisher is required for certain features on Sui. Object Display can be created only by the Publisher, and TransferPolicy - an important component of the Kiosk system - also requires the Publisher object to prove ownership of the type.","breadcrumbs":"Advanced Programmability » Publisher Authority » Role on Sui","id":"320","title":"Role on Sui"},"321":{"body":"In the next chapter we will cover the first feature that requires the Publisher object - Object Display - a way to describe objects for clients, and standardize metadata. A must-have for user-friendly applications.","breadcrumbs":"Advanced Programmability » Publisher Authority » Next Steps","id":"321","title":"Next Steps"},"322":{"body":"Objects on Sui are explicit in their structure and behavior and can be displayed in an understandable way. However, to support richer metadata for clients, there's a standard and efficient way of \"describing\" them to the client - the Display object defined in the Sui Framework .","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"322","title":"Object Display"},"323":{"body":"Historically, there were different attempts to agree on a standard structure of an object so it can be displayed in a user interface. One of the approaches was to define certain fields in the object struct which, when present, would be used in the UI. This approach was not flexible enough and required developers to define the same fields in every object, and sometimes the fields did not make sense for the object. /// An attempt to standardize the object structure for display.\npublic struct CounterWithDisplay has key { id: UID, /// If this field is present it will be displayed in the UI as `name`. name: String, /// If this field is present it will be displayed in the UI as `description`. description: String, // ... image: String, /// Actual fields of the object. counter: u64, // ...\n} If any of the fields contained static data, it would be duplicated in every object. And, since Move does not have interfaces, it is not possible to know if an object has a specific field without \"manually\" checking the object's type, which makes the client fetching more complex.","breadcrumbs":"Advanced Programmability » Display » Background","id":"323","title":"Background"},"324":{"body":"To address these issues, Sui introduces a standard way of describing an object for display. Instead of defining fields in the object struct, the display metadata is stored in a separate object, which is associated with the type. This way, the display metadata is not duplicated, and it is easy to extend and maintain. Another important feature of Sui Display is the ability to define templates and use object fields in those templates. Not only it allows for a more flexible display, but it also frees the developer from the need to define the same fields with the same names and types in every object. The Object Display is natively supported by the Sui Fullnode, and the client can fetch the display metadata for any object if the object type has a Display associated with it. module book::arena { use std::string::String; use sui::package; use sui::display; /// The One Time Witness to claim the `Publisher` object. public struct ARENA has drop {} /// Some object which will be displayed. public struct Hero has key { id: UID, class: String, level: u64, } /// In the module initializer we create the `Publisher` object, and then /// the Display for the `Hero` type. fun init(otw: ARENA, ctx: &mut TxContext) { let publisher = package::claim(otw, ctx); let mut display = display::new(&publisher, ctx); display.add( b\"name\".to_string(), b\"{class} (lvl. {level})\".to_string() ); display.add( b\"description\".to_string(), b\"One of the greatest heroes of all time. Join us!\".to_string() ); display.add( b\"link\".to_string(), b\"https://example.com/hero/{id}\".to_string() ); display.add( b\"image_url\".to_string(), b\"https://example.com/hero/{class}.jpg\".to_string() ); // Update the display with the new data. // Must be called to apply changes. display.update_version(); transfer::public_transfer(publisher, ctx.sender()); transfer::public_transfer(display, ctx.sender()); }\n}","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"324","title":"Object Display"},"325":{"body":"While the objects can be owned by accounts and may be a subject to True Ownership , the Display can be owned by the creator of the object. This way, the creator can update the display metadata and apply the changes globally without the need to update every object. The creator can also transfer Display to another account or even build an application around the object with custom functionality to manage the metadata.","breadcrumbs":"Advanced Programmability » Display » Creator Privilege","id":"325","title":"Creator Privilege"},"326":{"body":"The fields that are supported most widely are: name - A name for the object. The name is displayed when users view the object. description - A description for the object. The description is displayed when users view the object. link - A link to the object to use in an application. image_url - A URL or a blob with the image for the object. thumbnail_url - A URL to a smaller image to use in wallets, explorers, and other products as a preview. project_url - A link to a website associated with the object or creator. creator - A string that indicates the object creator. Please, refer to the Sui Documentation for the most up-to-date list of supported fields. While there's a standard set of fields, the Display object does not enforce them. The developer can define any fields they need, and the client can use them as they see fit. Some applications may require additional fields, and omit other, and the Display is flexible enough to support them.","breadcrumbs":"Advanced Programmability » Display » Standard Fields","id":"326","title":"Standard Fields"},"327":{"body":"The Display object is defined in the sui::display module. It is a generic struct that takes a phantom type as a parameter. The phantom type is used to associate the Display object with the type it describes. The fields of the Display object are a VecMap of key-value pairs, where the key is the field name and the value is the field value. The version field is used to version the display metadata, and is updated on the update_display call. File: sui-framework/sources/display.move struct Display has key, store { id: UID, /// Contains fields for display. Currently supported /// fields are: name, link, image and description. fields: VecMap, /// Version that can only be updated manually by the Publisher. version: u16\n} The Publisher object is required to a new Display, since it serves as the proof of ownership of type.","breadcrumbs":"Advanced Programmability » Display » Working with Display","id":"327","title":"Working with Display"},"328":{"body":"Currently, Display supports simple string interpolation and can use struct fields (and paths) in its templates. The syntax is trivial - {path} is replaced with the value of the field at the path. The path is a dot-separated list of field names, starting from the root object in case of nested fields. /// Some common metadata for objects.\npublic struct Metadata has store { name: String, description: String, published_at: u64\n} /// The type with nested Metadata field.\npublic struct LittlePony has key, store { id: UID, image_url: String, metadata: Metadata\n} The Display for the type LittlePony above could be defined as follows: { \"name\": \"Just a pony\", \"image_url\": \"{image_url}\", \"description\": \"{metadata.description}\"\n}","breadcrumbs":"Advanced Programmability » Display » Template Syntax","id":"328","title":"Template Syntax"},"329":{"body":"There's no restriction to how many Display objects can be created for a specific T. However, the most recently updated Display will be used by the fullnode.","breadcrumbs":"Advanced Programmability » Display » Multiple Display Objects","id":"329","title":"Multiple Display Objects"},"33":{"body":"The section titled TransactionData contains the information about the transaction we just sent. It features fields like sender, which is your address, the gas_budget set with the --gas-budget argument, and the Coin we used for payment. It also prints the Commands that were run by the CLI. In this example, the commands Publish and TransferObject were run - the latter transfers a special object UpgradeCap to the sender. ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Version: 7 │\n│ │ Digest: AXYPnups8A5J6pkvLa6RekX2ye3qur66EZ88mEbaUDQ1 │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭─────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├─────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Publish: │ │\n│ │ ┌ │ │\n│ │ │ Dependencies: │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰─────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ gebjSbVwZwTkizfYg2XIuzdx+d66VxFz8EmVaisVFiV3GkDay6L+hQG3n2CQ1hrWphP6ZLc7bd1WRq4ss+hQAQ== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Data","id":"33","title":"Transaction Data"},"330":{"body":"Sui Object Display is Sui Documentation Publisher - the representation of the creator","breadcrumbs":"Advanced Programmability » Display » Further Reading","id":"330","title":"Further Reading"},"331":{"body":"Events are a way to notify off-chain listeners about on-chain events. They are used to emit additional information about the transaction that is not stored - and, hence, can't be accessed - on-chain. Events are emitted by the sui::event module located in the Sui Framework . Any custom type with the copy and drop abilities can be emitted as an event. Sui Verifier requires the type to be internal to the module. // File: sui-framework/sources/event.move\nmodule sui::event { /// Emit a custom Move event, sending the data offchain. /// /// Used for creating custom indexes and tracking onchain /// activity in a way that suits a specific application the most. /// /// The type `T` is the main way to index the event, and can contain /// phantom parameters, eg `emit(MyEvent)`. public native fun emit(event: T);\n}","breadcrumbs":"Advanced Programmability » Events » Events","id":"331","title":"Events"},"332":{"body":"Events are emitted using the emit function in the sui::event module. The function takes a single argument - the event to be emitted. The event data is passed by value, module book::events { use sui::coin::Coin; use sui::sui::SUI; use sui::event; /// The item that can be purchased. public struct Item has key { id: UID } /// Event emitted when an item is purchased. Contains the ID of the item and /// the price for which it was purchased. public struct ItemPurchased has copy, drop { item: ID, price: u64 } /// A marketplace function which performs the purchase of an item. public fun purchase(coin: Coin, ctx: &mut TxContext) { let item = Item { id: object::new(ctx) }; // Create an instance of `ItemPurchased` and pass it to `event::emit`. event::emit(ItemPurchased { item: object::id(&item), price: coin.value() }); // Omitting the rest of the implementation to keep the example simple. abort 0 }\n} The Sui Verifier requires the type passed to the emit function to be internal to the module . So emitting a type from another module will result in a compilation error. Primitive types, although they match the copy and drop requirement, are not allowed to be emitted as events.","breadcrumbs":"Advanced Programmability » Events » Emitting Events","id":"332","title":"Emitting Events"},"333":{"body":"Events are a part of the transaction result and are stored in the transaction effects . As such, they natively have the sender field which is the address who sent the transaction. So adding a \"sender\" field to the event is not necessary. Similarly, event metadata contains the timestamp. But it is important to note that the timestamp is relative to the node and may vary a little from node to node.","breadcrumbs":"Advanced Programmability » Events » Event Structure","id":"333","title":"Event Structure"},"334":{"body":"Sui Framework is a default dependency set in the Package Manifest . It depends on the Standard Library and provides Sui-specific features, including the interaction with the storage, and Sui-specific native types and modules. For convenience, we grouped the modules in the Sui Framework into multiple categories. But they're still part of the same framework.","breadcrumbs":"Advanced Programmability » Sui Framework » Sui Framework","id":"334","title":"Sui Framework"},"335":{"body":"Module Description Chapter sui::address Adds conversion methods to the address type Address sui::transfer Implements the storage operations for Objects It starts with an Object sui::tx_context Contains the TxContext struct and methods to read it Transaction Context sui::object Defines the UID and ID type, required for creating objects It starts with an Object sui::clock Defines the Clock type and its methods Epoch and Time sui::dynamic_field Implements methods to add, use and remove dynamic fields Dynamic Fields sui::dynamic_object_field Implements methods to add, use and remove dynamic object fields Dynamic Object Fields sui::event Allows emitting events for off-chain listeners Events sui::package Defines the Publisher type and package upgrade methods Publisher , Package Upgrades sui::display Implements the Display object and ways to create and update it Display","breadcrumbs":"Advanced Programmability » Sui Framework » Core","id":"335","title":"Core"},"336":{"body":"Module Description Chapter sui::vec_set Implements a set type Collections sui::vec_map Implements a map with vector keys Collections sui::table Implements the Table type and methods to interact with it Dynamic Collections sui::linked_table Implements the LinkedTable type and methods to interact with it Dynamic Collections sui::bag Implements the Bag type and methods to interact with it Dynamic Collections sui::object_table Implements the ObjectTable type and methods to interact with it Dynamic Collections sui::object_bag Implements the ObjectBag type and methods to interact with it Dynamic Collections","breadcrumbs":"Advanced Programmability » Sui Framework » Collections","id":"336","title":"Collections"},"337":{"body":"Module Description Chapter sui::bcs Implements the BCS encoding and decoding functions Binary Canonical Serialization","breadcrumbs":"Advanced Programmability » Sui Framework » Utilities","id":"337","title":"Utilities"},"338":{"body":"Sui Framework exports two named addresses: sui = 0x2 and std = 0x1 from the std dependency. [addresses]\nsui = \"0x2\" # Exported from the MoveStdlib dependency\nstd = \"0x1\"","breadcrumbs":"Advanced Programmability » Sui Framework » Exported Addresses","id":"338","title":"Exported Addresses"},"339":{"body":"Just like with Standard Library , some of the modules and types are imported implicitly in the Sui Framework. This is the list of modules and types that are available without explicit use import: sui::object sui::object::ID sui::object::UID sui::tx_context sui::tx_context::TxContext sui::transfer","breadcrumbs":"Advanced Programmability » Sui Framework » Implicit Imports","id":"339","title":"Implicit Imports"},"34":{"body":"Transaction Effects contains the status of the transaction, the changes that the transaction made to the state of the network and the objects involved in the transaction. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW │\n│ Status: Success │\n│ Executed Epoch: 411 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ ┌── │\n│ │ ID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Owner: Immutable │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 10404400 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ 7Ukrc5GqdFqTA41wvWgreCdHn2vRLfgQ3YMFkdks72Vk │\n│ 7d4amuHGhjtYKujEs9YkJARzNEn4mRbWWv3fn4cdKdyh │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Effects","id":"34","title":"Transaction Effects"},"340":{"body":"The source code of the Sui Framework is available in the Sui repository .","breadcrumbs":"Advanced Programmability » Sui Framework » Source Code","id":"340","title":"Source Code"},"341":{"body":"Binary Canonical Serialization (BCS) is a binary encoding format for structured data. It was originally designed in Diem, and became the standard serialization format for Move. BCS is simple, efficient, deterministic, and easy to implement in any programming language. The full format specification is available in the BCS repository .","breadcrumbs":"Advanced Programmability » BCS » Binary Canonical Serialization","id":"341","title":"Binary Canonical Serialization"},"342":{"body":"BCS is a binary format that supports unsigned integers up to 256 bits, options, booleans, unit (empty value), fixed and variable-length sequences, and maps. The format is designed to be deterministic, meaning that the same data will always be serialized to the same bytes. \"BCS is not a self-describing format. As such, in order to deserialize a message, one must know the message type and layout ahead of time\" from the README Integers are stored in little-endian format, and variable-length integers are encoded using a variable-length encoding scheme. Sequences are prefixed with their length as ULEB128, enumerations are stored as the index of the variant followed by the data, and maps are stored as an ordered sequence of key-value pairs. Structs are treated as a sequence of fields, and the fields are serialized in the order they are defined in the struct. The fields are serialized using the same rules as the top-level data.","breadcrumbs":"Advanced Programmability » BCS » Format","id":"342","title":"Format"},"343":{"body":"The Sui Framework includes the sui::bcs module for encoding and decoding data. Encoding functions are native to the VM, and decoding functions are implemented in Move.","breadcrumbs":"Advanced Programmability » BCS » Using BCS","id":"343","title":"Using BCS"},"344":{"body":"To encode data, use the bcs::to_bytes function, which converts data references into byte vectors. This function supports encoding any types, including structs. // File: move-stdlib/sources/bcs.move\npublic native fun to_bytes(t: &T): vector; The following example shows how to encode a struct using BCS. The to_bytes function can take any value and encode it as a vector of bytes. use sui::bcs; // 0x01 - a single byte with value 1 (or 0 for false)\nlet bool_bytes = bcs::to_bytes(&true);\n// 0x2a - just a single byte\nlet u8_bytes = bcs::to_bytes(&42u8);\n// 0x000000000000002a - 8 bytes\nlet u64_bytes = bcs::to_bytes(&42u64);\n// address is a fixed sequence of 32 bytes\n// 0x0000000000000000000000000000000000000000000000000000000000000002\nlet addr = bcs::to_bytes(&@sui);","breadcrumbs":"Advanced Programmability » BCS » Encoding","id":"344","title":"Encoding"},"345":{"body":"Structs encode similarly to simple types. Here is how to encode a struct using BCS: let data = CustomData { num: 42, string: b\"hello, world!\".to_string(), value: true\n}; let struct_bytes = bcs::to_bytes(&data); let mut custom_bytes = vector[];\ncustom_bytes.append(bcs::to_bytes(&42u8));\ncustom_bytes.append(bcs::to_bytes(&b\"hello, world!\".to_string()));\ncustom_bytes.append(bcs::to_bytes(&true)); // struct is just a sequence of fields, so the bytes should be the same!\nassert!(&struct_bytes == &custom_bytes, 0);","breadcrumbs":"Advanced Programmability » BCS » Encoding a Struct","id":"345","title":"Encoding a Struct"},"346":{"body":"Because BCS does not self-describe and Move is statically typed, decoding requires prior knowledge of the data type. The sui::bcs module provides various functions to assist with this process.","breadcrumbs":"Advanced Programmability » BCS » Decoding","id":"346","title":"Decoding"},"347":{"body":"BCS is implemented as a wrapper in Move. The decoder takes the bytes by value, and then allows the caller to peel off the data by calling different decoding functions, prefixed with peel_*. The data is split off the bytes, and the remainder bytes are kept in the wrapper until the into_remainder_bytes function is called. use sui::bcs; // BCS instance should always be declared as mutable\nlet mut bcs = bcs::new(x\"010000000000000000\"); // Same bytes can be read differently, for example: Option\nlet value: Option = bcs.peel_option_u64(); assert!(value.is_some(), 0);\nassert!(value.borrow() == &0, 1); let remainder = bcs.into_remainder_bytes(); assert!(remainder.length() == 0, 2); There is a common practice to use multiple variables in a single let statement during decoding. It makes code a little bit more readable and helps to avoid unnecessary copying of the data. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // mind the order!!!\n// handy way to peel multiple values\nlet (bool_value, u8_value, u64_value) = ( bcs.peel_bool(), bcs.peel_u8(), bcs.peel_u64()\n);","breadcrumbs":"Advanced Programmability » BCS » Wrapper API","id":"347","title":"Wrapper API"},"348":{"body":"While most of the primitive types have a dedicated decoding function, vectors need special handling, which depends on the type of the elements. For vectors, first you need to decode the length of the vector, and then decode each element in a loop. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // bcs.peel_vec_length() peels the length of the vector :)\nlet mut len = bcs.peel_vec_length();\nlet mut vec = vector[]; // then iterate depending on the data type\nwhile (len > 0) { vec.push_back(bcs.peel_u64()); // or any other type len = len - 1;\n}; assert!(vec.length() == 1, 0); For most common scenarios, bcs module provides a basic set of functions for decoding vectors: peel_vec_address(): vector
peel_vec_bool(): vector peel_vec_u8(): vector peel_vec_u64(): vector peel_vec_u128(): vector peel_vec_vec_u8(): vector> - vector of byte vectors","breadcrumbs":"Advanced Programmability » BCS » Decoding Vectors","id":"348","title":"Decoding Vectors"},"349":{"body":"Option is represented as a vector of either 0 or 1 element. To read an option, you would treat it like a vector and check its length (first byte - either 1 or 0). let mut bcs = bcs::new(x\"00\");\nlet is_some = bcs.peel_bool(); assert!(is_some == false, 0); let mut bcs = bcs::new(x\"0101\");\nlet is_some = bcs.peel_bool();\nlet value = bcs.peel_u8(); assert!(is_some == true, 1);\nassert!(value == 1, 2); If you need to decode an option of a custom type, use the method in the code snippet above. The most common scenarios, bcs module provides a basic set of functions for decoding Option's: peel_option_address(): Option
peel_option_bool(): Option peel_option_u8(): Option peel_option_u64(): Option peel_option_u128(): Option","breadcrumbs":"Advanced Programmability » BCS » Decoding Option","id":"349","title":"Decoding Option"},"35":{"body":"If there were any events emitted, you would see them in this section. Our package does not use events, so the section is empty. ╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯","breadcrumbs":"Hello, Sui! » Events","id":"35","title":"Events"},"350":{"body":"Structs are decoded field by field, and there is no standard function to automatically decode bytes into a Move struct, and it would have been a violation of the Move's type system. Instead, you need to decode each field manually. // some bytes... let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); let (age, is_active, name) = ( bcs.peel_u8(), bcs.peel_bool(), bcs.peel_vec_u8().to_string()\n); let user = User { age, is_active, name };","breadcrumbs":"Advanced Programmability » BCS » Decoding Structs","id":"350","title":"Decoding Structs"},"351":{"body":"Binary Canonical Serialization is an efficient binary format for structured data, ensuring consistent serialization across platforms. The Sui Framework provides comprehensive tools for working with BCS, allowing extensive functionality through built-in functions.","breadcrumbs":"Advanced Programmability » BCS » Summary","id":"351","title":"Summary"},"352":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language. This guide provides a high-level overview of the changes in the new edition. For a more detailed and exhaustive list of changes, refer to the Sui Documentation .","breadcrumbs":"2024 Migration Guide » Move 2024 Migration Guide","id":"352","title":"Move 2024 Migration Guide"},"353":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.beta. edition = \"2024.beta\";","breadcrumbs":"2024 Migration Guide » Using the New Edition","id":"353","title":"Using the New Edition"},"354":{"body":"The Move CLI has a migration tool that updates the code to the new edition. To use the migration tool, run the following command: $ sui move migrate The migration tool will update the code to use the let mut syntax, the new public modifier for strucs, and the public(package) function visibility instead of friend declarations.","breadcrumbs":"2024 Migration Guide » Migration Tool","id":"354","title":"Migration Tool"},"355":{"body":"Move 2024 introduces let mut syntax to declare mutable variables. The let mut syntax is used to declare a mutable variable that can be changed after it is declared. let mut declaration is now required for mutable variables. Compiler will emit an error if you try to reassign a variable without the mut keyword. // Move 2020\nlet x: u64 = 10;\nx = 20; // Move 2024\nlet mut x: u64 = 10;\nx = 20; Additionally, the mut keyword is used in tuple destructuring and function arguments to declare mutable variables. // takes by value and mutates\nfun takes_by_value_and_mutates(mut v: Value): Value { v.field = 10; v\n} // `mut` should be placed before the variable name\nfun destruct() { let (x, y) = point::get_point(); let (mut x, y) = point::get_point(); let (mut x, mut y) = point::get_point();\n} // in struct unpack\nfun unpack() { let Point { x, mut y } = point::get_point(); let Point { mut x, mut y } = point::get_point();\n}","breadcrumbs":"2024 Migration Guide » Mutable bindings with let mut","id":"355","title":"Mutable bindings with let mut"},"356":{"body":"In Move 2024, the friend keyword is deprecated. Instead, you can use the public(package) visibility modifier to make functions visible to other modules in the same package. // Move 2020\nfriend book::friend_module;\npublic(friend) fun protected_function() {} // Move 2024\npublic(package) fun protected_function_2024() {}","breadcrumbs":"2024 Migration Guide » Friends are Deprecated","id":"356","title":"Friends are Deprecated"},"357":{"body":"In Move 2024, structs get a visibility modifier. Currently, the only available visibility modifier is public. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"2024 Migration Guide » Struct Visibility","id":"357","title":"Struct Visibility"},"358":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. Methods are automatically exported if the type is defined in the same module as the method. It is impossible to export methods for types defined in other modules. However, you can create custom aliases for methods in the module scope. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"2024 Migration Guide » Method Syntax","id":"358","title":"Method Syntax"},"359":{"body":"In Move 2024, some of the native and standard types received associated methods. For example, the vector type has a to_string method that converts the vector into a UTF8 string. fun aliases() { // vector to string and ascii string let str: String = b\"Hello, World!\".to_string(); let ascii: ascii::String = b\"Hello, World!\".to_ascii_string(); // address to bytes let bytes = @0xa11ce.to_bytes();\n} For the full list of built-in aliases, refer to the Standard Library and Sui Framework source code.","breadcrumbs":"2024 Migration Guide » Methods for Built-in Types","id":"359","title":"Methods for Built-in Types"},"36":{"body":"These are the changes to objects that transaction has made. In our case, we have created a new UpgradeCap object which is a special object that allows the sender to upgrade the package in the future, mutated the Gas object, and published a new package. Packages are also objects on Sui. ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├──────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::package::UpgradeCap │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Published Objects: │\n│ ┌── │\n│ │ PackageID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ │ Modules: todo_list │\n│ └── │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Object Changes","id":"36","title":"Object Changes"},"360":{"body":"Some of the built-in types support borrowing operators. The borrowing operator is used to get a reference to the element at the specified index. The borrowing operator is defined as []. fun play_vec() { let v = vector[1,2,3,4]; let first = &v[0]; // calls vector::borrow(v, 0) let first_mut = &mut v[0]; // calls vector::borrow_mut(v, 0) let first_copy = v[0]; // calls *vector::borrow(v, 0)\n} Types that support the borrowing operator are: vector sui::vec_map::VecMap sui::table::Table sui::bag::Bag sui::object_table::ObjectTable sui::object_bag::ObjectBag sui::linked_table::LinkedTable To implement the borrowing operator for a custom type, you need to add a #[syntax(index)] attribute to the methods. #[syntax(index)]\npublic fun borrow(c: &List, key: String): &T { /* ... */ } #[syntax(index)]\npublic fun borrow_mut(c: &mut List, key: String): &mut T { /* ... */ }","breadcrumbs":"2024 Migration Guide » Borrowing Operator","id":"360","title":"Borrowing Operator"},"361":{"body":"In Move 2024, methods can be associated with types. The alias can be defined for any type locally to the module; or publicly, if the type is defined in the same module. // my_module.move\n// Local: type is foreign to the module\nuse fun my_custom_function as vector.do_magic; // sui-framework/kiosk/kiosk.move\n// Exported: type is defined in the same module\npublic use fun kiosk_owner_cap_for as KioskOwnerCap.kiosk;","breadcrumbs":"2024 Migration Guide » Method Aliases","id":"361","title":"Method Aliases"},"362":{"body":"To talk about best practices for upgradeability, we need to first understand what can be upgraded in a package. The base premise of upgradeability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed (if they are not used in public signatures) use std::string::String; use sui::event; // can be removed // public structs can not be removed and can't be changed public struct Book has key { id: UID, title: String, } // public structs can not be removed and can't be changed public struct BookCreated has copy, drop { /* ... */ } // public functions can not be removed and their signature can never change // but the implementation can be changed public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) // can be removed and changed event::emit(BookCreated { /* ... */ }) } // package-visibility functions can be removed and changed public(package) fun create_book_package(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Upgradability Practices » Upgradeability Practices","id":"362","title":"Upgradeability Practices"},"363":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) public struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Upgradability Practices » Versioning objects","id":"363","title":"Versioning objects"},"364":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { use sui::vec_map::VecMap; use std::string::String; /// The base object public struct Config has key { id: UID, version: u16 } /// The actual configuration public struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Upgradability Practices » Versioning configuration with dynamic fields","id":"364","title":"Versioning configuration with dynamic fields"},"365":{"body":"This section is coming soon!","breadcrumbs":"Upgradability Practices » Modular architecture","id":"365","title":"Modular architecture"},"366":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Building against Limits » Building against Limits","id":"366","title":"Building against Limits"},"367":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Building against Limits » Transaction Size","id":"367","title":"Transaction Size"},"368":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Building against Limits » Object Size","id":"368","title":"Object Size"},"369":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Building against Limits » Single Pure Argument Size","id":"369","title":"Single Pure Argument Size"},"37":{"body":"This last section contains changes to SUI Coins, in our case, we have spent around 0.015 SUI, which in MIST is 10,500,000. You can see it under the amount field in the output. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -10426280 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Balance Changes","id":"37","title":"Balance Changes"},"370":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Building against Limits » Maximum Number of Objects created","id":"370","title":"Maximum Number of Objects created"},"371":{"body":"The maximum number of dynamic fields that can be created in a single object is 1024. If an object attempts to create more than 1024 dynamic fields, it will be rejected by the network.","breadcrumbs":"Building against Limits » Maximum Number of Dynamic Fields created","id":"371","title":"Maximum Number of Dynamic Fields created"},"372":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Building against Limits » Maximum Number of Events","id":"372","title":"Maximum Number of Events"},"373":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Better error handling » Better error handling","id":"373","title":"Better error handling"},"374":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Better error handling » Rule 1: Handle all possible scenarios","id":"374","title":"Rule 1: Handle all possible scenarios"},"375":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Better error handling » Rule 2: Abort with different codes","id":"375","title":"Rule 2: Abort with different codes"},"376":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Better error handling » Rule 3: Return bool instead of assert","id":"376","title":"Rule 3: Return bool instead of assert"},"377":{"body":"","breadcrumbs":"Coding Conventions » Coding Conventions","id":"377","title":"Coding Conventions"},"378":{"body":"","breadcrumbs":"Coding Conventions » Naming","id":"378","title":"Naming"},"379":{"body":"Module names should be in snake_case. Module names should be descriptive and should not be too long. module book::conventions { /* ... */ }\nmodule book::common_pracices { /* ... */ }","breadcrumbs":"Coding Conventions » Module","id":"379","title":"Module"},"38":{"body":"It is possible to specify the --json flag during publishing to get the output in JSON format. This is useful if you want to parse the output programmatically or store it for later use. $ sui client publish --gas-budget 100000000 --json","breadcrumbs":"Hello, Sui! » Alternative Output","id":"38","title":"Alternative Output"},"380":{"body":"Constants should be in SCREAMING_SNAKE_CASE. Error constants should be in EPascalCase const MAX_PRICE: u64 = 1000;\nconst EInvalidInput: u64 = 0;","breadcrumbs":"Coding Conventions » Constant","id":"380","title":"Constant"},"381":{"body":"Function names should be in snake_case. Function names should be descriptive. public fun add(a: u64, b: u64): u64 { a + b }\npublic fun create_if_not_exists() { /* ... */ }","breadcrumbs":"Coding Conventions » Function","id":"381","title":"Function"},"382":{"body":"Struct names should be in PascalCase. Struct fields should be in snake_case. Capabilities should be suffixed with Cap. public struct Hero has key { id: UID value: u64, another_value: u64,\n} public struct AdminCap has key { id: UID }","breadcrumbs":"Coding Conventions » Struct","id":"382","title":"Struct"},"383":{"body":"Struct methods should be in snake_case. If there's multiple structs with the same method, the method should be prefixed with the struct name. In this case, an alias can be added to the method using use fun. public fun value(h: &Hero): u64 { h.value } public use fun hero_health as Hero.health;\npublic fun hero_health(h: &Hero): u64 { h.another_value } public use fun boar_health as Boar.health;\npublic fun boar_health(b: &Boar): u64 { b.another_value }","breadcrumbs":"Coding Conventions » Struct Method","id":"383","title":"Struct Method"},"384":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Parallel Execution - term used to describe the ability of the Sui runtime to execute transactions in parallel, including the ones that involve shared objects. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"A - Glossary » Appendix A: Glossary","id":"384","title":"Appendix A: Glossary"},"385":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"A - Glossary » Abilities","id":"385","title":"Abilities"},"386":{"body":"Reserved addresses are special addresses that have a specific purpose on Sui. They stay the same between environments and are used for specific native operations. 0x1 - address of the Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the SuiSystem object 0x6 - address of the system Clock object 0x8 - address of the system Random object 0x403 - address of the DenyList system object","breadcrumbs":"B - Reserved Addresses » Appendix B: Reserved Addresses","id":"386","title":"Appendix B: Reserved Addresses"},"387":{"body":"This section lists publications related to Move and Sui. The Move Borrow Checker by Sam Blackshear, John Mitchell, Todd Nowacki, Shaz Qadeer. Resources: A Safe Language Abstraction for Money by Sam Blackshear, David L. Dill, Shaz Qadeer, Clark W. Barrett, John C. Mitchell, Oded Padon, Yoni Zohar. Robust Safety for Move by Marco Patrignani, Sam Blackshear","breadcrumbs":"C - Publications » Appendix C: Publications","id":"387","title":"Appendix C: Publications"},"388":{"body":"To contribute to this book, please, submit a pull request to the GitHub repository . The repository contains the source files for the book, written in mdBook format.","breadcrumbs":"D - Contributing » Appendix D: Contributing","id":"388","title":"Appendix D: Contributing"},"389":{"body":"The Rust Book has been a great inspiration for this book. I am personally grateful to the authors of the book, Steve Klabnik and Carol Nichols, for their work, as I have learned a lot from it. This book is a small tribute to their work and an attempt to bring a similar learning experience to the Move community.","breadcrumbs":"E - Acknowledgements » Appendix E: Acknowledgements","id":"389","title":"Appendix E: Acknowledgements"},"39":{"body":"After the package is published on chain, we can interact with it. To do this, we need to find the address (object ID) of the package. It's under the Published Objects section of the Object Changes output. The address is unique for each package, so you will need to copy it from the output. In this example, the address is: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe Now that we have the address, we can interact with the package. In the next section, we will show how to interact with the package by sending transactions.","breadcrumbs":"Hello, Sui! » Using the Results","id":"39","title":"Using the Results"},"4":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"4","title":"Download Binary"},"40":{"body":"To demonstrate the interaction with the todo_list package, we will send a transaction to create a new list and add an item to it. Transactions are sent via the sui client ptb command, it allows using the Transaction Blocks at full capacity. The command may look big and complex, but we go through it step by step.","breadcrumbs":"Hello, Sui! » Sending Transactions","id":"40","title":"Sending Transactions"},"41":{"body":"Before we construct the command, let's store the values we will use in the transaction. Replace the 0x4.... with the address of the package you have published. And MY_ADDRESS variable will be automatically set to your address from the CLI output. $ export PACKAGE_ID=0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe\n$ export MY_ADDRESS=$(sui client active-address)","breadcrumbs":"Hello, Sui! » Prepare the Variables","id":"41","title":"Prepare the Variables"},"42":{"body":"Now to building an actual transaction. The transaction will consist of two parts: we will call the new function in the todo_list package to create a new list, and then we will transfer the list object to our account. The transaction will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--assign sender @$MY_ADDRESS \\\n--move-call $PACKAGE_ID::todo_list::new \\\n--assign list \\\n--transfer-objects \"[list]\" sender In this command, we are using the ptb subcommand to build a transaction. Parameters that follow it define the actual commands and actions that the transaction will perform. The first two calls we make are utility calls to set the sender address to the command inputs and set the gas budget for the transaction. # sets the gas budget for the transaction\n--gas-budget 100000000 \\n\n# registers a variable \"sender=@...\"\n--assign sender @$MY_ADDRESS \\n Then we perform the actual call to a function in the package. We use the --move-call followed by the package ID, the module name, and the function name. In this case, we are calling the new function in the todo_list package. # calls the \"new\" function in the \"todo_list\" package under the $PACKAGE_ID address\n--move-call $PACKAGE_ID::todo_list::new The function that we defined actually returns a value, which we want need to store. We use the --assign command to give a name to the returned value. In this case, we are calling it list. And then we transfer the object to our account. --move-call $PACKAGE_ID::todo_list::new \\\n# assigns the result of the \"new\" function to the \"list\" variable (from the previous step)\n--assign list \\\n# transfers the object to the sender\n--transfer-objects \"[list]\" sender Once the command is constructed, you can run it in the terminal. If everything is correct, you should see the output similar to the one we had in previous sections. The output will contain the transaction digest, the transaction data, and the transaction effects. Spoiler: Full transaction output Transaction Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8\n╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭──────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 MoveCall: │ │\n│ │ ┌ │ │\n│ │ │ Function: new │ │\n│ │ │ Module: todo_list │ │\n│ │ │ Package: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ C5Lie4dtP5d3OkKzFBa+xM0BiNoB/A4ItthDCRTRBUrEE+jXeNs7mP4AuGwi3nzfTskh29+R1j1Kba4Wdy3QDA== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8 │\n│ Status: Success │\n│ Executed Epoch: 1213 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 2318000 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ FSz2fYXmKqTf77mFXNq5JK7cKY8agWja7V5yDKEgL8c3 │\n│ GgMZKTt482DYApbAZkPDtdssGHZLbxgjm2uMXhzJax8Q │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -2339880 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ The section that we want to focus on is the \"Object Changes\". More specifically, the \"Created Objects\" part of it. It contains the object ID, the type and the version of the TodoList that you have created. We will use this object ID to interact with the list. ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 22 │\n│ │ Digest: HyWdUpjuhjLY38dLpg6KPHQ3bt4BqQAbdF5gB8HQdEqG │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯ In this example the object ID is 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553. And the owner should be your account address. We achieved this by transferring the object to the sender in the last command of the transaction. Another way to test that you have successfully created the list is to check the account objects. $ sui client objects It should have an object that looks similar to this: ╭ ... ╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │\n│ │ version │ 22 │ │\n│ │ digest │ /DUEiCLkaNSgzpZSq2vSV0auQQEQhyH9occq9grMBZM= │ │\n│ │ objectType │ 0x468d..29fe::todo_list::TodoList │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n| ... |","breadcrumbs":"Hello, Sui! » Building the Transaction in CLI","id":"42","title":"Building the Transaction in CLI"},"43":{"body":"The TodoList that we created in the previous step is an object that you can interact with as its owner. You can call functions defined in the todo_list module on this object. To demonstrate this, we will add an item to the list. First, we will add just one item, and in the second transaction we will add 3 and remove another one. Double check that you have variables set up from the previous step , and then add one more variable for the list object. $ export LIST_ID=0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 Now we can construct the transaction to add an item to the list. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish the Hello, Sui chapter'\" In this command, we are calling the add function in the todo_list package. The function takes two arguments: the list object and the item to add. The item is a string, so we need to wrap it in single quotes. The command will add the item to the list. If everything is correct, you should see the output similar to the one we had in previous sections. Now you can check the list object to see if the item was added. $ sui client object $LIST_ID The output should contain the item that you have added. ╭───────────────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ version │ 24 │\n│ digest │ FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ │\n│ objType │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ owner │ ╭──────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ │ AddressOwner │ 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │ │\n│ │ ╰──────────────┴──────────────────────────────────────────────────────────────────────╯ │\n│ prevTx │ EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1 │\n│ storageRebate │ 1558000 │\n│ content │ ╭───────────────────┬───────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ │ dataType │ moveObject │ │\n│ │ │ type │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │ │\n│ │ │ hasPublicTransfer │ true │ │\n│ │ │ fields │ ╭───────┬───────────────────────────────────────────────────────────────────────────────╮ │ │\n│ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ id │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │ │ │\n│ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │\n│ │ │ │ │ items │ ╭─────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ finish the Hello, Sui chapter │ │ │ │\n│ │ │ │ │ │ ╰─────────────────────────────────╯ │ │ │\n│ │ │ │ ╰───────┴───────────────────────────────────────────────────────────────────────────────╯ │ │\n│ │ ╰───────────────────┴───────────────────────────────────────────────────────────────────────────────────────────╯ │\n╰───────────────┴───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ A JSON representation of the object can be obtained by adding the --json flag to the command. $ sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"24\", \"digest\": \"FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1\", \"storageRebate\": \"1558000\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [\"Finish the Hello, Sui chapter\"] } }\n}","breadcrumbs":"Hello, Sui! » Passing Objects to Functions","id":"43","title":"Passing Objects to Functions"},"44":{"body":"You can chain multiple commands in a single transaction. This shows the power of Transaction Blocks! Using the same list object, we will add three more items and remove one. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish Concepts chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Read the Move Basics chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Learn about Object Model'\" \\\n--move-call $PACKAGE_ID::todo_list::remove @$LIST_ID 0 If previous commands were successful, this one should not be any different. You can check the list object to see if the items were added and removed. The JSON representation is a bit more readable! sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"25\", \"digest\": \"EDTXDsteqPGAGu4zFAj5bbQGTkucWk4hhuUquk39enGA\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"7SXLGBSh31jv8G7okQ9mEgnw5MnTfvzzHEHpWf3Sa9gY\", \"storageRebate\": \"1922800\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [ \"Finish Concepts chapter\", \"Read the Move Basics chapter\", \"Learn about Object Model\" ] } }\n} Commands don't have to be in the same package or operate on the same object. Within a single transaction block, you can interact with multiple packages and objects. This is a powerful feature that allows you to build complex interactions on-chain!","breadcrumbs":"Hello, Sui! » Chaining Commands","id":"44","title":"Chaining Commands"},"45":{"body":"In this guide, we have shown how to publish a package on the Move blockchain and interact with it using the Sui CLI. We have demonstrated how to create a new list object, add items to it, and remove them. We have also shown how to chain multiple commands in a single transaction block. This guide should give you a good starting point for building your own applications on the Sui blockchain!","breadcrumbs":"Hello, Sui! » Conclusion","id":"45","title":"Conclusion"},"46":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"46","title":"Concepts"},"47":{"body":"Move is a language for writing smart contracts - programs that are stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » Package » Package","id":"47","title":"Package"},"48":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Package usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » Package » Package Structure","id":"48","title":"Package Structure"},"49":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » Package » Published Package","id":"49","title":"Published Package"},"5":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"5","title":"Install using Homebrew (MacOS)"},"50":{"body":"Package Manifest Address Packages in the Move Reference.","breadcrumbs":"Concepts » Package » Links","id":"50","title":"Links"},"51":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"51","title":"Package Manifest"},"52":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"52","title":"Sections"},"53":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"53","title":"Package"},"54":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"54","title":"Dependencies"},"55":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"55","title":"Resolving version conflicts with override"},"56":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"56","title":"Dev-dependencies"},"57":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"57","title":"Addresses"},"58":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"58","title":"Dev-addresses"},"59":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"59","title":"TOML styles"},"6":{"body":"You can install Sui using the Chocolatey package manager for Windows. choco install sui","breadcrumbs":"Before we begin » Install Sui » Install using Chocolatey (Windows)","id":"6","title":"Install using Chocolatey (Windows)"},"60":{"body":"Packages in the Move Reference.","breadcrumbs":"Concepts » Manifest » Further Reading","id":"60","title":"Further Reading"},"61":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x6 - address of the system Clock object You can find all reserved addresses in the Appendix B .","breadcrumbs":"Concepts » Address » Address","id":"61","title":"Address"},"62":{"body":"Address type in Move","breadcrumbs":"Concepts » Address » Further reading","id":"62","title":"Further reading"},"63":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address . Sui supports multiple cryptographic algorithms for account generation. The two supported curves are ed25519, secp256k1, and there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.","breadcrumbs":"Concepts » Account » Account","id":"63","title":"Account"},"64":{"body":"Cryptography in Sui in the Sui Blog Keys and Addresses in the Sui Docs Signatures in the Sui Docs","breadcrumbs":"Concepts » Account » Further Reading","id":"64","title":"Further Reading"},"65":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"65","title":"Transaction"},"66":{"body":"Every transaction explicitly specifies the objects it operates on! Transactions consist of: a sender - the account that signs the transaction; a list (or a chain) of commands - the operations to be executed; command inputs - the arguments for the commands: either pure - simple values like numbers or strings, or object - objects that the transaction will access; a gas object - the Coin object used to pay for the transaction; gas price and budget - the cost of the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"66","title":"Transaction Structure"},"67":{"body":"Sui transactions may consist of multiple commands. Each command is a single built-in command (like publishing a package) or a call to a function in an already published package. The commands are executed in the order they are listed in the transaction, and they can use the results of the previous commands, forming a chain. Transaction either succeeds or fails as a whole. Schematically, a transaction looks like this (in pseudo-code): Inputs:\n- sender = 0xa11ce Commands:\n- payment = SplitCoins(Gas, [ 1000 ])\n- item = MoveCall(0xAAA::market::purchase, [ payment ])\n- TransferObjects(item, sender) In this example, the transaction consists of three commands: SplitCoins - a built-in command that splits a new coin from the passed object, in this case, the Gas object; MoveCall - a command that calls a function purchase in a package 0xAAA, module market with the given arguments - the payment object; TransferObjects - a built-in command that transfers the object to the recipient.","breadcrumbs":"Concepts » Transaction » Commands","id":"67","title":"Commands"},"68":{"body":"Transaction effects are the changes that a transaction makes to the blockchain state. More specifically, a transaction can change the state in the following ways: use the gas object to pay for the transaction; create, update, or delete objects; emit events; The result of the executed transaction consists of different parts: Transaction Digest - the hash of the transaction which is used to identify the transaction; Transaction Data - the inputs, commands and gas object used in the transaction; Transaction Effects - the status and the \"effects\" of the transaction, more specifically: the status of the transaction, updates to objects and their new versions, the gas object used, the gas cost of the transaction, and the events emitted by the transaction; Events - the custom events emitted by the transaction; Object Changes - the changes made to the objects, including the change of ownership ; Balance Changes - the changes made to the aggregate balances of the account involved in the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Effects","id":"68","title":"Transaction Effects"},"69":{"body":"This chapter is all about the basic syntax of the Move language. It covers the basics of the language, such as types, modules, functions, and control flow. It focuses on the language without a storage model or a blockchain, and explains the essential concepts of the language. To learn features specific to Sui, such as storage functions and abilities, refer to the Using Objects chapter, however, it is recommended to start with this chapter first.","breadcrumbs":"Move Basics » Move Basics","id":"69","title":"Move Basics"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet Make sure that your system has the latest Rust versions with the command below. rustup update stable","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Move Basics » Module » Module","id":"70","title":"Module"},"71":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions, constants and imports all part of the module: Structs Functions Constants Imports Struct Methods","breadcrumbs":"Move Basics » Module » Module declaration","id":"71","title":"Module declaration"},"72":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module 0x0::address_literal { /* ... */ }\nmodule book::named_address { /* ... */ } Addresses section in the Move.toml: # Move.toml\n[addresses]\nbook = \"0x0\"","breadcrumbs":"Move Basics » Module » Address / Named address","id":"72","title":"Address / Named address"},"73":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Move Basics » Module » Module members","id":"73","title":"Module members"},"74":{"body":"Modules in the Move Reference.","breadcrumbs":"Move Basics » Module » Further reading","id":"74","title":"Further reading"},"75":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Move Basics » Comments » Comments","id":"75","title":"Comments"},"76":{"body":"module book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. module book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Move Basics » Comments » Line comment","id":"76","title":"Line comment"},"77":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. module book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Move Basics » Comments » Block comment","id":"77","title":"Block comment"},"78":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. /// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Move Basics » Comments » Doc comment","id":"78","title":"Doc comment"},"79":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Move Basics » Primitive Types » Primitive Types","id":"79","title":"Primitive Types"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u16 = 42;","breadcrumbs":"Move Basics » Primitive Types » Variables and assignment","id":"80","title":"Variables and assignment"},"81":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Move Basics » Primitive Types » Booleans","id":"81","title":"Booleans"},"82":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Move Basics » Primitive Types » Integer Types","id":"82","title":"Integer Types"},"83":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 For more operations, including bitwise operations, please refer to the Move Reference . The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Move Basics » Primitive Types » Operations","id":"83","title":"Operations"},"84":{"body":"Move supports explicit casting between integer types. The syntax for it is: as Note, that it may require parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = x as u16;\nlet z = 2 * (x as u16); // ambiguous, requires parentheses A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Move Basics » Primitive Types » Casting with as","id":"84","title":"Casting with as"},"85":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Move Basics » Primitive Types » Overflow","id":"85","title":"Overflow"},"86":{"body":"Bool in the Move Reference. Integer in the Move Reference.","breadcrumbs":"Move Basics » Primitive Types » Further reading","id":"86","title":"Further reading"},"87":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Move Basics » Address Type » Address Type","id":"87","title":"Address Type"},"88":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string::String; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Move Basics » Address Type » Conversion","id":"88","title":"Conversion"},"89":{"body":"Address in the Move Reference.","breadcrumbs":"Move Basics » Address Type » Further reading","id":"89","title":"Further reading"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition, some syntax won't get highlighted.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert a unit () - an empty expression.","breadcrumbs":"Move Basics » Expression » Expression","id":"90","title":"Expression"},"91":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Move Basics » Expression » Literals","id":"91","title":"Literals"},"92":{"body":"Arithmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Move Basics » Expression » Operators","id":"92","title":"Operators"},"93":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\n// let none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; // block is an expression, so it can be used in an expression and\n// doesn't have to be assigned to a variable.\n{ let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Move Basics » Expression » Blocks","id":"93","title":"Blocks"},"94":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Move Basics » Expression » Function Calls","id":"94","title":"Function Calls"},"95":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) { expr; }; // loop is an expression, but returns `()` as well.\nloop { expr; break };","breadcrumbs":"Move Basics » Expression » Control Flow Expressions","id":"95","title":"Control Flow Expressions"},"96":{"body":"Move's type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Move Basics » Struct » Custom Types with Struct","id":"96","title":"Custom Types with Struct"},"97":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. Fields of a struct are private and can only be accessed by the module defining the struct. Reading and writing the fields of a struct in other modules is only possible if the module defining the struct provides public functions to access the fields.","breadcrumbs":"Move Basics » Struct » Struct","id":"97","title":"Struct"},"98":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. let mut artist = Artist { name: b\"The Beatles\".to_string()\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Move Basics » Struct » Create and use an instance","id":"98","title":"Create and use an instance"},"99":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and ignore the `name` field.\nlet Artist { name: _ } = artist;","breadcrumbs":"Move Basics » Struct » Unpacking a struct","id":"99","title":"Unpacking a struct"}},"length":390,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"14":{"tf":2.23606797749979},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":23,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.3166247903554},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":3.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.6457513110645907},"271":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.4641016151377544},"88":{"tf":2.23606797749979},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"319":{"tf":1.7320508075688772},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"366":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.0}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.7320508075688772},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.7320508075688772}}}},"t":{"df":14,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.58257569495584},"208":{"tf":2.449489742783178},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":3.872983346207417},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"19":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.3166247903554},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"93":{"tf":3.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.449489742783178},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.23606797749979},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.4142135623730951},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":2.8284271247461903},"270":{"tf":1.4142135623730951},"271":{"tf":3.4641016151377544},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":59,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":3.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"336":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.3166247903554},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":2.23606797749979},"77":{"tf":3.0},"78":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":23,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":1.7320508075688772},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.23606797749979},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":8,"docs":{"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":2.6457513110645907},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":7,"docs":{"137":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":29,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.605551275463989},"180":{"tf":2.6457513110645907},"181":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.0},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"348":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.0},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"55":{"tf":3.0},"56":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":1.7320508075688772},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.1622776601683795},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"324":{"tf":3.605551275463989},"325":{"tf":1.7320508075688772},"326":{"tf":2.0},"327":{"tf":2.6457513110645907},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.3166247903554},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.6457513110645907},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":34,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.6457513110645907},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":3.7416573867739413},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.0},"298":{"tf":2.23606797749979},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.6457513110645907},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":2.8284271247461903},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":3.0},"274":{"tf":1.4142135623730951},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":2.6457513110645907},"332":{"tf":2.449489742783178},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"35":{"tf":2.0},"372":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":31,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.4142135623730951}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.4142135623730951},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.6457513110645907}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"92":{"tf":2.23606797749979},"93":{"tf":3.3166247903554},"94":{"tf":1.7320508075688772},"95":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":2.8284271247461903},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.0},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.449489742783178},"283":{"tf":3.4641016151377544},"284":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":3.0},"288":{"tf":3.0},"289":{"tf":2.449489742783178},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":4.358898943540674},"295":{"tf":2.23606797749979},"296":{"tf":2.0},"297":{"tf":2.0},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.449489742783178},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":32,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"239":{"tf":3.0},"240":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":122,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.3166247903554},"159":{"tf":3.0},"160":{"tf":2.23606797749979},"161":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":2.8284271247461903},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":4.0},"239":{"tf":3.872983346207417},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.6457513110645907},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":3.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.8284271247461903},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.7320508075688772},"263":{"tf":2.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":1.7320508075688772},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.7320508075688772}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":61,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":3.4641016151377544},"114":{"tf":2.23606797749979},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"313":{"tf":1.0}},"i":{"df":16,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.23606797749979},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":3,"docs":{"101":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.0},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":55,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"209":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"138":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":1.7320508075688772},"295":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.4641016151377544}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":2.8284271247461903},"143":{"tf":2.6457513110645907},"144":{"tf":3.4641016151377544},"145":{"tf":3.7416573867739413},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.605551275463989},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.449489742783178},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":2.23606797749979},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":30,"docs":{"179":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":17,"docs":{"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.0},"83":{"tf":1.0}}}},"df":135,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.1622776601683795},"112":{"tf":2.8284271247461903},"113":{"tf":3.605551275463989},"114":{"tf":2.449489742783178},"116":{"tf":3.1622776601683795},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.605551275463989},"72":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":146,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.0},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.4641016151377544},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.4142135623730951},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":113,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":4.58257569495584},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":3.4641016151377544},"221":{"tf":2.8284271247461903},"223":{"tf":1.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":3.0},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"238":{"tf":4.58257569495584},"239":{"tf":4.69041575982343},"240":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"242":{"tf":4.123105625617661},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":4.58257569495584},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"323":{"tf":2.8284271247461903},"324":{"tf":3.4641016151377544},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"363":{"tf":2.0},"364":{"tf":2.449489742783178},"368":{"tf":2.449489742783178},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.449489742783178},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":2.8284271247461903},"85":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":2.23606797749979},"130":{"tf":3.0},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.0},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.449489742783178},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.23606797749979},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":34,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.449489742783178},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":2.8284271247461903},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":3.3166247903554},"195":{"tf":2.6457513110645907},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":2.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"105":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.449489742783178},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.6457513110645907},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":4.123105625617661},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":3.3166247903554},"318":{"tf":1.7320508075688772},"319":{"tf":2.8284271247461903},"32":{"tf":3.3166247903554},"320":{"tf":1.7320508075688772},"321":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":53,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.0},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":1.4142135623730951},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"224":{"tf":1.0},"55":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.0},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.605551275463989},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":36,"docs":{"103":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":3.605551275463989},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.449489742783178},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.4142135623730951},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":74,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":2.6457513110645907},"247":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":2.8284271247461903},"132":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":2.449489742783178},"136":{"tf":2.8284271247461903},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":2.449489742783178},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.0},"350":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":2.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":121,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.8284271247461903},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.23606797749979},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.3166247903554},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.4641016151377544},"200":{"tf":2.0},"201":{"tf":3.4641016151377544},"202":{"tf":3.1622776601683795},"203":{"tf":3.605551275463989},"204":{"tf":3.0},"205":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":5.0},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":21,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.0},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":3.872983346207417},"261":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":4.358898943540674},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":4.242640687119285}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":155,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":1.7320508075688772},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.0},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.0},"193":{"tf":2.6457513110645907},"194":{"tf":4.47213595499958},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.6457513110645907},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":42,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.23606797749979},"250":{"tf":3.3166247903554},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.7416573867739413},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":21,"docs":{"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":12,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":228,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.23606797749979},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.23606797749979},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":3.872983346207417},"125":{"tf":2.449489742783178},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.605551275463989},"364":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":3.1622776601683795},"308":{"tf":2.0},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"15":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":17,"docs":{"1":{"tf":1.0},"14":{"tf":2.6457513110645907},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":23,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":2.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.8284271247461903},"102":{"tf":2.0},"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":3.4641016151377544},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.4641016151377544},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":3.3166247903554},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.8284271247461903},"271":{"tf":3.872983346207417},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.3166247903554},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.23606797749979},"58":{"tf":2.23606797749979},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":2.6457513110645907},"319":{"tf":2.0},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":97,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"32":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.449489742783178},"166":{"tf":1.7320508075688772},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":2.0},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":2.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":2.0}}}},"t":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.795831523312719},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":4.0},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":150,"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.4142135623730951},"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.4142135623730951},"118":{"tf":1.7320508075688772},"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":26,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":2.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.4641016151377544},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"93":{"tf":3.1622776601683795}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.6457513110645907},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.449489742783178},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":3.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"269":{"tf":3.1622776601683795},"270":{"tf":2.0},"271":{"tf":3.7416573867739413},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":2.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":2.0},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":3.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":65,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":2.0},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.1622776601683795},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.449489742783178},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.6457513110645907},"299":{"tf":3.1622776601683795},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.0},"336":{"tf":3.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.4641016151377544},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":2.6457513110645907},"77":{"tf":3.3166247903554},"78":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":3.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":44,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"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.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":2.0},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.449489742783178},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":2.0},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":9,"docs":{"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":2.449489742783178},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"156":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":2.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":3.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":13,"docs":{"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.872983346207417},"180":{"tf":3.0},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":2.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":2.0},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"348":{"tf":2.449489742783178},"349":{"tf":2.0},"350":{"tf":2.23606797749979}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":3.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.1622776601683795},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":3.0},"55":{"tf":3.0},"56":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"58":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":2.0},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.4641016151377544},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":3.872983346207417},"325":{"tf":2.0},"326":{"tf":2.23606797749979},"327":{"tf":3.0},"328":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":44,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.605551275463989},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.7320508075688772},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":37,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":3.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":1.4142135623730951},"288":{"tf":2.8284271247461903},"289":{"tf":2.23606797749979},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":3.872983346207417},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"298":{"tf":2.6457513110645907},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":2.0},"147":{"tf":2.0}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.8284271247461903},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":3.0},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.449489742783178},"345":{"tf":2.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":3.3166247903554},"274":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.6457513110645907},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"376":{"tf":2.0},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":3.0},"332":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"335":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"372":{"tf":2.0},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":34,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.7320508075688772}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.7320508075688772},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":2.0},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.8284271247461903}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"94":{"tf":2.0},"95":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":3.0},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":3.605551275463989},"284":{"tf":2.6457513110645907},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":3.3166247903554},"288":{"tf":3.1622776601683795},"289":{"tf":3.0},"290":{"tf":2.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":4.47213595499958},"295":{"tf":2.6457513110645907},"296":{"tf":2.23606797749979},"297":{"tf":2.23606797749979},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.449489742783178},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.7320508075688772},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":2.0},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":123,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.605551275463989},"159":{"tf":3.3166247903554},"160":{"tf":2.6457513110645907},"161":{"tf":2.23606797749979},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":2.8284271247461903},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":4.123105625617661},"239":{"tf":4.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":2.8284271247461903},"243":{"tf":1.0},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":2.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.8284271247461903},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"191":{"tf":3.3166247903554},"192":{"tf":2.0},"193":{"tf":3.1622776601683795},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":2.0},"263":{"tf":2.23606797749979},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":2.0},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":2.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":64,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"255":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":3.7416573867739413},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":2.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"313":{"tf":1.0}},"i":{"df":17,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.7320508075688772},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.449489742783178},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.4142135623730951},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":56,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"138":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":2.0},"295":{"tf":1.0},"366":{"tf":3.0},"367":{"tf":1.7320508075688772},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":3.605551275463989},"145":{"tf":3.872983346207417},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":3.0},"165":{"tf":3.872983346207417},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.6457513110645907},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"383":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.6457513110645907},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":36,"docs":{"179":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":18,"docs":{"158":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":136,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":3.4641016151377544},"112":{"tf":3.0},"113":{"tf":3.7416573867739413},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"116":{"tf":3.4641016151377544},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.4641016151377544},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.449489742783178},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":3.872983346207417},"72":{"tf":2.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.4142135623730951},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":214,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.8284271247461903},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.872983346207417},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.605551275463989},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.8284271247461903},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"281":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"309":{"tf":1.0},"311":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":128,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":4.898979485566356},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.23606797749979},"219":{"tf":2.23606797749979},"220":{"tf":3.7416573867739413},"221":{"tf":3.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"227":{"tf":3.4641016151377544},"228":{"tf":2.6457513110645907},"229":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"231":{"tf":3.1622776601683795},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":4.69041575982343},"239":{"tf":4.795831523312719},"240":{"tf":2.6457513110645907},"241":{"tf":2.0},"242":{"tf":4.358898943540674},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.6457513110645907},"294":{"tf":4.69041575982343},"295":{"tf":2.8284271247461903},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"323":{"tf":2.8284271247461903},"324":{"tf":3.605551275463989},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.3166247903554},"363":{"tf":2.23606797749979},"364":{"tf":2.449489742783178},"368":{"tf":2.6457513110645907},"370":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.1622776601683795},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"133":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.6457513110645907},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.0},"92":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":2.449489742783178},"130":{"tf":3.3166247903554},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.23606797749979},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.6457513110645907},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.449489742783178},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.4142135623730951},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.7320508075688772},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":37,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":2.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":3.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":3.0},"193":{"tf":1.0},"194":{"tf":3.4641016151377544},"195":{"tf":2.8284271247461903},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"105":{"tf":1.0},"151":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.6457513110645907},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":20,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":2.23606797749979},"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},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":97,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":2.0},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":102,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.8284271247461903},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":4.358898943540674},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":2.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.6457513110645907},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"319":{"tf":3.1622776601683795},"32":{"tf":3.4641016151377544},"320":{"tf":2.0},"321":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.4142135623730951},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":56,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":3.0},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.23606797749979},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":2.0},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.7320508075688772},"224":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.7416573867739413},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"22":{"tf":1.7320508075688772},"23":{"tf":2.6457513110645907},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.6457513110645907},"173":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":40,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":3.7416573867739413},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.7320508075688772},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"311":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":35,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":3.1622776601683795},"132":{"tf":3.1622776601683795},"133":{"tf":2.23606797749979},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":3.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.7320508075688772},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.8284271247461903},"165":{"tf":3.4641016151377544},"166":{"tf":2.6457513110645907},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"350":{"tf":2.0},"355":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":4.242640687119285},"98":{"tf":3.3166247903554},"99":{"tf":3.1622776601683795}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.6457513110645907}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":2.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":3.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.1622776601683795},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.1622776601683795},"320":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.6457513110645907},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"34":{"tf":1.0},"351":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.4641016151377544},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.605551275463989},"200":{"tf":2.449489742783178},"201":{"tf":3.7416573867739413},"202":{"tf":3.4641016151377544},"203":{"tf":3.872983346207417},"204":{"tf":3.1622776601683795},"205":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":5.0990195135927845},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":25,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":3.0},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":60,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":4.123105625617661},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.23606797749979},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":4.47213595499958},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.0},"67":{"tf":2.449489742783178},"68":{"tf":4.47213595499958}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.1622776601683795},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":157,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":2.0},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.123105625617661},"193":{"tf":2.6457513110645907},"194":{"tf":4.58257569495584},"195":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.449489742783178},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.8284271247461903},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.23606797749979},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.6457513110645907},"250":{"tf":3.605551275463989},"251":{"tf":2.23606797749979},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.872983346207417},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":13,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.6457513110645907},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":241,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.4142135623730951},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.8284271247461903},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.449489742783178},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"124":{"tf":4.123105625617661},"125":{"tf":2.8284271247461903},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.1622776601683795},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.7416573867739413},"364":{"tf":2.0},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.0},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":15,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":2.23606797749979},"307":{"tf":3.4641016151377544},"308":{"tf":2.23606797749979},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":1,"docs":{"374":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"375":{"tf":1.0}}},"3":{"df":1,"docs":{"376":{"tf":1.0}}},"8":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"385":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"375":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"30":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"df":1,"docs":{"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"119":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"386":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"115":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"270":{"tf":1.0},"319":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"366":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"376":{"tf":1.0}}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"343":{"tf":1.0}}},"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"4":{"tf":1.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"376":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"29":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"203":{"tf":1.0},"242":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":1,"docs":{"387":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"340":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"275":{"tf":1.0},"298":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"299":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"223":{"tf":1.0},"226":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"380":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"377":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"335":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"287":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"231":{"tf":1.0},"245":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"242":{"tf":1.0},"253":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"115":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"296":{"tf":1.0},"375":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"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":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":1,"docs":{"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"344":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"373":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"35":{"tf":1.0},"372":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"246":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"338":{"tf":1.0}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"121":{"tf":1.0},"334":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"250":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"240":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"235":{"tf":1.0},"381":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"308":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"352":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":3,"docs":{"249":{"tf":1.0},"254":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"219":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"258":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"339":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.0}},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"y":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"366":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"k":{"df":2,"docs":{"152":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"352":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"264":{"tf":1.0},"379":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"307":{"tf":1.0},"352":{"tf":1.0},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"329":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"355":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"287":{"tf":1.0},"378":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"353":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"301":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"206":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"36":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0}},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"257":{"tf":1.0},"360":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"349":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"104":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"116":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"175":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"129":{"tf":1.0},"198":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"296":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"170":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":26,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"376":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}},"n":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"217":{"tf":1.0},"369":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"117":{"tf":1.0},"190":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"244":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"163":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"333":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":6,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.0},"191":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":6,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"354":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"284":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"df":11,"docs":{"130":{"tf":1.0},"151":{"tf":1.0},"229":{"tf":1.0},"270":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"161":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"363":{"tf":1.0},"364":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"133":{"tf":1.0},"327":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file +{"doc_urls":["index.html#the-move-book","foreword.html#foreword","before-we-begin/index.html#before-we-begin","before-we-begin/install-sui.html#install-sui","before-we-begin/install-sui.html#download-binary","before-we-begin/install-sui.html#install-using-homebrew-macos","before-we-begin/install-sui.html#install-using-chocolatey-windows","before-we-begin/install-sui.html#build-using-cargo-macos-linux","before-we-begin/install-sui.html#troubleshooting","before-we-begin/ide-support.html#set-up-your-ide","before-we-begin/ide-support.html#vscode","before-we-begin/ide-support.html#intellij-idea","before-we-begin/ide-support.html#emacs","before-we-begin/ide-support.html#github-codespaces","before-we-begin/move-2024.html#move-2024","your-first-move/hello-world.html#hello-world","your-first-move/hello-world.html#create-a-new-package","your-first-move/hello-world.html#directory-structure","your-first-move/hello-world.html#manifest","your-first-move/hello-world.html#sources","your-first-move/hello-world.html#tests","your-first-move/hello-world.html#other-folders","your-first-move/hello-world.html#compiling-the-package","your-first-move/hello-world.html#running-tests","your-first-move/hello-world.html#next-steps","your-first-move/hello-world.html#further-reading","your-first-move/hello-sui.html#hello-sui","your-first-move/hello-sui.html#create-a-new-package","your-first-move/hello-sui.html#add-the-code","your-first-move/hello-sui.html#build-the-package","your-first-move/hello-sui.html#set-up-an-account","your-first-move/hello-sui.html#requesting-coins","your-first-move/hello-sui.html#publish","your-first-move/hello-sui.html#transaction-data","your-first-move/hello-sui.html#transaction-effects","your-first-move/hello-sui.html#events","your-first-move/hello-sui.html#object-changes","your-first-move/hello-sui.html#balance-changes","your-first-move/hello-sui.html#alternative-output","your-first-move/hello-sui.html#using-the-results","your-first-move/hello-sui.html#sending-transactions","your-first-move/hello-sui.html#prepare-the-variables","your-first-move/hello-sui.html#building-the-transaction-in-cli","your-first-move/hello-sui.html#passing-objects-to-functions","your-first-move/hello-sui.html#chaining-commands","your-first-move/hello-sui.html#conclusion","concepts/index.html#concepts","concepts/packages.html#package","concepts/packages.html#package-structure","concepts/packages.html#published-package","concepts/packages.html#links","concepts/manifest.html#package-manifest","concepts/manifest.html#sections","concepts/manifest.html#package","concepts/manifest.html#dependencies","concepts/manifest.html#resolving-version-conflicts-with-override","concepts/manifest.html#dev-dependencies","concepts/manifest.html#addresses","concepts/manifest.html#dev-addresses","concepts/manifest.html#toml-styles","concepts/manifest.html#further-reading","concepts/address.html#address","concepts/address.html#further-reading","concepts/what-is-an-account.html#account","concepts/what-is-an-account.html#further-reading","concepts/what-is-a-transaction.html#transaction","concepts/what-is-a-transaction.html#transaction-structure","concepts/what-is-a-transaction.html#commands","concepts/what-is-a-transaction.html#transaction-effects","move-basics/index.html#move-basics","move-basics/module.html#module","move-basics/module.html#module-declaration","move-basics/module.html#address--named-address","move-basics/module.html#module-members","move-basics/module.html#further-reading","move-basics/comments.html#comments","move-basics/comments.html#line-comment","move-basics/comments.html#block-comment","move-basics/comments.html#doc-comment","move-basics/primitive-types.html#primitive-types","move-basics/primitive-types.html#variables-and-assignment","move-basics/primitive-types.html#booleans","move-basics/primitive-types.html#integer-types","move-basics/primitive-types.html#operations","move-basics/primitive-types.html#casting-with-as","move-basics/primitive-types.html#overflow","move-basics/primitive-types.html#further-reading","move-basics/address.html#address-type","move-basics/address.html#conversion","move-basics/address.html#further-reading","move-basics/expression.html#expression","move-basics/expression.html#literals","move-basics/expression.html#operators","move-basics/expression.html#blocks","move-basics/expression.html#function-calls","move-basics/expression.html#control-flow-expressions","move-basics/struct.html#custom-types-with-struct","move-basics/struct.html#struct","move-basics/struct.html#create-and-use-an-instance","move-basics/struct.html#unpacking-a-struct","move-basics/struct.html#further-reading","move-basics/abilities-introduction.html#abilities-introduction","move-basics/abilities-introduction.html#what-are-abilities","move-basics/abilities-introduction.html#abilities-syntax","move-basics/abilities-introduction.html#overview","move-basics/abilities-introduction.html#no-abilities","move-basics/abilities-introduction.html#further-reading","move-basics/drop-ability.html#abilities-drop","move-basics/drop-ability.html#types-with-the-drop-ability","move-basics/drop-ability.html#further-reading","move-basics/importing-modules.html#importing-modules","move-basics/importing-modules.html#importing-a-module","move-basics/importing-modules.html#importing-members","move-basics/importing-modules.html#grouping-imports","move-basics/importing-modules.html#resolving-name-conflicts","move-basics/importing-modules.html#adding-an-external-dependency","move-basics/importing-modules.html#importing-a-module-from-another-package","move-basics/standard-library.html#standard-library","move-basics/standard-library.html#most-common-modules","move-basics/standard-library.html#exported-addresses","move-basics/standard-library.html#implicit-imports","move-basics/standard-library.html#importing-std-without-sui-framework","move-basics/standard-library.html#source-code","move-basics/vector.html#vector","move-basics/vector.html#vector-syntax","move-basics/vector.html#vector-operations","move-basics/vector.html#destroying-a-vector-of-non-droppable-types","move-basics/vector.html#further-reading","move-basics/option.html#option","move-basics/option.html#in-practice","move-basics/option.html#using-option","move-basics/string.html#string","move-basics/string.html#strings-are-bytes","move-basics/string.html#working-with-utf-8-strings","move-basics/string.html#definition","move-basics/string.html#creating-a-string","move-basics/string.html#common-operations","move-basics/string.html#safe-utf-8-operations","move-basics/string.html#utf-8-limitations","move-basics/string.html#ascii-strings","move-basics/control-flow.html#control-flow","move-basics/control-flow.html#conditional-statements","move-basics/control-flow.html#repeating-statements-with-loops","move-basics/control-flow.html#the-while-loop","move-basics/control-flow.html#infinite-loop","move-basics/control-flow.html#exiting-a-loop-early","move-basics/control-flow.html#skipping-an-iteration","move-basics/control-flow.html#early-return","move-basics/constants.html#constants","move-basics/constants.html#naming-convention","move-basics/constants.html#constants-are-immutable","move-basics/constants.html#using-config-pattern","move-basics/constants.html#links","move-basics/assert-and-abort.html#aborting-execution","move-basics/assert-and-abort.html#abort","move-basics/assert-and-abort.html#assert","move-basics/assert-and-abort.html#error-constants","move-basics/assert-and-abort.html#further-reading","move-basics/function.html#function","move-basics/function.html#function-declaration","move-basics/function.html#accessing-functions","move-basics/function.html#multiple-return-values","move-basics/function.html#further-reading","move-basics/struct-methods.html#struct-methods","move-basics/struct-methods.html#method-syntax","move-basics/struct-methods.html#method-aliases","move-basics/struct-methods.html#aliasing-an-external-modules-method","move-basics/struct-methods.html#further-reading","move-basics/visibility.html#visibility-modifiers","move-basics/visibility.html#internal-visibility","move-basics/visibility.html#public-visibility","move-basics/visibility.html#package-visibility","move-basics/ownership-and-scope.html#ownership-and-scope","move-basics/ownership-and-scope.html#ownership","move-basics/ownership-and-scope.html#returning-a-value","move-basics/ownership-and-scope.html#passing-by-value","move-basics/ownership-and-scope.html#scopes-with-blocks","move-basics/ownership-and-scope.html#copyable-types","move-basics/ownership-and-scope.html#further-reading","move-basics/copy-ability.html#abilities-copy","move-basics/copy-ability.html#copying-and-drop","move-basics/copy-ability.html#types-with-the-copy-ability","move-basics/copy-ability.html#further-reading","move-basics/references.html#references","move-basics/references.html#layout","move-basics/references.html#reference","move-basics/references.html#mutable-reference","move-basics/references.html#passing-by-value","move-basics/references.html#full-example","move-basics/generics.html#generics","move-basics/generics.html#in-the-standard-library","move-basics/generics.html#generic-syntax","move-basics/generics.html#multiple-type-parameters","move-basics/generics.html#why-generics","move-basics/generics.html#phantom-type-parameters","move-basics/generics.html#constraints-on-type-parameters","move-basics/generics.html#further-reading","move-basics/type-reflection.html#type-reflection","move-basics/type-reflection.html#in-practice","move-basics/type-reflection.html#further-reading","move-basics/testing.html#testing","move-basics/testing.html#the-test-attribute","move-basics/testing.html#running-tests","move-basics/testing.html#test-fail-cases-with-expected_failure","move-basics/testing.html#utilities-with-test_only","move-basics/testing.html#further-reading","object/index.html#object-model","object/digital-assets.html#move---language-for-digital-assets","object/digital-assets.html#summary","object/digital-assets.html#further-reading","object/evolution-of-move.html#evolution-of-move","object/evolution-of-move.html#summary","object/evolution-of-move.html#further-reading","object/object-model.html#what-is-an-object","object/object-model.html#summary","object/object-model.html#further-reading","object/ownership.html#ownership","object/ownership.html#account-owner-or-single-owner","object/ownership.html#shared-state","object/ownership.html#immutable-frozen-state","object/ownership.html#object-owner","object/ownership.html#summary","object/ownership.html#next-steps","object/fast-path-and-consensus.html#fast-path--consensus","object/fast-path-and-consensus.html#concurrency-challenge","object/fast-path-and-consensus.html#fast-path","object/fast-path-and-consensus.html#consensus-path","object/fast-path-and-consensus.html#objects-owned-by-objects","object/fast-path-and-consensus.html#summary","storage/index.html#using-objects","storage/key-ability.html#the-key-ability","storage/key-ability.html#object-definition","storage/key-ability.html#types-with-the-key-ability","storage/key-ability.html#next-steps","storage/key-ability.html#further-reading","storage/storage-functions.html#storage-functions","storage/storage-functions.html#overview","storage/storage-functions.html#ownership-and-references-a-quick-recap","storage/storage-functions.html#transfer","storage/storage-functions.html#freeze","storage/storage-functions.html#owned---frozen","storage/storage-functions.html#share","storage/storage-functions.html#special-case-shared-object-deletion","storage/storage-functions.html#next-steps","storage/store-ability.html#ability-store","storage/store-ability.html#definition","storage/store-ability.html#example","storage/store-ability.html#types-with-the-store-ability","storage/store-ability.html#further-reading","storage/uid-and-id.html#uid-and-id","storage/uid-and-id.html#fresh-uid-generation","storage/uid-and-id.html#uid-lifecycle","storage/uid-and-id.html#keeping-the-uid","storage/uid-and-id.html#proof-of-deletion","storage/uid-and-id.html#id","storage/uid-and-id.html#fresh_object_address","storage/transfer-restrictions.html#restricted-and-public-transfer","storage/transfer-restrictions.html#public-storage-operations","storage/transfer-restrictions.html#implications-of-store","programmability/index.html#advanced-programmability","programmability/transaction-context.html#transaction-context","programmability/transaction-context.html#reading-the-transaction-context","programmability/transaction-context.html#mutability","programmability/transaction-context.html#generating-unique-addresses","programmability/module-initializer.html#module-initializer","programmability/module-initializer.html#init-features","programmability/module-initializer.html#trust-and-security","programmability/module-initializer.html#next-steps","programmability/capability.html#pattern-capability","programmability/capability.html#capability-is-an-object","programmability/capability.html#using-init-for-admin-capability","programmability/capability.html#address-check-vs-capability","programmability/epoch-and-time.html#epoch-and-time","programmability/epoch-and-time.html#epoch","programmability/epoch-and-time.html#time","programmability/collections.html#collections","programmability/collections.html#vector","programmability/collections.html#vecset","programmability/collections.html#vecmap","programmability/collections.html#limitations","programmability/collections.html#summary","programmability/collections.html#next-steps","programmability/dynamic-fields.html#dynamic-fields","programmability/dynamic-fields.html#definition","programmability/dynamic-fields.html#usage","programmability/dynamic-fields.html#foreign-types-as-dynamic-fields","programmability/dynamic-fields.html#orphaned-dynamic-fields","programmability/dynamic-fields.html#custom-type-as-a-field-name","programmability/dynamic-fields.html#exposing-uid","programmability/dynamic-fields.html#dynamic-fields-vs-fields","programmability/dynamic-fields.html#limits","programmability/dynamic-fields.html#applications","programmability/dynamic-fields.html#next-steps","programmability/dynamic-object-fields.html#dynamic-object-fields","programmability/dynamic-object-fields.html#definition","programmability/dynamic-object-fields.html#usage--differences-with-dynamic-fields","programmability/dynamic-object-fields.html#pricing-differences","programmability/dynamic-object-fields.html#next-steps","programmability/dynamic-collections.html#dynamic-collections","programmability/dynamic-collections.html#common-concepts","programmability/dynamic-collections.html#bag","programmability/dynamic-collections.html#objectbag","programmability/dynamic-collections.html#table","programmability/dynamic-collections.html#objecttable","programmability/dynamic-collections.html#summary","programmability/dynamic-collections.html#linkedtable","programmability/witness-pattern.html#pattern-witness","programmability/witness-pattern.html#witness-in-move","programmability/witness-pattern.html#instantiating-a-generic-type","programmability/witness-pattern.html#one-time-witness","programmability/witness-pattern.html#summary","programmability/witness-pattern.html#next-steps","programmability/one-time-witness.html#one-time-witness","programmability/one-time-witness.html#definition","programmability/one-time-witness.html#enforcing-the-otw","programmability/one-time-witness.html#summary","programmability/publisher.html#publisher-authority","programmability/publisher.html#definition","programmability/publisher.html#usage","programmability/publisher.html#publisher-as-admin-role","programmability/publisher.html#role-on-sui","programmability/publisher.html#next-steps","programmability/display.html#object-display","programmability/display.html#background","programmability/display.html#object-display-1","programmability/display.html#creator-privilege","programmability/display.html#standard-fields","programmability/display.html#working-with-display","programmability/display.html#template-syntax","programmability/display.html#multiple-display-objects","programmability/display.html#further-reading","programmability/events.html#events","programmability/events.html#emitting-events","programmability/events.html#event-structure","programmability/sui-framework.html#sui-framework","programmability/sui-framework.html#core","programmability/sui-framework.html#collections","programmability/sui-framework.html#utilities","programmability/sui-framework.html#exported-addresses","programmability/sui-framework.html#implicit-imports","programmability/sui-framework.html#source-code","programmability/bcs.html#binary-canonical-serialization","programmability/bcs.html#format","programmability/bcs.html#using-bcs","programmability/bcs.html#encoding","programmability/bcs.html#encoding-a-struct","programmability/bcs.html#decoding","programmability/bcs.html#wrapper-api","programmability/bcs.html#decoding-vectors","programmability/bcs.html#decoding-option","programmability/bcs.html#decoding-structs","programmability/bcs.html#summary","guides/2024-migration-guide.html#move-2024-migration-guide","guides/2024-migration-guide.html#using-the-new-edition","guides/2024-migration-guide.html#migration-tool","guides/2024-migration-guide.html#mutable-bindings-with-let-mut","guides/2024-migration-guide.html#friends-are-deprecated","guides/2024-migration-guide.html#struct-visibility","guides/2024-migration-guide.html#method-syntax","guides/2024-migration-guide.html#methods-for-built-in-types","guides/2024-migration-guide.html#borrowing-operator","guides/2024-migration-guide.html#method-aliases","guides/upgradeability-practices.html#upgradeability-practices","guides/upgradeability-practices.html#versioning-objects","guides/upgradeability-practices.html#versioning-configuration-with-dynamic-fields","guides/upgradeability-practices.html#modular-architecture","guides/building-against-limits.html#building-against-limits","guides/building-against-limits.html#transaction-size","guides/building-against-limits.html#object-size","guides/building-against-limits.html#single-pure-argument-size","guides/building-against-limits.html#maximum-number-of-objects-created","guides/building-against-limits.html#maximum-number-of-dynamic-fields-created","guides/building-against-limits.html#maximum-number-of-events","guides/better-error-handling.html#better-error-handling","guides/better-error-handling.html#rule-1-handle-all-possible-scenarios","guides/better-error-handling.html#rule-2-abort-with-different-codes","guides/better-error-handling.html#rule-3-return-bool-instead-of-assert","guides/coding-conventions.html#coding-conventions","guides/coding-conventions.html#naming","guides/coding-conventions.html#module","guides/coding-conventions.html#constant","guides/coding-conventions.html#function","guides/coding-conventions.html#struct","guides/coding-conventions.html#struct-method","appendix/glossary.html#appendix-a-glossary","appendix/glossary.html#abilities","appendix/reserved-addresses.html#appendix-b-reserved-addresses","appendix/publications.html#appendix-c-publications","appendix/contributing.html#appendix-d-contributing","appendix/acknowledgements.html#appendix-e-acknowledgements"],"index":{"documentStore":{"docInfo":{"0":{"body":38,"breadcrumbs":4,"title":2},"1":{"body":288,"breadcrumbs":2,"title":1},"10":{"body":23,"breadcrumbs":6,"title":1},"100":{"body":3,"breadcrumbs":5,"title":2},"101":{"body":43,"breadcrumbs":6,"title":2},"102":{"body":14,"breadcrumbs":5,"title":1},"103":{"body":39,"breadcrumbs":6,"title":2},"104":{"body":65,"breadcrumbs":5,"title":1},"105":{"body":37,"breadcrumbs":5,"title":1},"106":{"body":4,"breadcrumbs":6,"title":2},"107":{"body":135,"breadcrumbs":6,"title":2},"108":{"body":22,"breadcrumbs":7,"title":3},"109":{"body":4,"breadcrumbs":6,"title":2},"11":{"body":16,"breadcrumbs":7,"title":2},"110":{"body":30,"breadcrumbs":6,"title":2},"111":{"body":72,"breadcrumbs":6,"title":2},"112":{"body":46,"breadcrumbs":6,"title":2},"113":{"body":109,"breadcrumbs":6,"title":2},"114":{"body":60,"breadcrumbs":7,"title":3},"115":{"body":87,"breadcrumbs":7,"title":3},"116":{"body":71,"breadcrumbs":8,"title":4},"117":{"body":24,"breadcrumbs":6,"title":2},"118":{"body":81,"breadcrumbs":6,"title":2},"119":{"body":11,"breadcrumbs":6,"title":2},"12":{"body":13,"breadcrumbs":6,"title":1},"120":{"body":16,"breadcrumbs":6,"title":2},"121":{"body":28,"breadcrumbs":9,"title":5},"122":{"body":8,"breadcrumbs":6,"title":2},"123":{"body":18,"breadcrumbs":4,"title":1},"124":{"body":78,"breadcrumbs":5,"title":2},"125":{"body":51,"breadcrumbs":5,"title":2},"126":{"body":50,"breadcrumbs":8,"title":5},"127":{"body":3,"breadcrumbs":5,"title":2},"128":{"body":95,"breadcrumbs":4,"title":1},"129":{"body":113,"breadcrumbs":4,"title":1},"13":{"body":19,"breadcrumbs":7,"title":2},"130":{"body":56,"breadcrumbs":5,"title":2},"131":{"body":45,"breadcrumbs":4,"title":1},"132":{"body":65,"breadcrumbs":5,"title":2},"133":{"body":22,"breadcrumbs":7,"title":4},"134":{"body":24,"breadcrumbs":4,"title":1},"135":{"body":45,"breadcrumbs":5,"title":2},"136":{"body":73,"breadcrumbs":5,"title":2},"137":{"body":71,"breadcrumbs":7,"title":4},"138":{"body":38,"breadcrumbs":6,"title":3},"139":{"body":3,"breadcrumbs":5,"title":2},"14":{"body":31,"breadcrumbs":6,"title":2},"140":{"body":48,"breadcrumbs":6,"title":2},"141":{"body":131,"breadcrumbs":6,"title":2},"142":{"body":58,"breadcrumbs":7,"title":3},"143":{"body":106,"breadcrumbs":5,"title":1},"144":{"body":98,"breadcrumbs":6,"title":2},"145":{"body":99,"breadcrumbs":7,"title":3},"146":{"body":85,"breadcrumbs":6,"title":2},"147":{"body":89,"breadcrumbs":6,"title":2},"148":{"body":71,"breadcrumbs":4,"title":1},"149":{"body":47,"breadcrumbs":5,"title":2},"15":{"body":69,"breadcrumbs":4,"title":2},"150":{"body":23,"breadcrumbs":5,"title":2},"151":{"body":82,"breadcrumbs":6,"title":3},"152":{"body":6,"breadcrumbs":4,"title":1},"153":{"body":42,"breadcrumbs":6,"title":2},"154":{"body":42,"breadcrumbs":5,"title":1},"155":{"body":46,"breadcrumbs":5,"title":1},"156":{"body":72,"breadcrumbs":6,"title":2},"157":{"body":16,"breadcrumbs":6,"title":2},"158":{"body":98,"breadcrumbs":4,"title":1},"159":{"body":56,"breadcrumbs":5,"title":2},"16":{"body":83,"breadcrumbs":5,"title":3},"160":{"body":40,"breadcrumbs":5,"title":2},"161":{"body":87,"breadcrumbs":6,"title":3},"162":{"body":3,"breadcrumbs":5,"title":2},"163":{"body":23,"breadcrumbs":6,"title":2},"164":{"body":112,"breadcrumbs":6,"title":2},"165":{"body":191,"breadcrumbs":6,"title":2},"166":{"body":91,"breadcrumbs":8,"title":4},"167":{"body":4,"breadcrumbs":6,"title":2},"168":{"body":34,"breadcrumbs":6,"title":2},"169":{"body":39,"breadcrumbs":6,"title":2},"17":{"body":21,"breadcrumbs":4,"title":2},"170":{"body":38,"breadcrumbs":6,"title":2},"171":{"body":41,"breadcrumbs":6,"title":2},"172":{"body":25,"breadcrumbs":6,"title":2},"173":{"body":69,"breadcrumbs":5,"title":1},"174":{"body":29,"breadcrumbs":6,"title":2},"175":{"body":43,"breadcrumbs":6,"title":2},"176":{"body":99,"breadcrumbs":6,"title":2},"177":{"body":31,"breadcrumbs":6,"title":2},"178":{"body":5,"breadcrumbs":6,"title":2},"179":{"body":103,"breadcrumbs":6,"title":2},"18":{"body":36,"breadcrumbs":3,"title":1},"180":{"body":49,"breadcrumbs":6,"title":2},"181":{"body":22,"breadcrumbs":7,"title":3},"182":{"body":4,"breadcrumbs":6,"title":2},"183":{"body":78,"breadcrumbs":4,"title":1},"184":{"body":62,"breadcrumbs":4,"title":1},"185":{"body":79,"breadcrumbs":4,"title":1},"186":{"body":49,"breadcrumbs":5,"title":2},"187":{"body":51,"breadcrumbs":5,"title":2},"188":{"body":43,"breadcrumbs":5,"title":2},"189":{"body":30,"breadcrumbs":4,"title":1},"19":{"body":78,"breadcrumbs":3,"title":1},"190":{"body":21,"breadcrumbs":5,"title":2},"191":{"body":127,"breadcrumbs":5,"title":2},"192":{"body":202,"breadcrumbs":6,"title":3},"193":{"body":102,"breadcrumbs":4,"title":1},"194":{"body":129,"breadcrumbs":6,"title":3},"195":{"body":92,"breadcrumbs":6,"title":3},"196":{"body":3,"breadcrumbs":5,"title":2},"197":{"body":49,"breadcrumbs":6,"title":2},"198":{"body":71,"breadcrumbs":5,"title":1},"199":{"body":10,"breadcrumbs":6,"title":2},"2":{"body":29,"breadcrumbs":4,"title":2},"20":{"body":89,"breadcrumbs":3,"title":1},"200":{"body":19,"breadcrumbs":4,"title":1},"201":{"body":69,"breadcrumbs":5,"title":2},"202":{"body":43,"breadcrumbs":5,"title":2},"203":{"body":89,"breadcrumbs":7,"title":4},"204":{"body":91,"breadcrumbs":5,"title":2},"205":{"body":4,"breadcrumbs":5,"title":2},"206":{"body":53,"breadcrumbs":4,"title":2},"207":{"body":199,"breadcrumbs":9,"title":4},"208":{"body":41,"breadcrumbs":6,"title":1},"209":{"body":31,"breadcrumbs":7,"title":2},"21":{"body":31,"breadcrumbs":3,"title":1},"210":{"body":105,"breadcrumbs":6,"title":2},"211":{"body":28,"breadcrumbs":5,"title":1},"212":{"body":5,"breadcrumbs":6,"title":2},"213":{"body":169,"breadcrumbs":4,"title":1},"214":{"body":26,"breadcrumbs":4,"title":1},"215":{"body":4,"breadcrumbs":5,"title":2},"216":{"body":30,"breadcrumbs":4,"title":1},"217":{"body":62,"breadcrumbs":7,"title":4},"218":{"body":96,"breadcrumbs":5,"title":2},"219":{"body":33,"breadcrumbs":6,"title":3},"22":{"body":144,"breadcrumbs":4,"title":2},"220":{"body":78,"breadcrumbs":5,"title":2},"221":{"body":41,"breadcrumbs":4,"title":1},"222":{"body":12,"breadcrumbs":5,"title":2},"223":{"body":30,"breadcrumbs":8,"title":3},"224":{"body":59,"breadcrumbs":7,"title":2},"225":{"body":65,"breadcrumbs":7,"title":2},"226":{"body":29,"breadcrumbs":7,"title":2},"227":{"body":24,"breadcrumbs":8,"title":3},"228":{"body":38,"breadcrumbs":6,"title":1},"229":{"body":33,"breadcrumbs":4,"title":2},"23":{"body":136,"breadcrumbs":4,"title":2},"230":{"body":54,"breadcrumbs":6,"title":2},"231":{"body":86,"breadcrumbs":6,"title":2},"232":{"body":21,"breadcrumbs":7,"title":3},"233":{"body":18,"breadcrumbs":6,"title":2},"234":{"body":4,"breadcrumbs":6,"title":2},"235":{"body":22,"breadcrumbs":6,"title":2},"236":{"body":64,"breadcrumbs":5,"title":1},"237":{"body":99,"breadcrumbs":8,"title":4},"238":{"body":276,"breadcrumbs":5,"title":1},"239":{"body":226,"breadcrumbs":5,"title":1},"24":{"body":18,"breadcrumbs":4,"title":2},"240":{"body":55,"breadcrumbs":6,"title":2},"241":{"body":40,"breadcrumbs":5,"title":1},"242":{"body":145,"breadcrumbs":9,"title":5},"243":{"body":40,"breadcrumbs":6,"title":2},"244":{"body":14,"breadcrumbs":6,"title":2},"245":{"body":36,"breadcrumbs":5,"title":1},"246":{"body":58,"breadcrumbs":5,"title":1},"247":{"body":24,"breadcrumbs":7,"title":3},"248":{"body":4,"breadcrumbs":6,"title":2},"249":{"body":44,"breadcrumbs":6,"title":2},"25":{"body":6,"breadcrumbs":4,"title":2},"250":{"body":79,"breadcrumbs":7,"title":3},"251":{"body":29,"breadcrumbs":6,"title":2},"252":{"body":23,"breadcrumbs":6,"title":2},"253":{"body":56,"breadcrumbs":6,"title":2},"254":{"body":39,"breadcrumbs":5,"title":1},"255":{"body":19,"breadcrumbs":5,"title":1},"256":{"body":49,"breadcrumbs":8,"title":3},"257":{"body":188,"breadcrumbs":8,"title":3},"258":{"body":34,"breadcrumbs":7,"title":2},"259":{"body":43,"breadcrumbs":4,"title":2},"26":{"body":26,"breadcrumbs":4,"title":2},"260":{"body":119,"breadcrumbs":6,"title":2},"261":{"body":27,"breadcrumbs":7,"title":3},"262":{"body":47,"breadcrumbs":5,"title":1},"263":{"body":57,"breadcrumbs":7,"title":3},"264":{"body":132,"breadcrumbs":6,"title":2},"265":{"body":68,"breadcrumbs":6,"title":2},"266":{"body":56,"breadcrumbs":6,"title":2},"267":{"body":36,"breadcrumbs":6,"title":2},"268":{"body":40,"breadcrumbs":6,"title":2},"269":{"body":132,"breadcrumbs":6,"title":2},"27":{"body":14,"breadcrumbs":5,"title":3},"270":{"body":52,"breadcrumbs":8,"title":4},"271":{"body":224,"breadcrumbs":8,"title":4},"272":{"body":28,"breadcrumbs":6,"title":2},"273":{"body":74,"breadcrumbs":5,"title":1},"274":{"body":135,"breadcrumbs":5,"title":1},"275":{"body":28,"breadcrumbs":4,"title":1},"276":{"body":48,"breadcrumbs":4,"title":1},"277":{"body":86,"breadcrumbs":4,"title":1},"278":{"body":103,"breadcrumbs":4,"title":1},"279":{"body":105,"breadcrumbs":4,"title":1},"28":{"body":120,"breadcrumbs":4,"title":2},"280":{"body":39,"breadcrumbs":4,"title":1},"281":{"body":20,"breadcrumbs":5,"title":2},"282":{"body":81,"breadcrumbs":6,"title":2},"283":{"body":99,"breadcrumbs":5,"title":1},"284":{"body":235,"breadcrumbs":5,"title":1},"285":{"body":90,"breadcrumbs":8,"title":4},"286":{"body":117,"breadcrumbs":7,"title":3},"287":{"body":154,"breadcrumbs":8,"title":4},"288":{"body":149,"breadcrumbs":6,"title":2},"289":{"body":25,"breadcrumbs":8,"title":4},"29":{"body":64,"breadcrumbs":4,"title":2},"290":{"body":22,"breadcrumbs":5,"title":1},"291":{"body":32,"breadcrumbs":5,"title":1},"292":{"body":12,"breadcrumbs":6,"title":2},"293":{"body":59,"breadcrumbs":8,"title":3},"294":{"body":202,"breadcrumbs":6,"title":1},"295":{"body":173,"breadcrumbs":9,"title":4},"296":{"body":30,"breadcrumbs":7,"title":2},"297":{"body":36,"breadcrumbs":7,"title":2},"298":{"body":46,"breadcrumbs":6,"title":2},"299":{"body":78,"breadcrumbs":6,"title":2},"3":{"body":20,"breadcrumbs":6,"title":2},"30":{"body":114,"breadcrumbs":5,"title":3},"300":{"body":122,"breadcrumbs":5,"title":1},"301":{"body":13,"breadcrumbs":5,"title":1},"302":{"body":126,"breadcrumbs":5,"title":1},"303":{"body":13,"breadcrumbs":5,"title":1},"304":{"body":23,"breadcrumbs":5,"title":1},"305":{"body":3,"breadcrumbs":5,"title":1},"306":{"body":19,"breadcrumbs":6,"title":2},"307":{"body":135,"breadcrumbs":6,"title":2},"308":{"body":126,"breadcrumbs":7,"title":3},"309":{"body":24,"breadcrumbs":7,"title":3},"31":{"body":105,"breadcrumbs":4,"title":2},"310":{"body":19,"breadcrumbs":5,"title":1},"311":{"body":7,"breadcrumbs":6,"title":2},"312":{"body":19,"breadcrumbs":8,"title":3},"313":{"body":81,"breadcrumbs":6,"title":1},"314":{"body":34,"breadcrumbs":7,"title":2},"315":{"body":42,"breadcrumbs":6,"title":1},"316":{"body":30,"breadcrumbs":6,"title":2},"317":{"body":106,"breadcrumbs":5,"title":1},"318":{"body":31,"breadcrumbs":5,"title":1},"319":{"body":76,"breadcrumbs":7,"title":3},"32":{"body":139,"breadcrumbs":3,"title":1},"320":{"body":20,"breadcrumbs":6,"title":2},"321":{"body":19,"breadcrumbs":6,"title":2},"322":{"body":23,"breadcrumbs":5,"title":2},"323":{"body":89,"breadcrumbs":4,"title":1},"324":{"body":152,"breadcrumbs":5,"title":2},"325":{"body":36,"breadcrumbs":5,"title":2},"326":{"body":82,"breadcrumbs":5,"title":2},"327":{"body":80,"breadcrumbs":5,"title":2},"328":{"body":70,"breadcrumbs":5,"title":2},"329":{"body":13,"breadcrumbs":6,"title":3},"33":{"body":84,"breadcrumbs":4,"title":2},"330":{"body":8,"breadcrumbs":5,"title":2},"331":{"body":79,"breadcrumbs":4,"title":1},"332":{"body":111,"breadcrumbs":5,"title":2},"333":{"body":33,"breadcrumbs":5,"title":2},"334":{"body":34,"breadcrumbs":6,"title":2},"335":{"body":89,"breadcrumbs":5,"title":1},"336":{"body":54,"breadcrumbs":5,"title":1},"337":{"body":12,"breadcrumbs":5,"title":1},"338":{"body":20,"breadcrumbs":6,"title":2},"339":{"body":22,"breadcrumbs":6,"title":2},"34":{"body":91,"breadcrumbs":4,"title":2},"340":{"body":7,"breadcrumbs":6,"title":2},"341":{"body":31,"breadcrumbs":6,"title":3},"342":{"body":93,"breadcrumbs":4,"title":1},"343":{"body":16,"breadcrumbs":5,"title":2},"344":{"body":68,"breadcrumbs":4,"title":1},"345":{"body":36,"breadcrumbs":5,"title":2},"346":{"body":19,"breadcrumbs":4,"title":1},"347":{"body":94,"breadcrumbs":5,"title":2},"348":{"body":74,"breadcrumbs":5,"title":2},"349":{"body":67,"breadcrumbs":5,"title":2},"35":{"body":12,"breadcrumbs":3,"title":1},"350":{"body":36,"breadcrumbs":5,"title":2},"351":{"body":25,"breadcrumbs":4,"title":1},"352":{"body":37,"breadcrumbs":7,"title":4},"353":{"body":21,"breadcrumbs":6,"title":3},"354":{"body":34,"breadcrumbs":5,"title":2},"355":{"body":102,"breadcrumbs":6,"title":3},"356":{"body":28,"breadcrumbs":5,"title":2},"357":{"body":19,"breadcrumbs":5,"title":2},"358":{"body":56,"breadcrumbs":5,"title":2},"359":{"body":46,"breadcrumbs":6,"title":3},"36":{"body":69,"breadcrumbs":4,"title":2},"360":{"body":74,"breadcrumbs":5,"title":2},"361":{"body":36,"breadcrumbs":5,"title":2},"362":{"body":133,"breadcrumbs":4,"title":2},"363":{"body":70,"breadcrumbs":4,"title":2},"364":{"body":64,"breadcrumbs":6,"title":4},"365":{"body":3,"breadcrumbs":4,"title":2},"366":{"body":45,"breadcrumbs":6,"title":3},"367":{"body":19,"breadcrumbs":5,"title":2},"368":{"body":32,"breadcrumbs":5,"title":2},"369":{"body":43,"breadcrumbs":7,"title":4},"37":{"body":28,"breadcrumbs":4,"title":2},"370":{"body":30,"breadcrumbs":7,"title":4},"371":{"body":17,"breadcrumbs":8,"title":5},"372":{"body":14,"breadcrumbs":6,"title":3},"373":{"body":101,"breadcrumbs":6,"title":3},"374":{"body":71,"breadcrumbs":8,"title":5},"375":{"body":82,"breadcrumbs":8,"title":5},"376":{"body":111,"breadcrumbs":9,"title":6},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":0,"breadcrumbs":3,"title":1},"379":{"body":11,"breadcrumbs":3,"title":1},"38":{"body":24,"breadcrumbs":4,"title":2},"380":{"body":13,"breadcrumbs":3,"title":1},"381":{"body":17,"breadcrumbs":3,"title":1},"382":{"body":25,"breadcrumbs":3,"title":1},"383":{"body":47,"breadcrumbs":4,"title":2},"384":{"body":47,"breadcrumbs":3,"title":2},"385":{"body":70,"breadcrumbs":2,"title":1},"386":{"body":46,"breadcrumbs":7,"title":4},"387":{"body":46,"breadcrumbs":5,"title":3},"388":{"body":16,"breadcrumbs":5,"title":3},"389":{"body":27,"breadcrumbs":5,"title":3},"39":{"body":39,"breadcrumbs":4,"title":2},"4":{"body":18,"breadcrumbs":6,"title":2},"40":{"body":32,"breadcrumbs":4,"title":2},"41":{"body":27,"breadcrumbs":4,"title":2},"42":{"body":446,"breadcrumbs":5,"title":3},"43":{"body":183,"breadcrumbs":5,"title":3},"44":{"body":133,"breadcrumbs":4,"title":2},"45":{"body":34,"breadcrumbs":3,"title":1},"46":{"body":30,"breadcrumbs":2,"title":1},"47":{"body":66,"breadcrumbs":3,"title":1},"48":{"body":52,"breadcrumbs":4,"title":2},"49":{"body":31,"breadcrumbs":4,"title":2},"5":{"body":9,"breadcrumbs":8,"title":4},"50":{"body":6,"breadcrumbs":3,"title":1},"51":{"body":42,"breadcrumbs":4,"title":2},"52":{"body":0,"breadcrumbs":3,"title":1},"53":{"body":36,"breadcrumbs":3,"title":1},"54":{"body":59,"breadcrumbs":3,"title":1},"55":{"body":45,"breadcrumbs":6,"title":4},"56":{"body":28,"breadcrumbs":4,"title":2},"57":{"body":21,"breadcrumbs":3,"title":1},"58":{"body":34,"breadcrumbs":4,"title":2},"59":{"body":56,"breadcrumbs":4,"title":2},"6":{"body":10,"breadcrumbs":8,"title":4},"60":{"body":3,"breadcrumbs":4,"title":2},"61":{"body":94,"breadcrumbs":3,"title":1},"62":{"body":3,"breadcrumbs":4,"title":2},"63":{"body":45,"breadcrumbs":3,"title":1},"64":{"body":11,"breadcrumbs":4,"title":2},"65":{"body":26,"breadcrumbs":3,"title":1},"66":{"body":41,"breadcrumbs":4,"title":2},"67":{"body":84,"breadcrumbs":3,"title":1},"68":{"body":90,"breadcrumbs":4,"title":2},"69":{"body":40,"breadcrumbs":4,"title":2},"7":{"body":29,"breadcrumbs":9,"title":5},"70":{"body":24,"breadcrumbs":4,"title":1},"71":{"body":69,"breadcrumbs":5,"title":2},"72":{"body":35,"breadcrumbs":6,"title":3},"73":{"body":41,"breadcrumbs":5,"title":2},"74":{"body":3,"breadcrumbs":5,"title":2},"75":{"body":36,"breadcrumbs":4,"title":1},"76":{"body":41,"breadcrumbs":5,"title":2},"77":{"body":61,"breadcrumbs":5,"title":2},"78":{"body":44,"breadcrumbs":5,"title":2},"79":{"body":30,"breadcrumbs":6,"title":2},"8":{"body":8,"breadcrumbs":5,"title":1},"80":{"body":56,"breadcrumbs":6,"title":2},"81":{"body":42,"breadcrumbs":5,"title":1},"82":{"body":75,"breadcrumbs":6,"title":2},"83":{"body":68,"breadcrumbs":5,"title":1},"84":{"body":49,"breadcrumbs":5,"title":1},"85":{"body":27,"breadcrumbs":5,"title":1},"86":{"body":6,"breadcrumbs":6,"title":2},"87":{"body":68,"breadcrumbs":6,"title":2},"88":{"body":59,"breadcrumbs":5,"title":1},"89":{"body":3,"breadcrumbs":6,"title":2},"9":{"body":39,"breadcrumbs":8,"title":3},"90":{"body":32,"breadcrumbs":4,"title":1},"91":{"body":83,"breadcrumbs":4,"title":1},"92":{"body":37,"breadcrumbs":4,"title":1},"93":{"body":60,"breadcrumbs":4,"title":1},"94":{"body":44,"breadcrumbs":5,"title":2},"95":{"body":43,"breadcrumbs":6,"title":3},"96":{"body":24,"breadcrumbs":6,"title":3},"97":{"body":156,"breadcrumbs":4,"title":1},"98":{"body":94,"breadcrumbs":6,"title":3},"99":{"body":73,"breadcrumbs":5,"title":2}},"docs":{"0":{"body":"This is the Move Book - a comprehensive guide to the Move programming language and the Sui blockchain. The book is intended for developers who are interested in learning about Move and building on Sui. The book is in active development and a work in progress. If you have any feedback or suggestions, feel free to open an issue or a pull request on the GitHub repository . If you're looking for The Move Reference, you can find it here .","breadcrumbs":"The Move Book » The Move Book","id":"0","title":"The Move Book"},"1":{"body":"This book is dedicated to Move, a smart contract language that captures the essence of safe programming with digital assets. Move is designed around the following values: Secure by default: Insecure languages are a serious barrier both to accessible smart contract development and to mainstream adoption of digital assets. The first duty of a smart contract language is to prevent as many potential safety issues as possible (e.g. re-entrancy, missing access control checks, arithmetic overflow, ...) by construction. Any changes to Move should preserve or enhance its existing security guarantees. Expressive by nature: Move must enable programmers to write any smart contract they can imagine. But we care as much about the way it feels to write Move as we do about what Move allows you to do - the language should be rich enough that the features needed for a task are available, and minimal enough that the choice is obvious. The Move toolchain should be a productivity enhancer and a thought partner. Intuitive for all: Smart contracts are only one part of a useful application. Move should understand the broader context of its usage and design with both the smart contract developer and the application developer in mind. It should be easy for developers to learn how to read Move-managed state, build Move powered transactions, and write new Move code. The core technical elements of Move are: Safe, familiar, and flexible abstractions for digital assets via programmable objects . A rich ability system (inspired by linear types) that gives programmers extreme control of how values are created, destroyed, stored, copied, and transferred. A module system with strong encapsulation features to enable code reuse while maintaining this control. Dynamic fields for creating hierarchical relationships between objects. Programmable transaction blocks (PTBs) to enable atomic client-side composition of Move-powered APIs. Move was born in 2018 as part of Facebook's Libra project. It was publicly revealed in 2019, the first Move-powered network launched in 2020. As of April 2024, there are numerous Move-powered chains in production with several more in the works. Move is an embedded language with a platform-agnostic core, which means it takes on a slightly different personality in each chain that uses it. Creating a new programming language and bootstrapping a community around it is an ambitious, long term project. A language has to be an order of magnitude better than alternatives in relevant ways to have a chance, but even then the quality of the community matters more than the technical fundamentals. Move is a young language, but it's off to a good start in terms of both differentiation and community. A small, but fanatical group of smart contract programmers and core contributors united by the Move values are pushing the boundaries of what smart contracts can do, the applications they can enable, and who can (safely) write them. If that inspires you, read on! — Sam Blackshear, creator of Move","breadcrumbs":"Foreword » Foreword","id":"1","title":"Foreword"},"10":{"body":"VSCode is a free and open source IDE from Microsoft. Move (Extension) is a language server extension for Move maintained by MystenLabs . Move Syntax a simple syntax highlighting extension for Move by Damir Shamanaev .","breadcrumbs":"Before we begin » Set up your IDE » VSCode","id":"10","title":"VSCode"},"100":{"body":"Structs in the Move Reference.","breadcrumbs":"Move Basics » Struct » Further reading","id":"100","title":"Further reading"},"101":{"body":"Move has a unique type system which allows customizing type abilities . In the previous section , we introduced the struct definition and how to use it. However, the instances of the Artist and Record structs had to be unpacked for the code to compile. This is default behavior of a struct without abilities . Throughout the book you will see chapters with name Ability: , where is the name of the ability. These chapters will cover the ability in detail, how it works, and how to use it in Move.","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities: Introduction","id":"101","title":"Abilities: Introduction"},"102":{"body":"Abilities are a way to allow certain behaviors for a type. They are a part of the struct declaration and define which behaviours are allowed for the instances of the struct.","breadcrumbs":"Move Basics » Abilities: Introduction » What are Abilities?","id":"102","title":"What are Abilities?"},"103":{"body":"Abilities are set in the struct definition using the has keyword followed by a list of abilities. The abilities are separated by commas. Move supports 4 abilities: copy, drop, key, and store, each of them is used to define a specific behaviour for the struct instances. /// This struct has the `copy` and `drop` abilities.\nstruct VeryAble has copy, drop { // field: Type1, // field2: Type2, // ...\n}","breadcrumbs":"Move Basics » Abilities: Introduction » Abilities syntax","id":"103","title":"Abilities syntax"},"104":{"body":"A quick overview of the abilities: All of the built-in types, except references, have copy, drop and store abilities. References have copy and drop. copy - allows the struct to be copied . Explained in the Ability: Copy chapter. drop - allows the struct to be dropped or discarded . Explained in the Ability: Drop chapter. key - allows the struct to be used as a key in a storage. Explained in the Ability: Key chapter. store - allows the struct to be stored in structs with the key ability. Explained in the Ability: Store chapter. While it is important to mention them here, we will go in detail about each ability in the following chapters and give a proper context on how to use them.","breadcrumbs":"Move Basics » Abilities: Introduction » Overview","id":"104","title":"Overview"},"105":{"body":"A struct without abilities cannot be discarded, or copied, or stored in the storage. We call such a struct a Hot Potato . It is a joke, but it is also a good way to remember that a struct without abilities is like a hot potato - it can only be passed around and requires special handling. Hot Potato is one of the most powerful patterns in Move, we go in detail about it in the Hot Potato chapter.","breadcrumbs":"Move Basics » Abilities: Introduction » No abilities","id":"105","title":"No abilities"},"106":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Abilities: Introduction » Further reading","id":"106","title":"Further reading"},"107":{"body":"The drop ability - the simplest of them - allows the instance of a struct to be ignored or discarded . In many programming languages this behavior is considered default. However, in Move, a struct without the drop ability is not allowed to be ignored. This is a safety feature of the Move language, which ensures that all assets are properly handled. An attempt to ignore a struct without the drop ability will result in a compilation error. module book::drop_ability { /// This struct has the `drop` ability. public struct IgnoreMe has drop { a: u8, b: u8, } /// This struct does not have the `drop` ability. public struct NoDrop {} #[test] // Create an instance of the `IgnoreMe` struct and ignore it. // Even though we constructed the instance, we don't need to unpack it. fun test_ignore() { let no_drop = NoDrop {}; let _ = IgnoreMe { a: 1, b: 2 }; // no need to unpack // The value must be unpacked for the code to compile. let NoDrop {} = no_drop; // OK }\n} The drop ability is often used on custom collection types to eliminate the need for special handling of the collection when it is no longer needed. For example, a vector type has the drop ability, which allows the vector to be ignored when it is no longer needed. However, the biggest feature of Move's type system is the ability to not have drop. This ensures that the assets are properly handled and not ignored. A struct with a single drop ability is called a Witness . We explain the concept of a Witness in the Witness and Abstract Implementation section.","breadcrumbs":"Move Basics » Ability: Drop » Abilities: Drop","id":"107","title":"Abilities: Drop"},"108":{"body":"All native types in Move have the drop ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the drop ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Drop » Types with the drop Ability","id":"108","title":"Types with the drop Ability"},"109":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Drop » Further reading","id":"109","title":"Further reading"},"11":{"body":"IntelliJ IDEA is a commercial IDE from JetBrains. Move Language Plugin provides a Move language extension for IntelliJ IDEA by Pontem Network .","breadcrumbs":"Before we begin » Set up your IDE » IntelliJ IDEA","id":"11","title":"IntelliJ IDEA"},"110":{"body":"Move achieves high modularity and code reuse by allowing module imports. Modules within the same package can import each other, and a new package can depend on already existing packages and use their modules too. This section will cover the basics of importing modules and how to use them in your own code.","breadcrumbs":"Move Basics » Importing Modules » Importing Modules","id":"110","title":"Importing Modules"},"111":{"body":"Modules defined in the same package can import each other. The use keyword is followed by the module path, which consists of the package address (or alias) and the module name separated by ::. // File: sources/module_one.move\nmodule book::module_one { /// Struct defined in the same module. public struct Character has drop {} /// Simple function that creates a new `Character` instance. public fun new(): Character { Character {} }\n} Another module defined in the same package can import the first module using the use keyword. // File: sources/module_two.move\nmodule book::module_two { use book::module_one; // importing module_one from the same package /// Calls the `new` function from the `module_one` module. public fun create_and_ignore() { let _ = module_one::new(); }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module","id":"111","title":"Importing a Module"},"112":{"body":"You can also import specific members from a module. This is useful when you only need a single function or a single type from a module. The syntax is the same as for importing a module, but you add the member name after the module path. module book::more_imports { use book::module_one::new; // imports the `new` function from the `module_one` module use book::module_one::Character; // importing the `Character` struct from the `module_one` module /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Importing Members","id":"112","title":"Importing Members"},"113":{"body":"Imports can be grouped into a single use statement using the curly braces {}. This is useful when you need to import multiple members from the same module. Move allows grouping imports from the same module and from the same package. module book::grouped_imports { // imports the `new` function and the `Character` struct from /// the `module_one` module use book::module_one::{new, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { new() }\n} Single function imports are less common in Move, since the function names can overlap and cause confusion. A recommended practice is to import the entire module and use the module path to access the function. Types have unique names and should be imported individually. To import members and the module itself in the group import, you can use the Self keyword. The Self keyword refers to the module itself and can be used to import the module and its members. module book::self_imports { // imports the `Character` struct, and the `module_one` module use book::module_one::{Self, Character}; /// Calls the `new` function from the `module_one` module. public fun create_character(): Character { module_one::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Grouping Imports","id":"113","title":"Grouping Imports"},"114":{"body":"When importing multiple members from different modules, it is possible to have name conflicts. For example, if you import two modules that both have a function with the same name, you will need to use the module path to access the function. It is also possible to have modules with the same name in different packages. To resolve the conflict and avoid ambiguity, Move offers the as keyword to rename the imported member. module book::conflict_resolution { // `as` can be placed after any import, including group imports use book::module_one::{Self as mod, Character as Char}; /// Calls the `new` function from the `module_one` module. public fun create(): Char { mod::new() }\n}","breadcrumbs":"Move Basics » Importing Modules » Resolving Name Conflicts","id":"114","title":"Resolving Name Conflicts"},"115":{"body":"Every new package generated via the sui binary features a Move.toml file with a single dependency on the Sui Framework package. The Sui Framework depends on the Standard Library package. And both of these packages are available in default configuration. Package dependencies are defined in the Package Manifest as follows: [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nLocal = { local = \"../my_other_package\" } The dependencies section contains a list of package dependencies. The key is the name of the package, and the value is either a git import table or a local path. The git import contains the URL of the package, the subdirectory where the package is located, and the revision of the package. The local path is a relative path to the package directory. If a dependency is added to the Move.toml file, the compiler will automatically fetch (and later refetch) the dependencies when building the package.","breadcrumbs":"Move Basics » Importing Modules » Adding an External Dependency","id":"115","title":"Adding an External Dependency"},"116":{"body":"Normally, packages define their addresses in the [addresses] section, so you can use the alias instead of the address. For example, instead of 0x2::coin module, you would use sui::coin. The sui alias is defined in the Sui Framework package. Similarly, the std alias is defined in the Standard Library package and can be used to access the standard library modules. To import a module from another package, you use the use keyword followed by the module path. The module path consists of the package address (or alias) and the module name separated by ::. module book::imports { use std::string; // std = 0x1, string is a module in the standard library use sui::coin; // sui = 0x2, coin is a module in the Sui Framework\n}","breadcrumbs":"Move Basics » Importing Modules » Importing a Module from Another Package","id":"116","title":"Importing a Module from Another Package"},"117":{"body":"The Move Standard Library provides functionality for native types and operations. It is a standard collection of modules which do not interact with the storage, but provide basic tools for working and manipulating the data. It is the only dependency of the Sui Framework , and is imported together with it.","breadcrumbs":"Move Basics » Standard Library » Standard Library","id":"117","title":"Standard Library"},"118":{"body":"In this book we go into detail about most of the modules in the Standard Library, however, it is also helpful to give an overview of the features, so that you can get a sense of what is available and which module implements it. Module Description Chapter std::string Provides basic string operations String std::ascii Provides basic ASCII operations String std::option Implements an Option Option std::vector Native operations on the vector type Vector std::bcs Contains the bcs::to_bytes() function BCS std::address Contains a single address::length function Address std::type_name Allows runtime type reflection Type Reflection std::hash Hashing functions: sha2_256 and sha3_256 Cryptography and Hashing std::debug Contains debugging functions, which are available in only in test mode Debugging std::bit_vector Provides operations on bit vectors - std::fixed_point32 Provides the FixedPoint32 type -","breadcrumbs":"Move Basics » Standard Library » Most Common Modules","id":"118","title":"Most Common Modules"},"119":{"body":"Standard Library exports one named address - std = 0x1. [addresses]\nstd = \"0x1\"","breadcrumbs":"Move Basics » Standard Library » Exported Addresses","id":"119","title":"Exported Addresses"},"12":{"body":"Emacs is a free and open source text editor. move-mode is a Move mode for Emacs by Ashok Menon .","breadcrumbs":"Before we begin » Set up your IDE » Emacs","id":"12","title":"Emacs"},"120":{"body":"Some of the modules are imported implicitly, and are available in the module without explicit use import. For Standard Library, these modules and types are: std::vector std::option std::option::Option","breadcrumbs":"Move Basics » Standard Library » Implicit Imports","id":"120","title":"Implicit Imports"},"121":{"body":"The Move Standard Library can be imported to the package directly. However, std alone is not enough to build a meaningful application, as it does not provide any storage capabilities, and can't interact with the on-chain state. MoveStdlib = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/move-stdlib\", rev = \"framework/mainnet\" }","breadcrumbs":"Move Basics » Standard Library » Importing std without Sui Framework","id":"121","title":"Importing std without Sui Framework"},"122":{"body":"The source code of the Move Standard Library is available in the Sui repository .","breadcrumbs":"Move Basics » Standard Library » Source Code","id":"122","title":"Source Code"},"123":{"body":"Vectors are a native way to store collections of elements in Move. They are similar to arrays in other programming languages, but with a few differences. In this section, we introduce the vector type and its operations.","breadcrumbs":"Move Basics » Vector » Vector","id":"123","title":"Vector"},"124":{"body":"The vector type is defined using the vector keyword followed by the type of the elements in angle brackets. The type of the elements can be any valid Move type, including other vectors. Move has a vector literal syntax that allows you to create vectors using the vector keyword followed by square brackets containing the elements (or no elements for an empty vector). // An empty vector of bool elements.\nlet empty: vector = vector[]; // A vector of u8 elements.\nlet v: vector = vector[10, 20, 30]; // A vector of vector elements.\nlet vv: vector> = vector[ vector[10, 20], vector[30, 40]\n]; The vector type is a built-in type in Move, and does not need to be imported from a module. However, vector operations are defined in the std::vector module, and you need to import the module to use them.","breadcrumbs":"Move Basics » Vector » Vector syntax","id":"124","title":"Vector syntax"},"125":{"body":"The standard library provides methods to manipulate vectors. The following are some of the most commonly used operations: push_back: Adds an element to the end of the vector. pop_back: Removes the last element from the vector. length: Returns the number of elements in the vector. is_empty: Returns true if the vector is empty. remove: Removes an element at a given index. let mut v = vector[10u8, 20, 30]; assert!(v.length() == 3, 0);\nassert!(!v.is_empty(), 1); v.push_back(40);\nlet last_value = v.pop_back(); assert!(last_value == 40, 2);","breadcrumbs":"Move Basics » Vector » Vector operations","id":"125","title":"Vector operations"},"126":{"body":"A vector of non-droppable types cannot be discarded. If you define a vector of types without drop ability, the vector value cannot be ignored. However, if the vector is empty, compiler requires an explicit call to destroy_empty function. /// A struct without `drop` ability. public struct NoDrop {} #[test] fun test_destroy_empty() { // Initialize a vector of `NoDrop` elements. let v = vector[]; // While we know that `v` is empty, we still need to call // the explicit `destroy_empty` function to discard the vector. v.destroy_empty(); }","breadcrumbs":"Move Basics » Vector » Destroying a Vector of non-droppable types","id":"126","title":"Destroying a Vector of non-droppable types"},"127":{"body":"Vector in the Move Reference.","breadcrumbs":"Move Basics » Vector » Further reading","id":"127","title":"Further reading"},"128":{"body":"Option is a type that represents an optional value which may or may not exist. The concept of Option in Move is borrowed from Rust, and it is a very useful primitive in Move. Option is defined in the Standard Library , and is defined as follows: File: move-stdlib/source/option.move // File: move-stdlib/source/option.move\n/// Abstraction of a value that may or may not be present.\nstruct Option has copy, drop, store { vec: vector\n} The 'std::option' module is implicitly imported in every module, and you don't need to add an import. The Option is a generic type which takes a type parameter Element. It has a single field vec which is a vector of Element. Vector can have length 0 or 1, and this is used to represent the presence or absence of a value. Option type has two variants: Some and None. Some variant contains a value and None variant represents the absence of a value. The Option type is used to represent the absence of a value in a type-safe way, and it is used to avoid the need for empty or undefined values.","breadcrumbs":"Move Basics » Option » Option","id":"128","title":"Option"},"129":{"body":"To showcase why Option type is necessary, let's look at an example. Consider an application which takes a user input and stores it in a variable. Some fields are required, and some are optional. For example, a user's middle name is optional. While we could use an empty string to represent the absence of a middle name, it would require extra checks to differentiate between an empty string and a missing middle name. Instead, we can use the Option type to represent the middle name. module book::user_registry { use std::string::String; /// A struct representing a user record. public struct User has drop { first_name: String, middle_name: Option, last_name: String, } /// Create a new `User` struct with the given fields. public fun register( first_name: String, middle_name: Option, last_name: String, ): User { User { first_name, middle_name, last_name } }\n} In the example above, the middle_name field is of type Option. This means that the middle_name field can either contain a String value or be empty. This makes it clear that the middle name is optional, and it avoids the need for extra checks to differentiate between an empty string and a missing middle name.","breadcrumbs":"Move Basics » Option » In Practice","id":"129","title":"In Practice"},"13":{"body":"The Web-based IDE from Github can be run right in the browser and provides almost a full-featured VSCode experience. Github Codespaces Move Syntax is also available in the extensions marketplace.","breadcrumbs":"Before we begin » Set up your IDE » Github Codespaces","id":"13","title":"Github Codespaces"},"130":{"body":"To use the Option type, you need to import the std::option module and use the Option type. You can then create an Option value using the some or none methods. // `option::some` creates an `Option` value with a value.\nlet mut opt = option::some(b\"Alice\"); // `option.is_some()` returns true if option contains a value.\nassert!(opt.is_some(), 1); // internal value can be `borrow`ed and `borrow_mut`ed.\nassert!(opt.borrow() == &b\"Alice\", 0); // `option.extract` takes the value out of the option, leaving the option empty.\nlet inner = opt.extract(); // `option.is_none()` returns true if option is None.\nassert!(opt.is_none(), 2);","breadcrumbs":"Move Basics » Option » Using Option","id":"130","title":"Using Option"},"131":{"body":"While Move does not have a built-in type to represent strings, it does have two standard implementations for strings in the Standard Library . The std::string module defines a String type and methods for UTF-8 encoded strings, and the second module, std::ascii, provides an ASCII String type and its methods. Sui execution environment automatically converts bytevector into String in transaction inputs. So in many cases, a String does not need to be constructed in the Transaction Block .","breadcrumbs":"Move Basics » String » String","id":"131","title":"String"},"132":{"body":"No matter which type of string you use, it is important to know that strings are just bytes. The wrappers provided by the string and ascii modules are just that: wrappers. They do provide safety checks and methods to work with strings, but at the end of the day, they are just vectors of bytes. module book::custom_string { /// Anyone can implement a custom string-like type by wrapping a vector. public struct MyString { bytes: vector, } /// Implement a `from_bytes` function to convert a vector of bytes to a string. public fun from_bytes(bytes: vector): MyString { MyString { bytes } } /// Implement a `bytes` function to convert a string to a vector of bytes. public fun bytes(self: &MyString): &vector { &self.bytes }\n}","breadcrumbs":"Move Basics » String » Strings are bytes","id":"132","title":"Strings are bytes"},"133":{"body":"While there are two types of strings in the standard library, the string module should be considered the default. It has native implementations of many common operations, and hence is more efficient than the ascii module, which is fully implemented in Move.","breadcrumbs":"Move Basics » String » Working with UTF-8 Strings","id":"133","title":"Working with UTF-8 Strings"},"134":{"body":"The String type in the std::string module is defined as follows: // File: move-stdlib/sources/string.move\n/// A `String` holds a sequence of bytes which is guaranteed to be in utf8 format.\npublic struct String has copy, drop, store { bytes: vector,\n}","breadcrumbs":"Move Basics » String » Definition","id":"134","title":"Definition"},"135":{"body":"To create a new UTF-8 String instance, you can use the string::utf8 method. The Standard Library provides an alias .to_string() on the vector for convenience. // the module is `std::string` and the type is `String`\nuse std::string::{Self, String}; // strings are normally created using the `utf8` function\n// type declaration is not necessary, we put it here for clarity\nlet hello: String = string::utf8(b\"Hello\"); // The `.to_string()` alias on the `vector` is more convenient\nlet hello = b\"Hello\".to_string();","breadcrumbs":"Move Basics » String » Creating a String","id":"135","title":"Creating a String"},"136":{"body":"UTF8 String provides a number of methods to work with strings. The most common operations on strings are: concatenation, slicing, and getting the length. Additionally, for custom string operations, the bytes() method can be used to get the underlying byte vector. let mut str = b\"Hello,\".to_string();\nlet another = b\" World!\".to_string(); // append(String) adds the content to the end of the string\nstr.append(another); // `sub_string(start, end)` copies a slice of the string\nstr.sub_string(0, 5); // \"Hello\" // `length()` returns the number of bytes in the string\nstr.length(); // 12 (bytes) // methods can also be chained! Get a length of a substring\nstr.sub_string(0, 5).length(); // 5 (bytes) // whether the string is empty\nstr.is_empty(); // false // get the underlying byte vector for custom operations\nlet bytes: &vector = str.bytes();","breadcrumbs":"Move Basics » String » Common Operations","id":"136","title":"Common Operations"},"137":{"body":"The default utf8 method may abort if the bytes passed into it are not valid UTF-8. If you are not sure that the bytes you are passing are valid, you should use the try_utf8 method instead. It returns an Option, which contains no value if the bytes are not valid UTF-8, and a string otherwise. Hint: the name that starts with try_* indicates that the function returns an Option with the expected result or none if the operation fails. It is a common naming convention borrowed from Rust. // this is a valid UTF-8 string\nlet hello = b\"Hello\".try_to_string(); assert!(hello.is_some(), 0); // abort if the value is not valid UTF-8 // this is not a valid UTF-8 string\nlet invalid = b\"\\xFF\".try_to_string(); assert!(invalid.is_none(), 0); // abort if the value is valid UTF-8","breadcrumbs":"Move Basics » String » Safe UTF-8 Operations","id":"137","title":"Safe UTF-8 Operations"},"138":{"body":"The string module does not provide a way to access individual characters in a string. This is because UTF-8 is a variable-length encoding, and the length of a character can be anywhere from 1 to 4 bytes. Similarly, the length() method returns the number of bytes in the string, not the number of characters. However, methods like sub_string and insert check character boundaries and will abort when the index is in the middle of a character.","breadcrumbs":"Move Basics » String » UTF-8 Limitations","id":"138","title":"UTF-8 Limitations"},"139":{"body":"This section is coming soon!","breadcrumbs":"Move Basics » String » ASCII Strings","id":"139","title":"ASCII Strings"},"14":{"body":"Move 2024 is the new edition of the Move language maintained by Mysten Labs. All of the examples in this book are written in Move 2024. If you're used to the pre-2024 version of Move, please, refer to the Move 2024 Migration Guide to learn about the changes and improvements in the new edition.","breadcrumbs":"Before we begin » Move 2024 » Move 2024","id":"14","title":"Move 2024"},"140":{"body":"Control flow statements are used to control the flow of execution in a program. They are used to make decisions, to repeat a block of code, and to exit a block of code early. Move has the following control flow statements (explained in detail below): if and if-else - making decisions on whether to execute a block of code loop and while loops - repeating a block of code break and continue statements - exiting a loop early return statement - exiting a function early","breadcrumbs":"Move Basics » Control Flow » Control Flow","id":"140","title":"Control Flow"},"141":{"body":"The if expression is used to make decisions in a program. It evaluates a boolean expression and executes a block of code if the expression is true. Paired with else, it can execute a different block of code if the expression is false. The syntax for the if expression is: if () ;\nif () else ; Just like any other expression, if requires a semicolon, if there are other expressions following it. The else keyword is optional, except for the case when the resulting value is assigned to a variable. We will cover this below. #[test] fun test_if() { let x = 5; // `x > 0` is a boolean expression. if (x > 0) { std::debug::print(&b\"X is bigger than 0\".to_string()) }; } Let's see how we can use if and else to assign a value to a variable: #[test] fun test_if_else() { let x = 5; let y = if (x > 0) { 1 } else { 0 }; assert!(y == 1, 0); } Here we assign the value of the if expression to the variable y. If x is greater than 0, y will be assigned the value 1, otherwise 0. The else block is necessary, because both branches must return a value of the same type. If we omit the else block, the compiler will throw an error. Conditional expressions are one of the most important control flow statements in Move. They can use either user provided input or some already stored data to make decisions. In particular, they are used in the assert! macro to check if a condition is true, and if not, to abort execution. We will get to it very soon!","breadcrumbs":"Move Basics » Control Flow » Conditional Statements","id":"141","title":"Conditional Statements"},"142":{"body":"Loops are used to execute a block of code multiple times. Move has two built-in types of loops: loop and while. In many cases they can be used interchangeably, but usually while is used when the number of iterations is known in advance, and loop is used when the number of iterations is not known in advance or there are multiple exit points. Loops are helpful when dealing with collections, such as vectors, or when we want to repeat a block of code until a certain condition is met. However, it is important to be careful with loops, as they can lead to infinite loops, which can lead to gas exhaustion and the transaction being aborted.","breadcrumbs":"Move Basics » Control Flow » Repeating Statements with Loops","id":"142","title":"Repeating Statements with Loops"},"143":{"body":"The while statement is used to execute a block of code as long as a boolean expression is true. Just like we've seen with if, the boolean expression is evaluated before each iteration of the loop. Just like conditional statements, the while loop is an expression and requires a semicolon if there are other expressions following it. The syntax for the while loop is: while () { ; }; Here is an example of a while loop with a very simple condition: // This function iterates over the `x` variable until it reaches 10, the // return value is the number of iterations it took to reach 10. // // If `x` is 0, then the function will return 10. // If `x` is 5, then the function will return 5. fun while_loop(mut x: u8): u8 { let mut y = 0; // This will loop until `x` is 10. // And will never run if `x` is 10 or more. while (x < 10) { y = y + 1; x = x + 1; }; y } #[test] fun test_while() { assert!(while_loop(0) == 10, 0); // 10 times assert!(while_loop(5) == 5, 0); // 5 times assert!(while_loop(10) == 0, 0); // loop never executed }","breadcrumbs":"Move Basics » Control Flow » The while loop","id":"143","title":"The while loop"},"144":{"body":"Now let's imagine a scenario where the boolean expression is always true. For example, if we literally passed true to the while condition. As you might expect, this would create an infinite loop, and this is almost what the loop statement works like. #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_while() { let mut x = 0; // This will loop forever. while (true) { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } An infinite while, or while without a condition, is a loop. The syntax for it is simple: loop { ; }; Let's rewrite the previous example using loop instead of while: #[test, expected_failure(out_of_gas, location=Self)] fun test_infinite_loop() { let mut x = 0; // This will loop forever. loop { x = x + 1; }; // This line will never be executed. assert!(x == 5, 0); } Infinite loops on their own are not very useful in Move, since every operation in Move costs gas, and an infinite loop will lead to gas exhaustion. However, they can be used in combination with break and continue statements to create more complex loops.","breadcrumbs":"Move Basics » Control Flow » Infinite loop","id":"144","title":"Infinite loop"},"145":{"body":"As we already mentioned, infinite loops are rather useless on their own. And that's where we introduce the break and continue statements. They are used to exit a loop early, and to skip the rest of the current iteration, respectively. Syntax for the break statement is (without a semicolon): break The break statement is used to stop the execution of a loop and exit it early. It is often used in combination with a conditional statement to exit the loop when a certain condition is met. To illustrate this point, let's turn the infinite loop from the previous example into something that looks and behaves more like a while loop: #[test] fun test_break_loop() { let mut x = 0; // This will loop until `x` is 5. loop { x = x + 1; // If `x` is 5, then exit the loop. if (x == 5) { break // Exit the loop. } }; assert!(x == 5, 0); } Almost identical to the while loop, right? The break statement is used to exit the loop when x is 5. If we remove the break statement, the loop will run forever, just like the previous example.","breadcrumbs":"Move Basics » Control Flow » Exiting a Loop Early","id":"145","title":"Exiting a Loop Early"},"146":{"body":"The continue statement is used to skip the rest of the current iteration and start the next one. Similarly to break, it is used in combination with a conditional statement to skip the rest of the iteration when a certain condition is met. Syntax for the continue statement is (without a semicolon): continue The example below skips odd numbers and prints only even numbers from 0 to 10: #[test] fun test_continue_loop() { let mut x = 0; // This will loop until `x` is 10. loop { x = x + 1; // If `x` is odd, then skip the rest of the iteration. if (x % 2 == 1) { continue // Skip the rest of the iteration. }; std::debug::print(&x); // If `x` is 10, then exit the loop. if (x == 10) { break // Exit the loop. } }; assert!(x == 10, 0); // 10 } break and continue statements can be used in both while and loop loops.","breadcrumbs":"Move Basics » Control Flow » Skipping an Iteration","id":"146","title":"Skipping an Iteration"},"147":{"body":"The return statement is used to exit a function early and return a value. It is often used in combination with a conditional statement to exit the function when a certain condition is met. The syntax for the return statement is: return Here is an example of a function that returns a value when a certain condition is met: /// This function returns `true` if `x` is greater than 0 and not 5, /// otherwise it returns `false`. fun is_positive(x: u8): bool { if (x == 5) { return false }; if (x > 0) { return true }; false } #[test] fun test_return() { assert!(is_positive(5) == false, 0); assert!(is_positive(0) == false, 0); assert!(is_positive(1) == true, 0); } Unlike in other languages, the return statement is not required for the last expression in a function. The last expression in a function block is automatically returned. However, the return statement is useful when we want to exit a function early if a certain condition is met.","breadcrumbs":"Move Basics » Control Flow » Early Return","id":"147","title":"Early Return"},"148":{"body":"Constants are immutable values that are defined at the module level. They often serve as a way to give names to static values that are used throughout a module. For example, if there's a default price for a product, you might define a constant for it. Constants are stored in the module's bytecode, and each time they are used, the value is copied. module book::shop_price { use sui::coin::Coin; use sui::sui::SUI; /// The price of an item in the shop. const ITEM_PRICE: u64 = 100; /// The owner of the shop, an address. const SHOP_OWNER: address = @0xa11ce; /// An item sold in the shop. public struct Item { /* ... */ } /// Purchase an item from the shop. public fun purchase(coin: Coin): Item { assert!(coin.value() == ITEM_PRICE, 0); transfer::public_transfer(coin, SHOP_OWNER); Item { /* ... */ } }\n}","breadcrumbs":"Move Basics » Constants » Constants","id":"148","title":"Constants"},"149":{"body":"Constants must start with a capital letter - this is enforced at the compiler level. For constants used as a value, there's a convention to use uppercase letters and underscores to separate words. It's a way to make constants stand out from other identifiers in the code. One exception is made for error constants , which are written in ECamelCase. /// Price of the item used at the shop.\nconst ITEM_PRICE: u64 = 100; /// Error constant.\nconst EItemNotFound: u64 = 1;","breadcrumbs":"Move Basics » Constants » Naming Convention","id":"149","title":"Naming Convention"},"15":{"body":"In this chapter, you will learn how to create a new package, write a simple module, compile it, and run tests with the Move CLI. Make sure you have installed Sui and set up your IDE environment . Run the command below to test if Sui has been installed correctly. # It should print the client version. E.g. sui-client 1.22.0-036299745.\nsui client --version Move CLI is a command-line interface for the Move language; it is built into the Sui binary and provides a set of commands to manage packages, compile and test code. The structure of the chapter is as follows: Create a New Package Directory Structure Compiling the Package Running Tests","breadcrumbs":"Hello, World! » Hello, World!","id":"15","title":"Hello, World!"},"150":{"body":"Constants can't be changed and assigned new values. They are part of the package bytecode, and inherently immutable. module book::immutable_constants { const ITEM_PRICE: u64 = 100; // emits an error fun change_price() { ITEM_PRICE = 200; }\n}","breadcrumbs":"Move Basics » Constants » Constants are Immutable","id":"150","title":"Constants are Immutable"},"151":{"body":"A common use case for an application is to define a set of constants that are used throughout the codebase. But due to constants being private to the module, they can't be accessed from other modules. One way to solve this is to define a \"config\" module that exports the constants. module book::config { const ITEM_PRICE: u64 = 100; const TAX_RATE: u64 = 10; const SHIPPING_COST: u64 = 5; /// Returns the price of an item. public fun item_price(): u64 { ITEM_PRICE } /// Returns the tax rate. public fun tax_rate(): u64 { TAX_RATE } /// Returns the shipping cost. public fun shipping_cost(): u64 { SHIPPING_COST }\n} This way other modules can import and read the constants, and the update process is simplified. If the constants need to be changed, only the config module needs to be updated during the package upgrade.","breadcrumbs":"Move Basics » Constants » Using Config Pattern","id":"151","title":"Using Config Pattern"},"152":{"body":"Constants in the Move Reference Coding conventions for constants","breadcrumbs":"Move Basics » Constants » Links","id":"152","title":"Links"},"153":{"body":"A transaction can either succeed or fail. Successful execution applies all the changes made to objects and on-chain data, and the transaction is committed to the blockchain. Alternatively, if a transaction aborts, the changes are not applied. The abort keyword is used to abort a transaction and revert the changes made so far. It is important to note that there is no catch mechanism in Move. If a transaction aborts, the changes made so far are reverted, and the transaction is considered failed.","breadcrumbs":"Move Basics » Aborting Execution » Aborting Execution","id":"153","title":"Aborting Execution"},"154":{"body":"The abort keyword is used to abort the execution of a transaction. It is used in combination with an abort code, which will be returned to the caller of the transaction. The abort code is an integer of type u64. let user_has_access = true; // abort with a predefined constant if `user_has_access` is false\nif (!user_has_access) { abort 0\n}; // there's an alternative syntax using parenthesis`\nif (user_has_access) { abort(1)\n}; The code above will, of course, abort with abort code 1.","breadcrumbs":"Move Basics » Aborting Execution » Abort","id":"154","title":"Abort"},"155":{"body":"The assert! macro is a built-in macro that can be used to assert a condition. If the condition is false, the transaction will abort with the given abort code. The assert! macro is a convenient way to abort a transaction if a condition is not met. The macro shortens the code otherwise written with an if expression + abort. The code argument is required and has to be a u64 value. // aborts if `user_has_access` is `false` with abort code 0\nassert!(user_has_access, 0); // expands into:\nif (!user_has_access) { abort 0\n};","breadcrumbs":"Move Basics » Aborting Execution » assert!","id":"155","title":"assert!"},"156":{"body":"To make error codes more descriptive, it is a good practice to define error constants . Error constants are defined as const declarations and are usually prefixed with E followed by a camel case name. Error constants are no different from other constants and don't have special handling, however, they are used to increase the readability of the code and make it easier to understand the abort scenarios. /// Error code for when the user has no access.\nconst ENoAccess: u64 = 0;\n/// Trying to access a field that does not exist.\nconst ENoField: u64 = 1; /// Updates a record.\npublic fun update_record(/* ... , */ user_has_access: bool, field_exists: bool) { // asserts are way more readable now assert!(user_has_access, ENoAccess); assert!(field_exists, ENoField); /* ... */\n}","breadcrumbs":"Move Basics » Aborting Execution » Error constants","id":"156","title":"Error constants"},"157":{"body":"Abort and Assert in the Move Reference. We suggest reading the Better Error Handling guide to learn about best practices for error handling in Move.","breadcrumbs":"Move Basics » Aborting Execution » Further reading","id":"157","title":"Further reading"},"158":{"body":"Functions are the building blocks of Move programs. They are called from user transactions and from other functions and group executable code into reusable units. Functions can take arguments and return a value. They are declared with the fun keyword at the module level. Just like any other module member, by default they're private and can only be accessed from within the module. module book::math { /// Function takes two arguments of type `u64` and returns their sum. /// The `public` visibility modifier makes the function accessible from /// outside the module. public fun add(a: u64, b: u64): u64 { a + b } #[test] fun test_add() { let sum = add(1, 2); assert!(sum == 3, 0); }\n} In this example, we define a function add that takes two arguments of type u64 and returns their sum. The function is called from the test_add function, which is a test function located in the same module. In the test we compare the result of the add function with the expected value and abort the execution if the result is different.","breadcrumbs":"Move Basics » Function » Function","id":"158","title":"Function"},"159":{"body":"There's a convention to call functions in Move with the snake_case naming convention. This means that the function name should be all lowercase with words separated by underscores. For example, do_something, add, get_balance, is_authorized, and so on. A function is declared with the fun keyword followed by the function name (a valid Move identifier), a list of arguments in parentheses, and a return type. The function body is a block of code that contains a sequence of statements and expressions. The last expression in the function body is the return value of the function. fun return_nothing() { // empty expression, function returns `()`\n}","breadcrumbs":"Move Basics » Function » Function declaration","id":"159","title":"Function declaration"},"16":{"body":"To create a new program, we will use the sui move new command followed by the name of the application. Our first program will be called hello_world. Note: In this and other chapters, if you see code blocks with lines starting with $ (dollar sign), it means that the following command should be run in a terminal. The sign should not be included. It's a common way of showing commands in terminal environments. $ sui move new hello_world The sui move command gives access to the Move CLI - a built-in compiler, test runner and a utility for all things Move. The new command followed by the name of the package will create a new package in a new folder. In our case, the folder name is \"hello_world\". We can view the contents of the folder to see that the package was created successfully. $ ls -l hello_world\nMove.toml\nsources\ntests","breadcrumbs":"Hello, World! » Create a New Package","id":"16","title":"Create a New Package"},"160":{"body":"Just like any other module member, functions can be imported and accessed via a path. The path consists of the module path and the function name separated by ::. For example, if you have a function called add in the math module in the book package, the path to it will be book::math::add, or, if the module is imported, math::add. module book::use_math { use book::math; fun call_add() { // function is called via the path let sum = math::add(1, 2); }\n}","breadcrumbs":"Move Basics » Function » Accessing functions","id":"160","title":"Accessing functions"},"161":{"body":"Move functions can return multiple values, which is useful when you need to return more than one value from a function. The return type of the function is a tuple of types. The return value is a tuple of expressions. fun get_name_and_age(): (vector, u8) { (b\"John\", 25)\n} Result of a function call with tuple return has to be unpacked into variables via let (tuple) syntax: // Tuple must be destructured to access its elements.\n// Name and age are declared as immutable variables.\nlet (name, age) = get_name_and_age();\nassert!(name == b\"John\", 0);\nassert!(age == 25, 0); If any of the declared values need to be declared as mutable, the mut keyword is placed before the variable name: // declare name as mutable, age as immutable\nlet (mut name, age) = get_name_and_age(); If some of the arguments are not used, they can be ignored with the _ symbol: // ignore the name, only use the age\nlet (_, age) = get_name_and_age();","breadcrumbs":"Move Basics » Function » Multiple return values","id":"161","title":"Multiple return values"},"162":{"body":"Functions in the Move Reference.","breadcrumbs":"Move Basics » Function » Further reading","id":"162","title":"Further reading"},"163":{"body":"Move Compiler supports receiver syntax , which allows defining methods which can be called on instances of a struct. This is similar to the method syntax in other programming languages. It is a convenient way to define functions which operate on the fields of a struct.","breadcrumbs":"Move Basics » Struct Methods » Struct Methods","id":"163","title":"Struct Methods"},"164":{"body":"If the first argument of a function is a struct internal to the module, then the function can be called using the . operator. If the function uses a struct from another module, then method won't be associated with the struct by default. In this case, the function can be called using the standard function call syntax. When a module is imported, the methods are automatically associated with the struct. module book::hero { /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } /// A method which casts a spell, consuming mana. public fun heal_spell(hero: &mut Hero) { hero.health = hero.health + 10; hero.mana = hero.mana - 10; } /// A method which returns the health of the hero. public fun health(hero: &Hero): u8 { hero.health } /// A method which returns the mana of the hero. public fun mana(hero: &Hero): u8 { hero.mana } #[test] // Test the methods of the `Hero` struct. fun test_methods() { let mut hero = new(); hero.heal_spell(); assert!(hero.health() == 110, 1); assert!(hero.mana() == 90, 2); }\n}","breadcrumbs":"Move Basics » Struct Methods » Method syntax","id":"164","title":"Method syntax"},"165":{"body":"For modules that define multiple structs and their methods, it is possible to define method aliases to avoid name conflicts, or to provide a better-named method for a struct. The syntax for aliases is: // for local method association\nuse fun function_path as Type.method_name; // exported alias\npublic use fun function_path as Type.method_name; Public aliases are only allowed for structs defined in the same module. If a struct is defined in another module, an alias can still be created but cannot be made public. In the example below, we changed the hero module and added another type - Villain. Both Hero and Villain have similar field names and methods. And to avoid name conflicts, we prefixed methods with hero_ and villain_ respectively. However, we can create aliases for these methods so that they can be called on the instances of the structs without the prefix. module book::hero_and_villain { /// A struct representing a hero. public struct Hero has drop { health: u8, } /// A struct representing a villain. public struct Villain has drop { health: u8, } /// Create a new Hero. public fun new_hero(): Hero { Hero { health: 100 } } /// Create a new Villain. public fun new_villain(): Villain { Villain { health: 100 } } // Alias for the `hero_health` method. Will be imported automatically when // the module is imported. public use fun hero_health as Hero.health; public fun hero_health(hero: &Hero): u8 { hero.health } // Alias for the `villain_health` method. Will be imported automatically // when the module is imported. public use fun villain_health as Villain.health; public fun villain_health(villain: &Villain): u8 { villain.health } #[test] // Test the methods of the `Hero` and `Villain` structs. fun test_associated_methods() { let hero = new_hero(); assert!(hero.health() == 100, 1); let villain = new_villain(); assert!(villain.health() == 100, 3); }\n} As you can see, in the test function, we called the health method on the instances of Hero and Villain without the prefix. The compiler will automatically associate the methods with the structs.","breadcrumbs":"Move Basics » Struct Methods » Method Aliases","id":"165","title":"Method Aliases"},"166":{"body":"It is also possible to associate a function defined in another module with a struct from the current module. Following the same approach, we can create an alias for the method defined in another module. Let's use the bcs::to_bytes method from the Standard Library and associate it with the Hero struct. It will allow serializing the Hero struct to a vector of bytes. // TODO: better example (external module...)\nmodule book::hero_to_bytes { // Alias for the `bcs::to_bytes` method. Imported aliases should be defined // in the top of the module. // public use fun bcs::to_bytes as Hero.to_bytes; /// A struct representing a hero. public struct Hero has drop { health: u8, mana: u8, } /// Create a new Hero. public fun new(): Hero { Hero { health: 100, mana: 100 } } #[test] // Test the methods of the `Hero` struct. fun test_hero_serialize() { // let mut hero = new(); // let serialized = hero.to_bytes(); // assert!(serialized.length() == 3, 1); }\n}","breadcrumbs":"Move Basics » Struct Methods » Aliasing an external module's method","id":"166","title":"Aliasing an external module's method"},"167":{"body":"Method Syntax in the Move Reference.","breadcrumbs":"Move Basics » Struct Methods » Further reading","id":"167","title":"Further reading"},"168":{"body":"Every module member has a visibility. By default, all module members are private - meaning they are only accessible within the module they are defined in. However, you can add a visibility modifier to make a module member public - visible outside the module, or public(package) - visible in the modules within the same package, or entry - can be called from a transaction but can't be called from other modules.","breadcrumbs":"Move Basics » Visibility Modifiers » Visibility Modifiers","id":"168","title":"Visibility Modifiers"},"169":{"body":"A function or a struct defined in a module which has no visibility modifier is private to the module. It can't be called from other modules. module book::internal_visibility { // This function can be called from other functions in the same module fun internal() { /* ... */ } // Same module -> can call internal() fun call_internal() { internal(); }\n} module book::try_calling_internal { use book::internal_visibility; // Different module -> can't call internal() fun try_calling_internal() { internal_visibility::internal(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Internal Visibility","id":"169","title":"Internal Visibility"},"17":{"body":"Move CLI will create a scaffold of the application and pre-create the directory structure and all necessary files. Let's see what's inside. hello_world\n├── Move.toml\n├── sources\n│ └── hello_world.move\n└── tests └── hello_world_tests.move","breadcrumbs":"Hello, World! » Directory Structure","id":"17","title":"Directory Structure"},"170":{"body":"A struct or a function can be made public by adding the public keyword before the fun or struct keyword. module book::public_visibility { // This function can be called from other modules public fun public() { /* ... */ }\n} A public function can be imported and called from other modules. The following code will compile: module book::try_calling_public { use book::public_visibility; // Different module -> can call public() fun try_calling_public() { public_visibility::public(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Public Visibility","id":"170","title":"Public Visibility"},"171":{"body":"Move 2024 introduces the package visibility modifier. A function with package visibility can be called from any module within the same package. It can't be called from other packages. module book::package_visibility { public(package) fun package_only() { /* ... */ }\n} A package function can be called from any module within the same package: module book::try_calling_package { use book::package_visibility; // Same package `book` -> can call package_only() fun try_calling_package() { package_visibility::package_only(); }\n}","breadcrumbs":"Move Basics » Visibility Modifiers » Package Visibility","id":"171","title":"Package Visibility"},"172":{"body":"Every variable in Move has a scope and an owner. The scope is the range of code where the variable is valid, and the owner is the scope that this variable belongs to. Once the owner scope ends, the variable is dropped. This is a fundamental concept in Move, and it is important to understand how it works.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership and Scope","id":"172","title":"Ownership and Scope"},"173":{"body":"A variable defined in a function scope is owned by this scope. The runtime goes through the function scope and executes every expression and statement. Once the function scope end, the variables defined in it are dropped or deallocated. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function } // a is dropped here public fun other() { let b = 2; // b is owned by the `other` function } // b is dropped here #[test] fun test_owner() { owner(); other(); // a & b is not valid here }\n} In the example above, the variable a is owned by the owner function, and the variable b is owned by the other function. When each of these functions are called, the variables are defined, and when the function ends, the variables are discarded.","breadcrumbs":"Move Basics » Ownership and Scope » Ownership","id":"173","title":"Ownership"},"174":{"body":"If we changed the owner function to return the variable a, then the ownership of a would be transferred to the caller of the function. module book::ownership { public fun owner(): u8 { let a = 1; // a defined here a // scope ends, a is returned } #[test] fun test_owner() { let a = owner(); // a is valid here } // a is dropped here\n}","breadcrumbs":"Move Basics » Ownership and Scope » Returning a Value","id":"174","title":"Returning a Value"},"175":{"body":"Additionally, if we passed the variable a to another function, the ownership of a would be transferred to this function. When performing this operation, we move the value from one scope to another. This is also called move semantics . module book::ownership { public fun owner(): u8 { let a = 10; a } // a is returned public fun take_ownership(v: u8) { // v is owned by `take_ownership` } // v is dropped here #[test] fun test_owner() { let a = owner(); take_ownership(a); // a is not valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Passing by Value","id":"175","title":"Passing by Value"},"176":{"body":"Each function has a main scope, and it can also have sub-scopes via the use of blocks. A block is a sequence of statements and expressions, and it has its own scope. Variables defined in a block are owned by this block, and when the block ends, the variables are dropped. module book::ownership { public fun owner() { let a = 1; // a is owned by the `owner` function's scope { let b = 2; // b is owned by the block { let c = 3; // c is owned by the block }; // c is dropped here }; // b is dropped here // a = b; // error: b is not valid here // a = c; // error: c is not valid here } // a is dropped here\n} However, shall we use the return value of a block, the ownership of the variable is transferred to the caller of the block. module book::ownership { public fun owner(): u8 { let a = 1; // a is owned by the `owner` function's scope let b = { let c = 2; // c is owned by the block c // c is returned }; // c is dropped here a + b // both a and b are valid here }\n}","breadcrumbs":"Move Basics » Ownership and Scope » Scopes with Blocks","id":"176","title":"Scopes with Blocks"},"177":{"body":"Some types in Move are copyable , which means that they can be copied without transferring the ownership. This is useful for types that are small and cheap to copy, such as integers and booleans. Move compiler will automatically copy these types when they are passed to a function or returned from a function, or when they're moved to a scope and then accessed in their original scope.","breadcrumbs":"Move Basics » Ownership and Scope » Copyable Types","id":"177","title":"Copyable Types"},"178":{"body":"Local Variables and Scopes in the Move Reference.","breadcrumbs":"Move Basics » Ownership and Scope » Further reading","id":"178","title":"Further reading"},"179":{"body":"In Move, the copy ability on a type indicates that the instance or the value of the type can be copied. While this behavior may feel very natural when working with numbers or other simple types, it is not the default for custom types in Move. This is because Move is designed to express digital assets and resources, and inability to copy is a key element of the resource model. However, Move type system allows you to define custom types with the copy ability. public struct Copyable has copy {} In the example above, we define a custom type Copyable with the copy ability. This means that instances of Copyable can be copied, both implicitly and explicitly. let a = Copyable {};\nlet b = a; // `a` is copied to `b`\nlet c = *&b; // explicit copy via dereference operator let Copyable {} = a; // doesn't have `drop`\nlet Copyable {} = b; // doesn't have `drop`\nlet Copyable {} = c; // doesn't have `drop` In the example above, a is copied to b implicitly, and then explicitly copied to c using the dereference operator. If Copyable did not have the copy ability, the code would not compile, and the Move compiler would raise an error.","breadcrumbs":"Move Basics » Ability: Copy » Abilities: Copy","id":"179","title":"Abilities: Copy"},"18":{"body":"The Move.toml file, known as the package manifest , contains definitions and configuration settings for the package. It is used by the Move Compiler to manage package metadata, fetch dependencies, and register named addresses. We will explain it in detail in the Concepts chapter. By default, the package features one named address - the name of the package. [addresses]\nhello_world = \"0x0\"","breadcrumbs":"Hello, World! » Manifest","id":"18","title":"Manifest"},"180":{"body":"The copy ability is closely related to drop ability . If a type has the copy ability, very likely that it should have drop too. This is because the drop ability is required to clean up the resources when the instance is no longer needed. If a type has only copy , then managing its instances gets more complicated, as the values cannot be ignored. public struct Value has copy, drop {} All of the primitive types in Move behave as if they have the copy and drop abilities. This means that they can be copied and dropped, and the Move compiler will handle the memory management for them.","breadcrumbs":"Move Basics » Ability: Copy » Copying and Drop","id":"180","title":"Copying and Drop"},"181":{"body":"All native types in Move have the copy ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the copy ability as well. This includes: Option String TypeName","breadcrumbs":"Move Basics » Ability: Copy » Types with the copy Ability","id":"181","title":"Types with the copy Ability"},"182":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Move Basics » Ability: Copy » Further reading","id":"182","title":"Further reading"},"183":{"body":"In the Ownership and Scope section, we explained that when a value is passed to a function, it is moved to the function's scope. This means that the function becomes the owner of the value, and the original scope (owner) can no longer use it. This is an important concept in Move, as it ensures that the value is not used in multiple places at the same time. However, there are use cases when we want to pass a value to a function but retain the ownership. This is where references come into play. To illustrate this, let's consider a simple example - an application for a metro (subway) pass. We will look at 4 different scenarios: Card can be purchased at the kiosk for a fixed price Card can be shown to inspectors to prove that the passenger has a valid pass Card can be used at the turnstile to enter the metro, and spend a ride Card can be recycled once it's empty","breadcrumbs":"Move Basics » References » References","id":"183","title":"References"},"184":{"body":"The initial layout of the metro pass application is simple. We define the Card type and the USES constant that represents the number of rides for a single card. We also add an error constant for the case when the card is empty. module book::metro_pass { /// Error code for when the card is empty. const ENoUses: u64 = 0; /// Number of uses for a metro pass card. const USES: u8 = 3; /// A metro pass card public struct Card { uses: u8 } /// Purchase a metro pass card. public fun purchase(/* pass a Coin */): Card { Card { uses: USES } }\n}","breadcrumbs":"Move Basics » References » Layout","id":"184","title":"Layout"},"185":{"body":"References are a way to show a value to a function without giving up the ownership. In our case, when we show the Card to the inspector, we don't want to give up the ownership of it, and we don't allow them to spend the rides. We just want to allow reading the value of the Card and prove its ownership. To do so, in the function signature, we use the & symbol to indicate that we are passing a reference to the value, not the value itself. /// Show the metro pass card to the inspector. public fun is_valid(card: &Card): bool { card.uses > 0 } Now the function can't take the ownership of the card, and it can't spend the rides. But it can read its value. Worth noting, that a signature like this makes it impossible to call the function without a Card at all. This is an important property which allows the Capability Pattern which we will cover in the next chapters.","breadcrumbs":"Move Basics » References » Reference","id":"185","title":"Reference"},"186":{"body":"In some cases, we want to allow the function to change the value of the Card. For example, when we use the Card at the turnstile, we want to spend a ride. To implement it, we use the &mut keyword in the function signature. /// Use the metro pass card at the turnstile to enter the metro. public fun enter_metro(card: &mut Card) { assert!(card.uses > 0, ENoUses); card.uses = card.uses - 1; } As you can see in the function body, the &mut reference allows mutating the value, and the function can spend the rides.","breadcrumbs":"Move Basics » References » Mutable Reference","id":"186","title":"Mutable Reference"},"187":{"body":"Lastly, let's give an illustration of what happens when we pass the value itself to the function. In this case, the function takes the ownership of the value, and the original scope can no longer use it. The owner of the Card can recycle it, and, hence, lose the ownership. /// Recycle the metro pass card. public fun recycle(card: Card) { assert!(card.uses == 0, ENoUses); let Card { uses: _ } = card; } In the recycle function, the Card is taken by value and can be unpacked and destroyed. The original scope can't use it anymore.","breadcrumbs":"Move Basics » References » Passing by Value","id":"187","title":"Passing by Value"},"188":{"body":"To illustrate the full flow of the application, let's put all the pieces together in a test. #[test] fun test_card_2024() { // declaring variable as mutable because we modify it let mut card = purchase(); card.enter_metro(); // modify the card but don't move it assert!(card.is_valid(), 0); // read the card! card.enter_metro(); // modify the card but don't move it card.enter_metro(); // modify the card but don't move it card.recycle(); // move the card out of the scope }","breadcrumbs":"Move Basics » References » Full Example","id":"188","title":"Full Example"},"189":{"body":"Generics are a way to define a type or function that can work with any type. This is useful when you want to write a function which can be used with different types, or when you want to define a type that can hold any other type. Generics are the foundation of many advanced features in Move, such as collections, abstract implementations, and more.","breadcrumbs":"Move Basics » Generics » Generics","id":"189","title":"Generics"},"19":{"body":"The sources/ directory contains the source files. Move source files have .move extension, and are typically named after the module defined in the file. For example, in our case, the file name is hello_world.move and the Move CLI has already placed commented out code inside: /*\n/// Module: hello_world\nmodule hello_world::hello_world { }\n*/ The /* and */ are the comment delimiters in Move. Everything in between is ignored by the compiler and can be used for documentation or notes. We explain all ways to comment the code in the Basic Syntax . The commented out code is a module definition, it starts with the keyword module followed by a named address (or an address literal), and the module name. The module name is a unique identifier for the module and has to be unique within the package. The module name is used to reference the module from other modules or transactions.","breadcrumbs":"Hello, World! » Sources","id":"19","title":"Sources"},"190":{"body":"In this chapter we already mentioned the vector type, which is a generic type that can hold any other type. Another example of a generic type in the standard library is the Option type, which is used to represent a value that may or may not be present.","breadcrumbs":"Move Basics » Generics » In the Standard Library","id":"190","title":"In the Standard Library"},"191":{"body":"To define a generic type or function, a type signature needs to have a list of generic parameters enclosed in angle brackets (< and >). The generic parameters are separated by commas. /// Container for any type `T`.\npublic struct Container has drop { value: T,\n} /// Function that creates a new `Container` with a generic value `T`.\npublic fun new(value: T): Container { Container { value }\n} In the example above, Container is a generic type with a single type parameter T, the value field of the container stores the T. The new function is a generic function with a single type parameter T, and it returns a Container with the given value. Generic types must be initialed with a concrete type, and generic functions must be called with a concrete type. #[test]\nfun test_container() { // these three lines are equivalent let container: Container = new(10); // type inference let container = new(10); // create a new `Container` with a `u8` value let container = new(10u8); assert!(container.value == 10, 0x0); // Value can be ignored only if it has the `drop` ability. let Container { value: _ } = container;\n} In the test function test_generic we demonstrate three equivalent ways to create a new Container with a u8 value. Because numeric types need to be inferred, we specify the type of the number literal.","breadcrumbs":"Move Basics » Generics » Generic Syntax","id":"191","title":"Generic Syntax"},"192":{"body":"You can define a type or function with multiple type parameters. The type parameters are then separated by commas. /// A pair of values of any type `T` and `U`.\npublic struct Pair { first: T, second: U,\n} /// Function that creates a new `Pair` with two generic values `T` and `U`.\npublic fun new_pair(first: T, second: U): Pair { Pair { first, second }\n} In the example above, Pair is a generic type with two type parameters T and U, and the new_pair function is a generic function with two type parameters T and U. The function returns a Pair with the given values. The order of the type parameters is important, and it should match the order of the type parameters in the type signature. #[test]\nfun test_generic() { // these three lines are equivalent let pair_1: Pair = new_pair(10, true); // type inference let pair_2 = new_pair(10, true); // create a new `Pair` with a `u8` and `bool` values let pair_3 = new_pair(10u8, true); assert!(pair_1.first == 10, 0x0); assert!(pair_1.second, 0x0); // Unpacking is identical. let Pair { first: _, second: _ } = pair_1; let Pair { first: _, second: _ } = pair_2; let Pair { first: _, second: _ } = pair_3; } If we added another instance where we swapped type parameters in the new_pair function, and tried to compare two types, we'd see that the type signatures are different, and cannot be compared. #[test]\nfun test_swap_type_params() { let pair1: Pair = new_pair(10u8, true); let pair2: Pair = new_pair(true, 10u8); // this line will not compile // assert!(pair1 == pair2, 0x0); let Pair { first: pf1, second: ps1 } = pair1; // first1: u8, second1: bool let Pair { first: pf2, second: ps2 } = pair2; // first2: bool, second2: u8 assert!(pf1 == ps2, 0x0); // 10 == 10 assert!(ps1 == pf2, 0x0); // true == true\n} Types for variables pair1 and pair2 are different, and the comparison will not compile.","breadcrumbs":"Move Basics » Generics » Multiple Type Parameters","id":"192","title":"Multiple Type Parameters"},"193":{"body":"In the examples above we focused on instantiating generic types and calling generic functions to create instances of these types. However, the real power of generics is the ability to define shared behavior for the base, generic type, and then use it independently of the concrete types. This is especially useful when working with collections, abstract implementations, and other advanced features in Move. /// A user record with name, age, and some generic metadata\npublic struct User { name: String, age: u8, /// Varies depending on application. metadata: T,\n} In the example above, User is a generic type with a single type parameter T, with shared fields name and age, and the generic metadata field which can store any type. No matter what the metadata is, all of the instances of User will have the same fields and methods. /// Updates the name of the user.\npublic fun update_name(user: &mut User, name: String) { user.name = name;\n} /// Updates the age of the user.\npublic fun update_age(user: &mut User, age: u8) { user.age = age;\n}","breadcrumbs":"Move Basics » Generics » Why Generics?","id":"193","title":"Why Generics?"},"194":{"body":"In some cases, you may want to define a generic type with a type parameter that is not used in the fields or methods of the type. This is called a phantom type parameter . Phantom type parameters are useful when you want to define a type that can hold any other type, but you want to enforce some constraints on the type parameter. /// A generic type with a phantom type parameter.\npublic struct Coin { value: u64\n} The Coin type here does not contain any fields or methods that use the type parameter T. It is used to differentiate between different types of coins, and to enforce some constraints on the type parameter T. public struct USD {}\npublic struct EUR {} #[test]\nfun test_phantom_type() { let coin1: Coin = Coin { value: 10 }; let coin2: Coin = Coin { value: 20 }; // Unpacking is identical because the phantom type parameter is not used. let Coin { value: _ } = coin1; let Coin { value: _ } = coin2;\n} In the example above, we demonstrate how to create two different instances of Coin with different phantom type parameters USD and EUR. The type parameter T is not used in the fields or methods of the Coin type, but it is used to differentiate between different types of coins. It will make sure that the USD and EUR coins are not mixed up.","breadcrumbs":"Move Basics » Generics » Phantom Type Parameters","id":"194","title":"Phantom Type Parameters"},"195":{"body":"Type parameters can be constrained to have certain abilities. This is useful when you need the inner type to allow certain behavior, such as copy or drop . The syntax for constraining a type parameter is T: + . /// A generic type with a type parameter that has the `drop` ability.\npublic struct Droppable { value: T,\n} /// A generic struct with a type parameter that has the `copy` and `drop` abilities.\npublic struct CopyableDroppable { value: T, // T must have the `copy` and `drop` abilities\n} Move Compiler will enforce that the type parameter T has the specified abilities. If the type parameter does not have the specified abilities, the code will not compile. /// Type without any abilities.\npublic struct NoAbilities {} #[test]\nfun test_constraints() { // Fails - `NoAbilities` does not have the `drop` ability // let droppable = Droppable { value: 10 }; // Fails - `NoAbilities` does not have the `copy` and `drop` abilities // let copyable_droppable = CopyableDroppable { value: 10 };\n}","breadcrumbs":"Move Basics » Generics » Constraints on Type Parameters","id":"195","title":"Constraints on Type Parameters"},"196":{"body":"Generics in the Move Reference.","breadcrumbs":"Move Basics » Generics » Further Reading","id":"196","title":"Further Reading"},"197":{"body":"In programming languages reflection is the ability of a program to examine and modify its own structure and behavior. In Move, there's a limited form of reflection that allows you to inspect the type of a value at runtime. This is useful when you need to store type information in a homogeneous collection, or when you need to check if a type belongs to a package. Type reflection is implemented in the Standard Library module std::type_name. Expressed very roughly, it gives a single function get() which returns the name of the type T.","breadcrumbs":"Move Basics » Type Reflection » Type Reflection","id":"197","title":"Type Reflection"},"198":{"body":"The module is pretty straightforward, and operations allowed on the result are limited to getting a string representation and extracting the module and address of the type. module book::type_reflection { use std::ascii::String; use std::type_name::{Self, TypeName}; /// A function that returns the name of the type `T` and its module and address. public fun do_i_know_you(): (String, String, String) { let type_name: TypeName = type_name::get(); // there's a way to borrow let str: &String = type_name.borrow_string(); let module_name: String = type_name.get_module(); let address_str: String = type_name.get_address(); // and a way to consume the value let str = type_name.into_string(); (str, module_name, address_str) } #[test_only] public struct MyType {} #[test] fun test_type_reflection() { let (type_name, module_name, _address_str) = do_i_know_you(); // assert!(module_name == b\"type_reflection\".to_ascii_string(), 1); }\n}","breadcrumbs":"Move Basics » Type Reflection » In practice","id":"198","title":"In practice"},"199":{"body":"Type reflection is an important part of the language, and it is a crucial part of some of the more advanced patterns.","breadcrumbs":"Move Basics » Type Reflection » Further reading","id":"199","title":"Further reading"},"2":{"body":"Move requires an environment to run and develop applications, and in this small chapter we will cover the prerequisites for the Move language: how to set up your IDE, how to install the compiler and what is Move 2024. If you are already familiar with these topics or have a CLI installed, you can skip this chapter and proceed to the next one .","breadcrumbs":"Before we begin » Before we begin","id":"2","title":"Before we begin"},"20":{"body":"The tests/ directory contains package tests. The compiler excludes these files in the regular build process but uses them in test and dev modes. The tests are written in Move and are marked with the #[test] attribute. Tests can be grouped in a separate module (then it's usually called module_name_tests.move ), or inside the module they're testing. Modules, imports, constants and functions can be annotated with #[test_only]. This attribute is used to exclude modules, functions or imports from the build process. This is useful when you want to add helpers for your tests without including them in the code that will be published on chain. The hello_world_tests.move file contains a commented out test module template: /*\n#[test_only]\nmodule hello_world::hello_world_tests { // uncomment this line to import the module // use hello_world::hello_world; const ENotImplemented: u64 = 0; #[test] fun test_hello_world() { // pass } #[test, expected_failure(abort_code = hello_world::hello_world_tests::ENotImplemented)] fun test_hello_world_fail() { abort ENotImplemented }\n}\n*/","breadcrumbs":"Hello, World! » Tests","id":"20","title":"Tests"},"200":{"body":"A crucial part of any software development, and even more - blockchain development, is testing. Here, we will cover the basics of testing in Move and how to write and organize tests for your Move code.","breadcrumbs":"Move Basics » Testing » Testing","id":"200","title":"Testing"},"201":{"body":"Tests in Move are functions marked with the #[test] attribute. This attribute tells the compiler that the function is a test function, and it should be run when the tests are executed. Test functions are regular functions, but they must take no arguments and have no return value. They are excluded from the bytecode, and are never published. module book::testing { // Test attribute is placed before the `fun` keyword. Can be both above or // right before the `fun` keyword: `#[test] fun my_test() { ... }` // The name of the test would be `book::testing::simple_test`. #[test] fun simple_test() { let sum = 2 + 2; assert!(sum == 4, 1); } // The name of the test would be `book::testing::more_advanced_test`. #[test] fun more_advanced_test() { let sum = 2 + 2 + 2; assert!(sum == 4, 1); }\n}","breadcrumbs":"Move Basics » Testing » The #[test] attribute","id":"201","title":"The #[test] attribute"},"202":{"body":"To run tests, you can use the sui move test command. This command will first build the package in the test mode and then run all the tests found in the package. During test mode, modules from both sources/ and tests/ directories are processed, and the tests are executed. $ sui move test\n> INCLUDING DEPENDENCY Sui\n> INCLUDING DEPENDENCY MoveStdlib\n> BUILDING book\n> Running Move unit tests\n> ...","breadcrumbs":"Move Basics » Testing » Running Tests","id":"202","title":"Running Tests"},"203":{"body":"Tests for fail cases can be marked with #[expected_failure]. This attribute placed on a #[test] function tells the compiler that the test is expected to fail. This is useful when you want to test that a function fails when a certain condition is met. This attribute can only be placed on a #[test] function. The attribute can take an argument for abort code, which is the expected abort code when the test fails. If the test fails with a different abort code, the test will fail. If the execution did not abort, the test will also fail. module book::testing_failure { const EInvalidArgument: u64 = 1; #[test] #[expected_failure(abort_code = 0)] fun test_fail() { abort 0 // aborts with 0 } // attributes can be grouped together #[test, expected_failure(abort_code = EInvalidArgument)] fun test_fail_1() { abort 1 // aborts with 1 }\n} The abort_code argument can use constants defined in the tests module as well as imported from other modules. This is the only case where constants can be used and \"accessed\" in other modules.","breadcrumbs":"Move Basics » Testing » Test Fail Cases with #[expected_failure]","id":"203","title":"Test Fail Cases with #[expected_failure]"},"204":{"body":"In some cases, it is helpful to give the test environment access to some of the internal functions or features. It simplifies the testing process and allows for more thorough testing. However, it is important to remember that these functions should not be included in the final package. This is where the #[test_only] attribute comes in handy. module book::testing { // Public function which uses the `secret` function. public fun multiply_by_secret(x: u64): u64 { x * secret() } /// Private function which is not available to the public. fun secret(): u64 { 100 } #[test_only] /// This function is only available for testing purposes in tests and other /// test-only functions. Mind the visibility - for `#[test_only]` it is /// common to use `public` visibility. public fun secret_for_testing(): u64 { secret() } #[test] // In the test environment we have access to the `secret_for_testing` function. fun test_multiply_by_secret() { let expected = secret_for_testing() * 2; assert!(multiply_by_secret(2) == expected, 1); }\n} Functions marked with the #[test_only] will be available to the test environment, and to the other modules if their visibility is set so.","breadcrumbs":"Move Basics » Testing » Utilities with #[test_only]","id":"204","title":"Utilities with #[test_only]"},"205":{"body":"Unit Testing in the Move Reference.","breadcrumbs":"Move Basics » Testing » Further Reading","id":"205","title":"Further Reading"},"206":{"body":"This chapter describes the Object Model of Sui. It focuses on the theory and concepts behind the Object Model, preparing you for a practical dive into Sui Storage operations and resource ownership. For convenience and easier lookup, we split the chapter into several sections, each covering a specific aspect of the Object Model. In no way should this chapter be considered a comprehensive guide to the Object Model. It is only a high-level overview of the concepts and principles behind the Object Model. For a more detailed description, refer to the Sui Documentation .","breadcrumbs":"Object Model » Object Model","id":"206","title":"Object Model"},"207":{"body":"Smart-contract programming languages have historically focused on defining and managing digital assets. For example, the ERC-20 standard in Ethereum pioneered a set of standards to interact with digital currency tokens, establishing a blueprint for creating and managing digital currencies on the blockchain. Subsequently, the introduction of the ERC-721 standard marked a significant evolution, popularising the concept of non-fungible tokens (NFTs), which represent unique, indivisible assets. These standards laid the groundwork for the complex digital assets we see today. However, Ethereum's programming model lacked a native representation of assets. In other words, externally, a Smart Contract behaved like an asset, but the language itself did not have a way to inherently represent assets. From the start, Move aimed to provide a first-class abstraction for assets, opening up new avenues for thinking about and programming assets. It is important to highlight which properties are essential for an asset: Ownership: Every asset is associated with an owner(s), mirroring the straightforward concept of ownership in the physical world—just as you own a car, you can own a digital asset. Move enforces ownership in such a way that once an asset is moved , the previous owner completely loses any control over it. This mechanism ensures a clear and secure change of ownership. Non-copyable: In the real world, unique items cannot be duplicated effortlessly. Move applies this principle to digital assets, ensuring they cannot be arbitrarily copied within the program. This property is crucial for maintaining the scarcity and uniqueness of digital assets, mirroring the intrinsic value of physical assets. Non-discardable: Just as you cannot accidentally lose a house or a car without a trace, Move ensures that no asset can be discarded or lost in a program. Instead, assets must be explicitly transferred or destroyed. This property guarantees the deliberate handling of digital assets, preventing accidental loss and ensuring accountability in asset management. Move managed to encapsulate these properties in its design, becoming an ideal language for digital assets.","breadcrumbs":"Object Model » Language for Digital Assets » Move - Language for Digital Assets","id":"207","title":"Move - Language for Digital Assets"},"208":{"body":"Move was designed to provide a first-class abstraction for digital assets, enabling developers to create and manage assets natively. Essential properties of digital assets include ownership, non-copyability, and non-discardability, which Move enforces in its design. Move's asset model mirrors real-world asset management, ensuring secure and accountable asset ownership and transfer.","breadcrumbs":"Object Model » Language for Digital Assets » Summary","id":"208","title":"Summary"},"209":{"body":"Move: A Language With Programmable Resources (pdf) by Sam Blackshear, Evan Cheng, David L. Dill, Victor Gao, Ben Maurer, Todd Nowacki, Alistair Pott, Shaz Qadeer, Rain, Dario Russi, Stephane Sezer, Tim Zakian, Runtian Zhou*","breadcrumbs":"Object Model » Language for Digital Assets » Further reading","id":"209","title":"Further reading"},"21":{"body":"Additionally, Move CLI supports the examples/ folder. The files there are treated similarly to the ones placed under the tests/ folder - they're only built in the test and dev modes. They are to be examples of how to use the package or how to integrate it with other packages. The most popular use case is for documentation purposes and library packages.","breadcrumbs":"Hello, World! » Other Folders","id":"21","title":"Other Folders"},"210":{"body":"While Move was created to manage digital assets, its initial storage model was bulky and not well-suited for many use cases. For instance, if Alice wanted to transfer an asset X to Bob, Bob had to create a new \"empty\" resource, and then Alice could transfer asset X to Bob. This process was not intuitive and presented implementation challenges, partly due to the restrictive design of Diem . Another drawback of the original design was the lack of built-in support for a \"transfer\" operation, requiring every module to implement its own storage transfer logic. Additionally, managing heterogeneous collections of assets in a single account was particularly challenging. Sui addressed these challenges by redesigning the storage and ownership model of objects to more closely resemble real-world object interactions. With a native concept of ownership and transfer , Alice can directly transfer asset X to Bob. Furthermore, Bob can maintain a collection of different assets without any preparatory steps. These improvements laid the foundation for the Object Model in Sui.","breadcrumbs":"Object Model » Evolution of Move » Evolution of Move","id":"210","title":"Evolution of Move"},"211":{"body":"Move's initial storage model was not well-suited for managing digital assets, requiring complex and restrictive transfer operations. Sui introduced the Object Model, which provides a native concept of ownership, simplifying asset management and enabling heterogeneous collections.","breadcrumbs":"Object Model » Evolution of Move » Summary","id":"211","title":"Summary"},"212":{"body":"Why We Created Sui Move by Sam Blackshear","breadcrumbs":"Object Model » Evolution of Move » Further reading","id":"212","title":"Further reading"},"213":{"body":"The Object Model in Sui can be viewed as a high-level abstraction representing digital assets as objects . These objects have their own type and associated behaviors, a unique identifier, and support native storage operations like transfer and share . Designed to be intuitive and easy to use, the Object Model enables a wide range of use cases to be implemented with ease. Objects in Sui have the following properties: Type: Every object has a type, defining the structure and behavior of the object. Objects of different types cannot be mixed or used interchangeably, ensuring objects are used correctly according to their type system. Unique ID: Each object has a unique identifier, distinguishing it from other objects. This ID is generated upon the object's creation and is immutable. It's used to track and identify objects within the system. Owner: Every object is associated with an owner, who has control over the object. Ownership on Sui can be exclusive to an account, shared across the network, or frozen, allowing read-only access without modification or transfer capabilities. We will discuss ownership in more detail in the following sections. Data: Objects encapsulate their data, simplifying management and manipulation. The data structure and operations are defined by the object's type. Version: The transition from accounts to objects is facilitated by object versioning. Traditionally, blockchains use a nonce to prevent replay attacks. In Sui, the object's version acts as a nonce, preventing replay attacks for each object. Digest: Every object has a digest, which is a hash of the object's data. The digest is used to cryptographically verify the integrity of the object's data and ensures that it has not been tampered with. The digest is calculated when the object is created and is updated whenever the object's data changes.","breadcrumbs":"Object Model » What is an Object? » What is an Object?","id":"213","title":"What is an Object?"},"214":{"body":"Objects in Sui are high-level abstractions representing digital assets. Objects have a type, unique ID, owner, data, version, and digest. The Object Model simplifies asset management and enables a wide range of use cases.","breadcrumbs":"Object Model » What is an Object? » Summary","id":"214","title":"Summary"},"215":{"body":"Object Model in Sui Documentation.","breadcrumbs":"Object Model » What is an Object? » Further reading","id":"215","title":"Further reading"},"216":{"body":"Sui introduces four distinct ownership types for objects: single owner, shared state, immutable shared state, and object-owner. Each model offers unique characteristics and suits different use cases, enhancing flexibility and control in object management.","breadcrumbs":"Object Model » Ownership » Ownership","id":"216","title":"Ownership"},"217":{"body":"The account owner, also known as the single owner model, is the foundational ownership type in Sui. Here, an object is owned by a single account, granting that account exclusive control over the object within the behaviors associated with its type. This model embodies the concept of true ownership , where the account possesses complete authority over the object, making it inaccessible to others for modification or transfer. This level of ownership clarity is a significant advantage over other blockchain systems, where ownership definitions can be more ambiguous, and smart contracts may have the ability to alter or transfer assets without the owner's consent.","breadcrumbs":"Object Model » Ownership » Account Owner (or Single Owner)","id":"217","title":"Account Owner (or Single Owner)"},"218":{"body":"Single owner model has its limitations: for example, it is very tricky to implement a marketplace for digital assets without a shared state. For a generic marketplace scenario, imagine that Alice owns an asset X, and she wants to sell it by putting it into a shared marketplace. Then Bob can come and buy the asset directly from the marketplace. The reason why this is tricky is that it is impossible to write a smart contract that would \"lock\" the asset in Alice's account and take it out when Bob buys it. First, it will be a violation of the single owner model, and second, it requires a shared access to the asset. To facilitate a problem of shared data access, Sui has introduced a shared ownership model. In this model, an object can be shared with the network. Shared objects can be read and modified by any account on the network, and the rules of interaction are defined by the implementation of the object. Typical uses for shared objects are: marketplaces, shared resources, escrows, and other scenarios where multiple accounts need access to the same state.","breadcrumbs":"Object Model » Ownership » Shared State","id":"218","title":"Shared State"},"219":{"body":"Sui also offers the frozen object model, where an object becomes permanently read-only. These immutable objects, while readable, cannot be modified or moved, providing a stable and constant state accessible to all network participants. Frozen objects are ideal for public data, reference materials, and other use cases where the state permanence is desirable.","breadcrumbs":"Object Model » Ownership » Immutable (Frozen) State","id":"219","title":"Immutable (Frozen) State"},"22":{"body":"Move is a compiled language, and as such, it requires the compilation of source files into Move Bytecode. It contains only necessary information about the module, its members, and types, and excludes comments and some identifiers (for example, for constants). To demonstrate these features, let's replace the contents of the sources/hello_world.move file with the following: /// The module `hello_world` under named address `hello_world`.\n/// The named address is set in the `Move.toml`.\nmodule hello_world::hello_world { // Imports the `String` type from the Standard Library use std::string::String; /// Returns the \"Hello, World!\" as a `String`. public fun hello_world(): String { b\"Hello, World!\".to_string() }\n} During compilation, the code is built, but not run. A compiled package only includes functions that can be called by other modules or in a transaction. We will explain these concepts in the Concepts chapter. But now, let's see what happens when we run the sui move build . # run from the `hello_world` folder\n$ sui move build # alternatively, if you didn't `cd` into it\n$ sui move build --path hello_world It should output the following message on your console. UPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world During the compilation, Move Compiler automatically creates a build folder where it places all fetched and compiled dependencies as well as the bytecode for the modules of the current package. If you're using a versioning system, such as Git, build folder should be ignored. For example, you should use a .gitignore file and add build to it.","breadcrumbs":"Hello, World! » Compiling the Package","id":"22","title":"Compiling the Package"},"220":{"body":"The last ownership model in Sui is the object owner . In this model, an object is owned by another object. This feature allows creating complex relationships between objects, store large heterogenious collections, and implementing extensible and modular systems. Practically speaking, since the transactions are initiated by accounts, the transaction still accesses the parent object, but it can then access the child objects through the parent object. A use case we love to mention is a game character. Alice can own the Hero object from a game, and the Hero can own items: also represented as objects, like a \"Map\", or a \"Compass\". Alice may take the \"Map\" from the \"Hero\" object, and then send it to Bob, or sell it on a marketplace. With object owner, it becomes very natural to imagine how the assets can be structured and managed in relation to each other.","breadcrumbs":"Object Model » Ownership » Object Owner","id":"220","title":"Object Owner"},"221":{"body":"Single Owner: Objects are owned by a single account, granting exclusive control over the object. Shared State: Objects can be shared with the network, allowing multiple accounts to read and modify the object. Immutable State: Objects become permanently read-only, providing a stable and constant state. Object Owner: Objects can own other objects, enabling complex relationships and modular systems.","breadcrumbs":"Object Model » Ownership » Summary","id":"221","title":"Summary"},"222":{"body":"In the next section we will talk about transaction execution paths in Sui, and how the ownership models affect the transaction execution.","breadcrumbs":"Object Model » Ownership » Next Steps","id":"222","title":"Next Steps"},"223":{"body":"The Object Model allows for variable transaction execution paths, depending on the object's ownership type. The transaction execution path determines how the transaction is processed and validated by the network. In this section, we'll explore the different transaction execution paths in Sui and how they interact with the consensus mechanism.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path & Consensus","id":"223","title":"Fast Path & Consensus"},"224":{"body":"At its core, blockchain technology faces a fundamental concurrency challenge: multiple parties may try to modify or access the same data simultaneously in a decentralized environment. This requires a system for sequencing and validating transactions to support the network's consistency. Sui addresses this challenge through a consensus mechanism, ensuring all nodes agree on the transactions' sequence and state. Consider a marketplace scenario where Alice and Bob simultaneously attempt to purchase the same asset. The network must resolve this conflict to prevent double-spending, ensuring that at most one transaction succeeds while the other is rightfully rejected.","breadcrumbs":"Object Model » Fast Path & Consensus » Concurrency Challenge","id":"224","title":"Concurrency Challenge"},"225":{"body":"However, not all transactions require the same level of validation and consensus. For example, if Alice wants to transfer an object that she owns to Bob, the network can process this transaction without sequencing it with respect to all other transactions in the network, as only Alice has the authority to access the object. This is known as the fast path execution, where transactions accessing account-owned objects are processed quickly without the need for extensive consensus. No concurrent data access -> simpler challenge -> fast path. Another ownership model that allows for fast path execution is the immutable state . Since immutable objects cannot change, transactions involving them can be processed quickly without the need to sequence them.","breadcrumbs":"Object Model » Fast Path & Consensus » Fast Path","id":"225","title":"Fast Path"},"226":{"body":"Transactions that do access shared state - on Sui it is represented with shared objects - require sequencing to ensure that the state is updated and consistented across all nodes. This is known as the execution through consensus , where transactions accessing shared objects are subject to the agreement process to maintain network consistency.","breadcrumbs":"Object Model » Fast Path & Consensus » Consensus Path","id":"226","title":"Consensus Path"},"227":{"body":"Lastly, it is important to mention that objects owned by other objects are subject to the same rules as the parent object. If the parent object is shared , the child object is also transitively shared. If the parent object is immutable, the child object is also immutable.","breadcrumbs":"Object Model » Fast Path & Consensus » Objects owned by Objects","id":"227","title":"Objects owned by Objects"},"228":{"body":"Fast Path: Transactions involving account-owned objects or immutable shared state are processed quickly without the need for extensive consensus. Consensus Path: Transactions involving shared objects require sequencing and consensus to ensure network integrity. Objects owned by Objects: Child objects inherit the ownership model of the parent object.","breadcrumbs":"Object Model » Fast Path & Consensus » Summary","id":"228","title":"Summary"},"229":{"body":"In the Object Model chapter we briefly explained the evolution of the Move language from an account-based model to an object-based model. In this chapter, we will dive deeper into the object model and explore how to use objects in your Sui applications. If you haven't read the Object Model chapter yet, we recommend you do so before continuing with this chapter.","breadcrumbs":"Using Objects » Using Objects","id":"229","title":"Using Objects"},"23":{"body":"Before we get to testing, we should add a test. Move Compiler supports tests written in Move and provides the execution environment. The tests can be placed in both the source files and in the tests/ folder. Tests are marked with the #[test] attribute and are automatically discovered by the compiler. We explain tests in depth in the Testing section. Replace the contents of the tests/hello_world_tests.move with the following content: #[test_only]\nmodule hello_world::hello_world_tests { use hello_world::hello_world; #[test] fun test_hello_world() { assert!(hello_world::hello_world() == b\"Hello, World!\".to_string(), 0); }\n} Here we import the hello_world module, and call its hello_world function to test that the output is indeed the string \"Hello, World!\". Now, that we have tests in place, let's compile the package in the test mode and run tests. Move CLI has the test command for this: $ sui move test The output should be similar to the following: INCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING hello_world\nRunning Move unit tests\n[ PASS ] 0x0::hello_world_tests::test_hello_world\nTest result: OK. Total tests: 1; passed: 1; failed: 0 If you're running the tests outside of the package folder, you can specify the path to the package: $ sui move test --path hello_world You can also run a single or multiple tests at once by specifying a string. All the tests names containing the string will be run: $ sui move test test_hello","breadcrumbs":"Hello, World! » Running Tests","id":"23","title":"Running Tests"},"230":{"body":"In the Basic Syntax chapter we already covered two out of four abilities - Drop and Copy . They affect the behaviour of the value in a scope and are not directly related to storage. It is time to cover the key ability, which allows the struct to be stored. Historically, the key ability was created to mark the type as a key in the storage . A type with the key ability could be stored at top-level in the storage, and could be directly owned by an account or address. With the introduction of the Object Model , the key ability naturally became the defining ability for the object.","breadcrumbs":"Using Objects » Ability: Key » The Key Ability","id":"230","title":"The Key Ability"},"231":{"body":"A struct with the key ability is considered an object and can be used in the storage functions. The Sui Verifier will require the first field of the struct to be named id and have the type UID. public struct Object has key { id: UID, // required name: String,\n} /// Creates a new Object with a Unique ID\npublic fun new(name: String, ctx: &mut TxContext): Object { Object { id: object::new(ctx), // creates a new UID name, }\n} A struct with the key ability is still a struct, and can have any number of fields and associated functions. There is no special handling or syntax for packing, accessing or unpacking the struct. However, because the first field of an object struct must be of type UID - a non-copyable and non-droppable type (we will get to it very soon!), the struct transitively cannot have drop and copy abilities. Thus, the object is non-discardable by design.","breadcrumbs":"Using Objects » Ability: Key » Object Definition","id":"231","title":"Object Definition"},"232":{"body":"Due to the UID requirement for types with key, none of the native types in Move can have the key ability, nor can any of the Standard Library types. The key ability is only present in the Sui Framework and custom types.","breadcrumbs":"Using Objects » Ability: Key » Types with the key Ability","id":"232","title":"Types with the key Ability"},"233":{"body":"Key ability defines the object in Move, and objects are intended to be stored . In the next section we present the sui::transfer module, which provides native storage functions for objects.","breadcrumbs":"Using Objects » Ability: Key » Next Steps","id":"233","title":"Next Steps"},"234":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Key » Further reading","id":"234","title":"Further reading"},"235":{"body":"The module that defines main storage operations is sui::transfer. It is implicitly imported in all packages that depend on the Sui Framework , so, like other implicitly imported modules (e.g. std::option or std::vector), it does not require adding a use statement.","breadcrumbs":"Using Objects » Storage Functions » Storage Functions","id":"235","title":"Storage Functions"},"236":{"body":"The transfer module provides functions to perform all three storage operations matching ownership types which we explained before: On this page we will only talk about so-called restricted storage operations, later we will cover public ones, after the store ability is introduced. Transfer - send an object to an address, put it into account owned state; Share - put an object into a shared state, so it is available to everyone; Freeze - put an object into immutable state, so it becomes a public constant and can never change. The transfer module is a go-to for most of the storage operations, except a special case with Dynamic Fields awaits us in the next chapter.","breadcrumbs":"Using Objects » Storage Functions » Overview","id":"236","title":"Overview"},"237":{"body":"In the Ownership and Scope and References chapters, we covered the basics of ownership and references in Move. It is important that you understand these concepts when using storage functions. Here is a quick recap of the most important points: The move semantics in Move means that the value is moved from one scope to another. In other words, if an instance of a type is passed to a function by value , it is moved to the function scope and can't be accessed in the caller scope anymore. To maintain the ownership of the value, you can pass it by reference . Either by immutable reference &T or mutable reference &mut T. Then the value is borrowed and can be accessed in the caller scope, however the owner stays the same. /// Moved by value\npublic fun take(value: T) { /* value is moved here! */ abort 0 } /// For immutable reference\npublic fun borrow(value: &T) { /* value is borrowed here! can be read */ abort 0 } /// For mutable reference\npublic fun borrow_mut(value: &mut T) { /* value is mutably borrowed here! */ abort 0 }","breadcrumbs":"Using Objects » Storage Functions » Ownership and References: A Quick Recap","id":"237","title":"Ownership and References: A Quick Recap"},"238":{"body":"The transfer::transfer function is a public function used to transfer an object to another address. Its signature is as follows, only accepts a type with the key ability and an address of the recipient. Please, note that the object is passed into the function by value , therefore it is moved to the function scope and then moved to the recipient address: // File: sui-framework/sources/transfer.move\npublic fun transfer(obj: T, recipient: address); In the next example, you can see how it can be used in a module that defines and sends an object to the transaction sender. module book::transfer_to_sender { /// A struct with `key` is an object. The first field is `id: UID`! public struct AdminCap has key { id: UID } /// `init` function is a special function that is called when the module /// is published. It is a good place to create application objects. fun init(ctx: &mut TxContext) { // Create a new `AdminCap` object, in this scope. let admin_cap = AdminCap { id: object::new(ctx) }; // Transfer the object to the transaction sender. transfer::transfer(admin_cap, ctx.sender()); // admin_cap is gone! Can't be accessed anymore. } /// Transfers the `AdminCap` object to the `recipient`. Thus, the recipient /// becomes the owner of the object, and only they can access it. public fun transfer_admin_cap(cap: AdminCap, recipient: address) { transfer::transfer(cap, recipient); }\n} When the module is published, the init function will get called, and the AdminCap object which we created there will be transferred to the transaction sender. The ctx.sender() function returns the sender address for the current transaction. Once the AdminCap has been transferred to the sender, for example, to 0xa11ce, the sender, and only the sender, will be able to access the object. The object is now account owned . Account owned objects are a subject to true ownership - only the account owner can access them. This is a fundamental concept in the Sui storage model. Let's extend the example with a function that uses AdminCap to authorize a mint of a new object and its transfer to another address: /// Some `Gift` object that the admin can `mint_and_transfer`.\npublic struct Gift has key { id: UID } /// Creates a new `Gift` object and transfers it to the `recipient`.\npublic fun mint_and_transfer( _: &AdminCap, recipient: address, ctx: &mut TxContext\n) { let gift = Gift { id: object::new(ctx) }; transfer::transfer(gift, recipient);\n} The mint_and_transfer function is a public function that \"could\" be called by anyone, but it requires an AdminCap object to be passed as the first argument by reference. Without it, the function will not be callable. This is a simple way to restrict access to privileged functions called Capability . Because the AdminCap object is account owned , only 0xa11ce will be able to call the mint_and_transfer function. The Gifts sent to recipients will also be account owned , each gift being unique and owned exclusively by the recipient. A quick recap: transfer function is used to send an object to an address; The object becomes account owned and can only be accessed by the recipient; Functions can be gated by requiring an object to be passed as an argument, creating a capability .","breadcrumbs":"Using Objects » Storage Functions » Transfer","id":"238","title":"Transfer"},"239":{"body":"The transfer::freeze_object function is public function used to put an object into an immutable state. Once an object is frozen , it can never be changed, and it can be accessed by anyone by immutable reference. The function signature is as follows, only accepts a type with the key ability . Just like all other storage functions, it takes the object by value : // File: sui-framework/sources/transfer.move\npublic fun freeze_object(obj: T); Let's expand on the previous example and add a function that allows the admin to create a Config object and freeze it: /// Some `Config` object that the admin can `create_and_freeze`.\npublic struct Config has key { id: UID, message: String\n} /// Creates a new `Config` object and freezes it.\npublic fun create_and_freeze( _: &AdminCap, message: String, ctx: &mut TxContext\n) { let config = Config { id: object::new(ctx), message }; // Freeze the object so it becomes immutable. transfer::freeze_object(config);\n} /// Returns the message from the `Config` object.\n/// Can access the object by immutable reference!\npublic fun message(c: &Config): String { c.message } Config is an object that has a message field, and the create_and_freeze function creates a new Config and freezes it. Once the object is frozen, it can be accessed by anyone by immutable reference. The message function is a public function that returns the message from the Config object. Config is now publicly available by its ID, and the message can be read by anyone. Function definitions are not connected to the object's state. It is possible to define a function that takes a mutable reference to an object that is used as frozen. However, it won't be callable on a frozen object. The message function can be called on an immutable Config object, however, two functions below are not callable on a frozen object: // === Functions below can't be called on a frozen object! === /// The function can be defined, but it won't be callable on a frozen object.\n/// Only immutable references are allowed.\npublic fun message_mut(c: &mut Config): &mut String { &mut c.message } /// Deletes the `Config` object, takes it by value.\n/// Can't be called on a frozen object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} To summarize: transfer::freeze_object function is used to put an object into an immutable state; Once an object is frozen , it can never be changed, deleted or transferred, and it can be accessed by anyone by immutable reference;","breadcrumbs":"Using Objects » Storage Functions » Freeze","id":"239","title":"Freeze"},"24":{"body":"In this section, we explained the basics of a Move package: its structure, the manifest, the build, and test flows. On the next page , we will write an application and see how the code is structured and what the language can do.","breadcrumbs":"Hello, World! » Next Steps","id":"24","title":"Next Steps"},"240":{"body":"Since the transfer::freeze_object signature accepts any type with the key ability, it can take an object that was created in the same scope, but it can also take an object that was owned by an account. This means that the freeze_object function can be used to freeze an object that was transferred to the sender. For security concerns, we would not want to freeze the AdminCap object - it would be a security risk to allow access to it to anyone. However, we can freeze the Gift object that was minted and transferred to the recipient: Single Owner -> Immutable conversion is possible! /// Freezes the `Gift` object so it becomes immutable.\npublic fun freeze_gift(gift: Gift) { transfer::freeze_object(gift);\n}","breadcrumbs":"Using Objects » Storage Functions » Owned -> Frozen","id":"240","title":"Owned -> Frozen"},"241":{"body":"The transfer::share_object function is a public function used to put an object into a shared state. Once an object is shared , it can be accessed by anyone by a mutable reference (hence, immutable too). The function signature is as follows, only accepts a type with the key ability : // File: sui-framework/sources/transfer.move\npublic fun share_object(obj: T); Once an object is shared , it is publicly available as a mutable reference.","breadcrumbs":"Using Objects » Storage Functions » Share","id":"241","title":"Share"},"242":{"body":"While the shared object can't normally be taken by value, there is one special case where it can - if the function that takes it deletes the object. This is a special case in the Sui storage model, and it is used to allow the deletion of shared objects. To show how it works, we will create a function that creates and shares a Config object and then another one that deletes it: /// Creates a new `Config` object and shares it.\npublic fun create_and_share(message: String, ctx: &mut TxContext) { let config = Config { id: object::new(ctx), message }; // Share the object so it becomes shared. transfer::share_object(config);\n} The create_and_share function creates a new Config object and shares it. The object is now publicly available as a mutable reference. Let's create a function that deletes the shared object: /// Deletes the `Config` object, takes it by value.\n/// Can be called on a shared object!\npublic fun delete_config(c: Config) { let Config { id, message: _ } = c; id.delete()\n} The delete_config function takes the Config object by value and deletes it, and the Sui Verifier would allow this call. However, if the function returned the Config object back or attempted to freeze or transfer it, the Sui Verifier would reject the transaction. // Won't work!\npublic fun transfer_shared(c: Config, to: address) { transfer::transfer(c, to);\n} To summarize: share_object function is used to put an object into a shared state; Once an object is shared , it can be accessed by anyone by a mutable reference; Shared objects can be deleted, but they can't be transferred or frozen.","breadcrumbs":"Using Objects » Storage Functions » Special Case: Shared Object Deletion","id":"242","title":"Special Case: Shared Object Deletion"},"243":{"body":"Now that you know main features of the transfer module, you can start building more complex applications on Sui that involve storage operations. In the next chapter, we will cover the Store Ability which allows storing data inside objects and relaxes transfer restrictions which we barely touched on here. And after that we will cover the UID and ID types which are the most important types in the Sui storage model.","breadcrumbs":"Using Objects » Storage Functions » Next Steps","id":"243","title":"Next Steps"},"244":{"body":"Now that you have an understanding of top-level storage functions which are enabled by the key ability, we can talk about the last ability in the list - store.","breadcrumbs":"Using Objects » Ability: Store » Ability: Store","id":"244","title":"Ability: Store"},"245":{"body":"The store is a special ability that allows a type to be stored in objects. This ability is required for the type to be used as a field in a struct that has the key ability. Another way to put it is that the store ability allows the value to be wrapped in an object. The store ability also relaxes restrictions on transfer operations. We talk about it more in the Restricted and Public Transfer section.","breadcrumbs":"Using Objects » Ability: Store » Definition","id":"245","title":"Definition"},"246":{"body":"In previous sections we already used types with the key ability: all objects must have a UID field, which we used in examples; we also used the Storable type as a part of the Config struct. The Config type also has the store ability. /// This type has the `store` ability.\npublic struct Storable has store {} /// Config contains a `Storable` field which must have the `store` ability.\npublic struct Config has key, store { id: UID, stores: Storable,\n} /// MegaConfig contains a `Config` field which has the `store` ability.\npublic struct MegaConfig has key { id: UID, config: Config, // there it is!\n}","breadcrumbs":"Using Objects » Ability: Store » Example","id":"246","title":"Example"},"247":{"body":"All native types (except for references) in Move have the store ability. This includes: bool unsigned integers vector address All of the types defined in the standard library have the store ability as well. This includes: Option String TypeName","breadcrumbs":"Using Objects » Ability: Store » Types with the store Ability","id":"247","title":"Types with the store Ability"},"248":{"body":"Type Abilities in the Move Reference.","breadcrumbs":"Using Objects » Ability: Store » Further reading","id":"248","title":"Further reading"},"249":{"body":"The UID type is defined in the sui::object module and is a wrapper around an ID which, in turn, wraps the address type. The UIDs on Sui are guaranteed to be unique, and can't be reused after the object was deleted. // File: sui-framework/sources/object.move\n/// UID is a unique identifier of an object\npublic struct UID has store { id: ID\n} /// ID is a wrapper around an address\npublic struct ID has store, drop { bytes: address\n}","breadcrumbs":"Using Objects » UID and ID » UID and ID","id":"249","title":"UID and ID"},"25":{"body":"Package Manifest section Package in The Move Reference","breadcrumbs":"Hello, World! » Further Reading","id":"25","title":"Further Reading"},"250":{"body":"UID is derived from the tx_hash and an index which is incremented for each new UID. The derive_id function is implemented in the sui::tx_context module, and that is why TxContext is required for UID generation. Sui Verifier will not allow using a UID that wasn't created in the same function. That prevents UIDs from being pre-generated and reused after the object was unpacked. New UID is created with the object::new(ctx) function. It takes a mutable reference to TxContext, and returns a new UID. let ctx = &mut tx_context::dummy();\nlet uid = object::new(ctx); On Sui, UID acts as a representation of an object, and allows defining behaviors and features of an object. One of the key-features - Dynamic Fields - is possible because of the UID type being explicit. Additionally, it allows the Transfer To Object (TTO) which we will explain later in this chapter.","breadcrumbs":"Using Objects » UID and ID » Fresh UID generation:","id":"250","title":"Fresh UID generation:"},"251":{"body":"The UID type is created with the object::new(ctx) function, and it is destroyed with the object::delete(uid) function. The object::delete consumes the UID by value , and it is impossible to delete it unless the value was unpacked from an Object. let ctx = &mut tx_context::dummy(); let char = Character { id: object::new(ctx)\n}; let Character { id } = char;\nid.delete();","breadcrumbs":"Using Objects » UID and ID » UID lifecycle","id":"251","title":"UID lifecycle"},"252":{"body":"The UID does not need to be deleted immediately after the object struct is unpacked. Sometimes it may carry Dynamic Fields or objects transferred to it via Transfer To Object . In such cases, the UID may be kept and stored in a separate object.","breadcrumbs":"Using Objects » UID and ID » Keeping the UID","id":"252","title":"Keeping the UID"},"253":{"body":"The ability to return the UID of an object may be utilized in pattern called proof of deletion . It is a rarely used technique, but it may be useful in some cases, for example, the creator or an application may incentivize the deletion of an object by exchanging the deleted IDs for some reward. In framework development this method could be used to ignore / bypass certain restrictions on \"taking\" the object. If there's a container that enforces certain logic on transfers, like Kiosk does, there could be a special scenario of skipping the checks by providing a proof of deletion. This is one of the open topics for exploration and research, and it may be used in various ways.","breadcrumbs":"Using Objects » UID and ID » Proof of Deletion","id":"253","title":"Proof of Deletion"},"254":{"body":"When talking about UID we should also mention the ID type. It is a wrapper around the address type, and is used to represent an address-pointer. Usually, ID is used to point at an object, however, there's no restriction, and no guarantee that the ID points to an existing object. ID can be received as a transaction argument in a Transaction Block . Alternatively, ID can be created from an address value using to_id() function.","breadcrumbs":"Using Objects » UID and ID » ID","id":"254","title":"ID"},"255":{"body":"TxContext provides the fresh_object_address function which can be utilized to create unique addresses and ID - it may be useful in some application that assign unique identifiers to user actions - for example, an order_id in a marketplace.","breadcrumbs":"Using Objects » UID and ID » fresh_object_address","id":"255","title":"fresh_object_address"},"256":{"body":"Storage Operations that we described in the previous sections are restricted by default - they can only be called in the module defining the object. In other terms, the type must be internal to the module to be used in storage operations. This restriction is implemented in the Sui Verifier and is enforced at the bytecode level. However, to allow objects to be transferred and stored in other modules, these restrictions can be relaxed. The sui::transfer module offers a set of public_* functions that allow calling storage operations in other modules. The functions are prefixed with public_ and are available to all modules and transactions.","breadcrumbs":"Using Objects » Restricted and Public Transfer » Restricted and Public Transfer","id":"256","title":"Restricted and Public Transfer"},"257":{"body":"The sui::transfer module provides the following public functions. They are almost identical to the ones we already covered, but can be called from any module. // File: sui-framework/sources/transfer.move\n/// Public version of the `transfer` function.\npublic fun public_transfer(object: T, to: address) {} /// Public version of the `share_object` function.\npublic fun public_share_object(object: T) {} /// Public version of the `freeze_object` function.\npublic fun public_freeze_object(object: T) {} To illustrate the usage of these functions, consider the following example: module A defines an ObjectK with key and ObjectKS with key + store abilities, and module B tries to implement a transfer function for these objects. In this example we use transfer::transfer, but the behaviour is identical for share_object and freeze_object functions. /// Defines `ObjectK` and `ObjectKS` with `key` and `key + store`\n/// abilities respectively\nmodule book::transfer_a { public struct ObjectK has key { id: UID } public struct ObjectKS has key, store { id: UID }\n} /// Imports the `ObjectK` and `ObjectKS` types from `transfer_a` and attempts\n/// to implement different `transfer` functions for them\nmodule book::transfer_b { // types are not internal to this module use book::transfer_a::{ObjectK, ObjectKS}; // Fails! ObjectK is not `store`, and ObjectK is not internal to this module public fun transfer_k(k: ObjectK, to: address) { sui::transfer::transfer(k, to); } // Fails! ObjectKS has `store` but the function is not public public fun transfer_ks(ks: ObjectKS, to: address) { sui::transfer::transfer(ks, to); } // Fails! ObjectK is not `store`, `public_transfer` requires `store` public fun public_transfer_k(k: ObjectK) { sui::transfer::public_transfer(k); } // Works! ObjectKS has `store` and the function is public public fun public_transfer_ks(y: ObjectKS, to: address) { sui::transfer::public_transfer(y, to); }\n} To expand on the example above: transfer_k fails because ObjectK is not internal to module transfer_b transfer_ks fails because ObjectKS is not internal to module transfer_b public_transfer_k fails because ObjectK does not have the store ability public_transfer_ks works because ObjectKS has the store ability and the transfer is public","breadcrumbs":"Using Objects » Restricted and Public Transfer » Public Storage Operations","id":"257","title":"Public Storage Operations"},"258":{"body":"The decision on whether to add the store ability to a type should be made carefully. On one hand, it is de-facto a requirement for the type to be usable by other applications. On the other hand, it allows wrapping and changing the intended storage model. For example, a character may be intended to be owned by accounts, but with the store ability it can be frozen (cannot be shared - this transition is restricted).","breadcrumbs":"Using Objects » Restricted and Public Transfer » Implications of store","id":"258","title":"Implications of store"},"259":{"body":"In previous chapters we've covered the basics of Move and Sui Storage Model . Now it's time to dive deeper into the advanced topics of Sui programmability. This chapter introduces more complex concepts, practices and features of Move and Sui that are essential for building more sophisticated applications. It is intended for developers who are already familiar with the basics of Move and Sui, and are looking to expand their knowledge and skills.","breadcrumbs":"Advanced Programmability » Advanced Programmability","id":"259","title":"Advanced Programmability"},"26":{"body":"In the previous section we created a new package and demonstrated the basic flow of creating, building, and testing a Move package. In this section, we will write a simple application that uses the storage model and can be interacted with. To do this, we will create a simple todo list application.","breadcrumbs":"Hello, Sui! » Hello, Sui!","id":"26","title":"Hello, Sui!"},"260":{"body":"Every transaction has the execution context. The context is a set of predefined variables that are available to the program during execution. For example, every transaction has a sender address, and the transaction context contains a variable that holds the sender address. The transaction context is available to the program through the TxContext struct. The struct is defined in the sui::tx_context module and contains the following fields: // File: sui-framework/sources/tx_context.move\n/// Information about the transaction currently being executed.\n/// This cannot be constructed by a transaction--it is a privileged object created by\n/// the VM and passed in to the entrypoint of the transaction as `&mut TxContext`.\nstruct TxContext has drop { /// The address of the user that signed the current transaction sender: address, /// Hash of the current transaction tx_hash: vector, /// The current epoch number epoch: u64, /// Timestamp that the epoch started at epoch_timestamp_ms: u64, /// Counter recording the number of fresh id's created while executing /// this transaction. Always 0 at the start of a transaction ids_created: u64\n} Transaction context cannot be constructed manually or directly modified. It is created by the system and passed to the function as a reference in a transaction. Any function called in a Transaction has access to the context and can pass it into the nested calls. TxContext has to be the last argument in the function signature.","breadcrumbs":"Advanced Programmability » Transaction Context » Transaction Context","id":"260","title":"Transaction Context"},"261":{"body":"With only exception of the ids_created, all of the fields in the TxContext have getters. The getters are defined in the sui::tx_context module and are available to the program. The getters don't require &mut because they don't modify the context. public fun some_action(ctx: &TxContext) { let me = ctx.sender(); let epoch = ctx.epoch(); let digest = ctx.digest(); // ...\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Reading the Transaction Context","id":"261","title":"Reading the Transaction Context"},"262":{"body":"The TxContext is required to create new objects (or just UIDs) in the system. New UIDs are derived from the transaction digest, and for the digest to be unique, there needs to be a changing parameter. Sui uses the ids_created field for that. Every time a new UID is created, the ids_created field is incremented by one. This way, the digest is always unique. Internally, it is represented as the derive_id function: // File: sui-framework/sources/tx_context.move\nnative fun derive_id(tx_hash: vector, ids_created: u64): address;","breadcrumbs":"Advanced Programmability » Transaction Context » Mutability","id":"262","title":"Mutability"},"263":{"body":"The underlying derive_id function can also be utilized in your program to generate unique addresses. The function itself is not exposed, but a wrapper function fresh_object_address is available in the sui::tx_context module. It may be useful if you need to generate a unique identifier in your program. // File: sui-framework/sources/tx_context.move\n/// Create an `address` that has not been used. As it is an object address, it will never\n/// occur as the address for a user.\n/// In other words, the generated address is a globally unique object ID.\npublic fun fresh_object_address(ctx: &mut TxContext): address { let ids_created = ctx.ids_created; let id = derive_id(*&ctx.tx_hash, ids_created); ctx.ids_created = ids_created + 1; id\n}","breadcrumbs":"Advanced Programmability » Transaction Context » Generating unique addresses","id":"263","title":"Generating unique addresses"},"264":{"body":"A common use case in many applications is to run certain code just once when the package is published. Imagine a simple store module that needs to create the main Store object upon its publication. In Sui, this is achieved by defining an init function within the module. This function will automatically be called when the module is published. All of the modules' init functions are called during the publishing process. Currently, this behavior is limited to the publish command and does not extend to package upgrades . module book::shop { /// The Capability which grants the Shop owner the right to manage /// the shop. public struct ShopOwnerCap has key, store { id: UID } /// The singular Shop itself, created in the `init` function. public struct Shop has key { id: UID, /* ... */ } // Called only once, upon module publication. It must be // private to prevent external invocation. fun init(ctx: &mut TxContext) { // Transfers the ShopOwnerCap to the sender (publisher). transfer::transfer(ShopOwnerCap { id: object::new(ctx) }, ctx.sender()); // Shares the Shop object. transfer::share_object(Shop { id: object::new(ctx) }); }\n} In the same package, another module can have its own init function, encapsulating distinct logic. // In the same package as the `shop` module\nmodule book::bank { public struct Bank has key { id: UID, /* ... */ } fun init(ctx: &mut TxContext) { transfer::share_object(Bank { id: object::new(ctx) }); }\n}","breadcrumbs":"Advanced Programmability » Module Initializer » Module Initializer","id":"264","title":"Module Initializer"},"265":{"body":"The function is called on publish, if it is present in the module and follows the rules: The function has to be named init, be private and have no return values. Takes one or two arguments: One Time Witness (optional) and TxContext . With TxContext always being the last argument. fun init(ctx: &mut TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &mut TxContext) { /* ... */ } TxContext can also be passed as immutable reference: &TxContext. However, practically speaking, it should always be &mut TxContext since the init function can't access the onchain state and to create new objects it requires the mutable reference to the context. fun init(ctx: &TxContext) { /* ... */}\nfun init(otw: OTW, ctx: &TxContext) { /* ... */ }","breadcrumbs":"Advanced Programmability » Module Initializer » init features","id":"265","title":"init features"},"266":{"body":"While init function can be used to create sensitive objects once, it is important to know that the same object (eg. StoreOwnerCap from the first example) can still be created in another function. Especially given that new functions can be added to the module during an upgrade. So the init function is a good place to set up the initial state of the module, but it is not a security measure on its own. There are ways to guarantee that the object was created only once, such as the One Time Witness . And there are ways to limit or disable the upgrade of the module, which we will cover in the Package Upgrades chapter.","breadcrumbs":"Advanced Programmability » Module Initializer » Trust and security","id":"266","title":"Trust and security"},"267":{"body":"As follows from the definition, the init function is guaranteed to be called only once when the module is published. So it is a good place to put the code that initializes module's objects and sets up the environment and configuration. For example, if there's a Capability which is required for certain actions, it should be created in the init function. In the next chapter we will talk about the Capability pattern in more detail.","breadcrumbs":"Advanced Programmability » Module Initializer » Next steps","id":"267","title":"Next steps"},"268":{"body":"In programming, a capability is a token that gives the owner the right to perform a specific action. It is a pattern that is used to control access to resources and operations. A simple example of a capability is a key to a door. If you have the key, you can open the door. If you don't have the key, you can't open the door. A more practical example is an Admin Capability which allows the owner to perform administrative operations, which regular users cannot.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Pattern: Capability","id":"268","title":"Pattern: Capability"},"269":{"body":"In the Sui Object Model , capabilities are represented as objects. An owner of an object can pass this object to a function to prove that they have the right to perform a specific action. Due to strict typing, the function taking a capability as an argument can only be called with the correct capability. There's a convention to name capabilities with the Cap suffix, for example, AdminCap or KioskOwnerCap. module book::capability { use std::string::String; use sui::event; /// The capability granting the application admin the right to create new /// accounts in the system. public struct AdminCap has key, store { id: UID } /// The user account in the system. public struct Account has key, store { id: UID, name: String } /// A simple `Ping` event with no data. public struct Ping has copy, drop { by: ID } /// Creates a new account in the system. Requires the `AdminCap` capability /// to be passed as the first argument. public fun new(_: &AdminCap, name: String, ctx: &mut TxContext): Account { Account { id: object::new(ctx), name, } } /// Account, and any other objects, can also be used as a Capability in the /// application. For example, to emit an event. public fun send_ping(acc: &Account) { event::emit(Ping { by: acc.id.to_inner() }) } /// Updates the account name. Can only be called by the `Account` owner. public fun update(account: &mut Account, name: String) { account.name = name; }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Capability is an Object","id":"269","title":"Capability is an Object"},"27":{"body":"Following the same flow as in Hello, World! , we will create a new package called todo_list. $ sui move new todo_list","breadcrumbs":"Hello, Sui! » Create a New Package","id":"27","title":"Create a New Package"},"270":{"body":"A very common practice is to create a single AdminCap object on package publish. This way, the application can have a setup phase where the admin account prepares the state of the application. module book::admin_cap { /// The capability granting the admin privileges in the system. /// Created only once in the `init` function. public struct AdminCap has key { id: UID } /// Create the AdminCap object on package publish and transfer it to the /// package owner. fun init(ctx: &mut TxContext) { transfer::transfer( AdminCap { id: object::new(ctx) }, ctx.sender() ) }\n}","breadcrumbs":"Advanced Programmability » Pattern: Capability » Using init for Admin Capability","id":"270","title":"Using init for Admin Capability"},"271":{"body":"Utilizing objects as capabilities is a relatively new concept in blockchain programming. And in other smart-contract languages, authorization is often performed by checking the address of the sender. This pattern is still viable on Sui, however, overall recommendation is to use capabilities for better security, discoverability, and code organization. Let's look at how the new function that creates a user would look like if it was using the address check: /// Error code for unauthorized access.\nconst ENotAuthorized: u64 = 0; /// The application admin address.\nconst APPLICATION_ADMIN: address = @0xa11ce; /// Creates a new user in the system. Requires the sender to be the application\n/// admin.\npublic fun new(ctx: &mut TxContext): User { assert!(ctx.sender() == APPLICATION_ADMIN, ENotAuthorized); User { id: object::new(ctx) }\n} And now, let's see how the same function would look like with the capability: /// Grants the owner the right to create new users in the system.\npublic struct AdminCap {} /// Creates a new user in the system. Requires the `AdminCap` capability to be\n/// passed as the first argument.\npublic fun new(_: &AdminCap, ctx: &mut TxContext): User { User { id: object::new(ctx) }\n} Using capabilities has several advantages over the address check: Migration of admin rights is easier with capabilities due to them being objects. In case of address, if the admin address changes, all the functions that check the address need to be updated - hence, require a package upgrade . Function signatures are more descriptive with capabilities. It is clear that the new function requires the AdminCap to be passed as an argument. And this function can't be called without it. Object Capabilities don't require extra checks in the function body, and hence, decrease the chance of a developer mistake. An owned Capability also serves in discovery. The owner of the AdminCap can see the object in their account (via a Wallet or Explorer), and know that they have the admin rights. This is less transparent with the address check. However, the address approach has its own advantages. For example, if an address is multisig, and transaction building gets more complex, it might be easier to check the address. Also, if there's a central object of the application that is used in every function, it can store the admin address, and this would simplify migration. The central object approach is also valuable for revokable capabilities, where the admin can revoke the capability from the user.","breadcrumbs":"Advanced Programmability » Pattern: Capability » Address check vs Capability","id":"271","title":"Address check vs Capability"},"272":{"body":"Sui has two ways of accessing the current time: Epoch and Time. The former represents operational periods in the system and changed roughly every 24 hours. The latter represents the current time in milliseconds since the Unix Epoch. Both can be accessed freely in the program.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch and Time","id":"272","title":"Epoch and Time"},"273":{"body":"Epochs are used to separate the system into operational periods. During an epoch the validator set is fixed, however, at the epoch boundary, the validator set can be changed. Epochs play a crucial role in the consensus algorithm and are used to determine the current validator set. They are also used as measurement in the staking mechanism. Epoch can be read from the transaction context : public fun current_epoch(ctx: &TxContext) { let epoch = ctx.epoch(); // ...\n} It is also possible to get the unix timestamp of the epoch start: public fun current_epoch_start(ctx: &TxContext) { let epoch_start = ctx.epoch_timestamp_ms(); // ...\n} Normally, epochs are used in staking and system operations, however, in custom scenarios they can be used to emulate 24h periods. They are critical if an application relies on the staking logic or needs to know the current validator set.","breadcrumbs":"Advanced Programmability » Epoch and Time » Epoch","id":"273","title":"Epoch"},"274":{"body":"For a more precise time measurement, Sui provides the Clock object. It is a system object that is updated during checkpoints by the system, which stores the current time in milliseconds since the Unix Epoch. The Clock object is defined in the sui::clock module and has a reserved address 0x6. Clock is a shared object, but a transaction attempting to access it mutably will fail. This limitation allows parallel access to the Clock object, which is important for maintaining performance. // File: sui-framework/clock.move\n/// Singleton shared object that exposes time to Move calls. This\n/// object is found at address 0x6, and can only be read (accessed\n/// via an immutable reference) by entry functions.\n///\n/// Entry Functions that attempt to accept `Clock` by mutable\n/// reference or value will fail to verify, and honest validators\n/// will not sign or execute transactions that use `Clock` as an\n/// input parameter, unless it is passed by immutable reference.\nstruct Clock has key { id: UID, /// The clock's timestamp, which is set automatically by a /// system transaction every time consensus commits a /// schedule, or by `sui::clock::increment_for_testing` during /// testing. timestamp_ms: u64,\n} There is only one public function available in the Clock module - timestamp_ms. It returns the current time in milliseconds since the Unix Epoch. use sui::clock::Clock; /// Clock needs to be passed as an immutable reference.\npublic fun current_time(clock: &Clock) { let time = clock.timestamp_ms(); // ...\n}","breadcrumbs":"Advanced Programmability » Epoch and Time » Time","id":"274","title":"Time"},"275":{"body":"Collection types are a fundamental part of any programming language. They are used to store a collection of data, such as a list of items. The vector type has already been covered in the vector section , and in this chapter we will cover the vector-based collection types offered by the Sui Framework .","breadcrumbs":"Advanced Programmability » Collections » Collections","id":"275","title":"Collections"},"276":{"body":"While we have previously covered the vector type in the vector section , it is worth going over it again in a new context. This time we will cover the usage of the vector type in objects and how it can be used in an application. module book::collections_vector { use std::string::String; /// The Book that can be sold by a `BookStore` public struct Book has key, store { id: UID, name: String } /// The BookStore that sells `Book`s public struct BookStore has key, store { id: UID, books: vector }\n}","breadcrumbs":"Advanced Programmability » Collections » Vector","id":"276","title":"Vector"},"277":{"body":"VecSet is a collection type that stores a set of unique items. It is similar to a vector, but it does not allow duplicate items. This makes it useful for storing a collection of unique items, such as a list of unique IDs or addresses. module book::collections_vec_set { use sui::vec_set::{Self, VecSet}; public struct App has drop { /// `VecSet` used in the struct definition subscribers: VecSet
} #[test] fun vec_set_playground() { let set = vec_set::empty(); // create an empty set let mut set = vec_set::singleton(1); // create a set with a single item set.insert(2); // add an item to the set set.insert(3); assert!(set.contains(&1), 0); // check if an item is in the set assert!(set.size() == 3, 1); // get the number of items in the set assert!(!set.is_empty(), 2); // check if the set is empty set.remove(&2); // remove an item from the set }\n} VecSet will fail on attempt to insert a an item that already exists in the set.","breadcrumbs":"Advanced Programmability » Collections » VecSet","id":"277","title":"VecSet"},"278":{"body":"VecMap is a collection type that stores a map of key-value pairs. It is similar to a VecSet, but it allows you to associate a value with each item in the set. This makes it useful for storing a collection of key-value pairs, such as a list of addresses and their balances, or a list of user IDs and their associated data. Keys in a VecMap are unique, and each key can only be associated with a single value. If you try to insert a key-value pair with a key that already exists in the map, the old value will be replaced with the new value. module book::collections { use std::string::String; use sui::vec_map::{Self, VecMap}; public struct Metadata has drop { name: String, /// `VecMap` used in the struct definition attributes: VecMap } #[test] fun vec_map_playground() { let mut map = vec_map::empty(); // create an empty map map.insert(2, b\"two\".to_string()); // add a key-value pair to the map map.insert(3, b\"three\".to_string()); assert!(map.contains(&2), 0); // check if a key is in the map map.remove(&2); // remove a key-value pair from the map }\n}","breadcrumbs":"Advanced Programmability » Collections » VecMap","id":"278","title":"VecMap"},"279":{"body":"Standard collection types are a great way to store typed data with guaranteed safety and consistency. However, they are limited by the type of data they can store - the type system won't allow you to store a wrong type in a collection; and they're limited in size - by the object size limit. They will work for relatively small-sized sets and lists, but for larger collections you may need to use a different approach. Another limitations on collection types is inability to compare them. Because the order of insertion is not guaranteed, an attempt to compare a VecSet to another VecSet may not yield the expected results. This behavior is caught by the linter and will emit a warning: Comparing collections of type 'sui::vec_set::VecSet' may yield unexpected result let mut set1 = vec_set::empty();\nset1.insert(1);\nset1.insert(2); let mut set2 = vec_set::empty();\nset2.insert(2);\nset2.insert(1); assert!(set1 == set2, 0); In the example above, the comparison will fail because the order of insertion is not guaranteed, and the two VecSet instances may have different orders of elements. And the comparison will fail even if the two VecSet instances contain the same elements.","breadcrumbs":"Advanced Programmability » Collections » Limitations","id":"279","title":"Limitations"},"28":{"body":"To speed things up and focus on the application logic, we will provide the code for the todo list application. Replace the contents of the sources/todo_list.move file with the following code: Note: while the contents may seem overwhelming at first, we will break it down in the following sections. Try to focus on what's at hand right now. /// Module: todo_list\nmodule todo_list::todo_list { use std::string::String; /// List of todos. Can be managed by the owner and shared with others. public struct TodoList has key, store { id: UID, items: vector } /// Create a new todo list. public fun new(ctx: &mut TxContext): TodoList { let list = TodoList { id: object::new(ctx), items: vector[] }; (list) } /// Add a new todo item to the list. public fun add(list: &mut TodoList, item: String) { list.items.push_back(item); } /// Remove a todo item from the list by index. public fun remove(list: &mut TodoList, index: u64): String { list.items.remove(index) } /// Delete the list and the capability to manage it. public fun delete(list: TodoList) { let TodoList { id, items: _ } = list; id.delete(); } /// Get the number of items in the list. public fun length(list: &TodoList): u64 { list.items.length() }\n}","breadcrumbs":"Hello, Sui! » Add the code","id":"28","title":"Add the code"},"280":{"body":"Vector is a native type that allows storing a list of items. VecSet is built on top of vector and allows storing sets of unique items. VecMap is used to store key-value pairs in a map-like structure. Vector-based collections are strictly typed and limited by the object size limit and are best suited for small-sized sets and lists.","breadcrumbs":"Advanced Programmability » Collections » Summary","id":"280","title":"Summary"},"281":{"body":"In the next section we will cover Dynamic Fields - an important primitive that allows for Dynamic Collections - a way to store large collections of data in a more flexible, yet more expensive way.","breadcrumbs":"Advanced Programmability » Collections » Next Steps","id":"281","title":"Next Steps"},"282":{"body":"Sui Object model allows objects to be attached to other objects as dynamic fields . The behavior is similar to how a Map works in other programming languages. However, unlike a Map which in Move would be strictly typed (we have covered it in the Collections section), dynamic fields allow attaching objects of any type. A similar approach from the world of frontend development would be a JavaScript Object type which allows storing any type of data dynamically. There's no limit to the number of dynamic fields that can be attached to an object. Thus, dynamic fields can be used to store large amounts of data that don't fit into the object limit size. Dynamic Fields allow for a wide range of applications, from splitting data into smaller parts to avoid object size limit to attaching objects as a part of application logic.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields","id":"282","title":"Dynamic Fields"},"283":{"body":"Dynamic Fields are defined in the sui::dynamic_field module of the Sui Framework . They are attached to object's UID via a name , and can be accessed using that name. There can be only one field with a given name attached to an object. File: sui-framework/sources/dynamic_field.move /// Internal object used for storing the field and value\npublic struct Field has key { /// Determined by the hash of the object ID, the field name /// value and it's type, i.e. hash(parent.id || name || Name) id: UID, /// The value for the name of this field name: Name, /// The value bound to this field value: Value,\n} As the definition shows, dynamic fields are stored in an internal Field object, which has the UID generated in a deterministic way based on the object ID, the field name, and the field type. The Field object contains the field name and the value bound to it. The constraints on the Name and Value type parameters define the abilities that the key and value must have.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Definition","id":"283","title":"Definition"},"284":{"body":"The methods available for dynamic fields are straightforward: a field can be added with add, removed with remove, and read with borrow and borrow_mut. Additionally, the exists_ method can be used to check if a field exists (for stricter checks with type, there is an exists_with_type method). module book::dynamic_collection { // a very common alias for `dynamic_field` is `df` since the // module name is quite long use sui::dynamic_field as df; use std::string::String; /// The object that we will attach dynamic fields to. public struct Character has key { id: UID } // List of different accessories that can be attached to a character. // They must have the `store` ability. public struct Hat has key, store { id: UID, color: u32 } public struct Mustache has key, store { id: UID } #[test] fun test_character_and_accessories() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Attach a hat to the character's UID df::add( &mut character.id, b\"hat_key\", Hat { id: object::new(ctx), color: 0xFF0000 } ); // Similarly, attach a mustache to the character's UID df::add( &mut character.id, b\"mustache_key\", Mustache { id: object::new(ctx) } ); // Check that the hat and mustache are attached to the character // assert!(df::exists_(&character.id, b\"hat_key\"), 0); assert!(df::exists_(&character.id, b\"mustache_key\"), 1); // Modify the color of the hat let hat: &mut Hat = df::borrow_mut(&mut character.id, b\"hat_key\"); hat.color = 0x00FF00; // Remove the hat and mustache from the character let hat: Hat = df::remove(&mut character.id, b\"hat_key\"); let mustache: Mustache = df::remove(&mut character.id, b\"mustache_key\"); // Check that the hat and mustache are no longer attached to the character assert!(!df::exists_(&character.id, b\"hat_key\"), 0); assert!(!df::exists_(&character.id, b\"mustache_key\"), 1); sui::test_utils::destroy(character); sui::test_utils::destroy(mustache); sui::test_utils::destroy(hat); }\n} In the example above, we define a Character object and two different types of accessories that could never be put together in a vector. However, dynamic fields allow us to store them together in a single object. Both objects are attached to the Character via a vector (bytestring literal), and can be accessed using their respective keys. As you can see, when we attached the accessories to the Character, we passed them by value . In other words, both values were moved to a new scope, and their ownership was transferred to the Character object. If we changed the ownership of Character object, the accessories would have been moved with it. And the last important property of dynamic fields we should highlight is that they are accessed through their parent . This means that the Hat and Mustache objects are not directly accessible and follow the same rules as the parent object.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Usage","id":"284","title":"Usage"},"285":{"body":"Dynamic fields allow objects to carry data of any type, including those defined in other modules. This is possible due to their generic nature and relatively weak constraints on the type parameters. Let's illustrate this by attaching a few different values to a Character object. let mut character = Character { id: object::new(ctx) }; // Attach a `String` via a `vector` name\ndf::add(&mut character.id, b\"string_key\", b\"Hello, World!\".to_string()); // Attach a `u64` via a `u32` name\ndf::add(&mut character.id, 1000u32, 1_000_000_000u64); // Attach a `bool` via a `bool` name\ndf::add(&mut character.id, true, false); In this example we showed how different types can be used for both name and the value of a dynamic field. The String is attached via a vector name, the u64 is attached via a u32 name, and the bool is attached via a bool name. Anything is possible with dynamic fields!","breadcrumbs":"Advanced Programmability » Dynamic Fields » Foreign Types as Dynamic Fields","id":"285","title":"Foreign Types as Dynamic Fields"},"286":{"body":"To prevent orphaned dynamic fields, please, use Dynamic Collection Types such as Bag as they track the dynamic fields and won't allow unpacking if there are attached fields. The object::delete() function, which is used to delete a UID, does not track the dynamic fields, and cannot prevent dynamic fields from becoming orphaned. Once the parent UID is deleted, the dynamic fields are not automatically deleted, and they become orphaned. This means that the dynamic fields are still stored in the blockchain, but they will never become accessible again. let hat = Hat { id: object::new(ctx), color: 0xFF0000 };\nlet mut character = Character { id: object::new(ctx) }; // Attach a `Hat` via a `vector` name\ndf::add(&mut character.id, b\"hat_key\", hat); // ! DO NOT do this in your code\n// ! Danger - deleting the parent object\nlet Character { id } = character;\nid.delete(); // ...`Hat` is now stuck in a limbo, it will never be accessible again Orphaned objects are not a subject to storage rebate, and the storage fees will remain unclaimed. One way to avoid orphaned dynamic fields during unpacking of an object is to return the UID and store it somewhere temporarily until the dynamic fields are removed and handled properly.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Orphaned Dynamic Fields","id":"286","title":"Orphaned Dynamic Fields"},"287":{"body":"In the examples above, we used primitive types as field names since they have the required set of abilities. But dynamic fields get even more interesting when we use custom types as field names. This allows for a more structured way of storing data, and also allows for protecting the field names from being accessed by other modules. /// A custom type with fields in it.\npublic struct AccessoryKey has copy, drop, store { name: String } /// An empty key, can be attached only once.\npublic struct MetadataKey has copy, drop, store {} Two field names that we defined above are AccessoryKey and MetadataKey. The AccessoryKey has a String field in it, hence it can be used multiple times with different name values. The MetadataKey is an empty key, and can be attached only once. let mut character = Character { id: object::new(ctx) }; // Attaching via an `AccessoryKey { name: b\"hat\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"hat\".to_string() }, Hat { id: object::new(ctx), color: 0xFF0000 }\n);\n// Attaching via an `AccessoryKey { name: b\"mustache\" }`\ndf::add( &mut character.id, AccessoryKey { name: b\"mustache\".to_string() }, Mustache { id: object::new(ctx) }\n); // Attaching via a `MetadataKey`\ndf::add(&mut character.id, MetadataKey {}, 42); As you can see, custom types do work as field names but as long as they can be constructed by the module, in other words - if they are internal to the module and defined in it. This limitation on struct packing can open up new ways in the design of the application. This approach is used in the Object Capability pattern, where an application can authorize a foreign object to perform operations in it while not exposing the capabilities to other modules.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Custom Type as a Field Name","id":"287","title":"Custom Type as a Field Name"},"288":{"body":"Mutable access to UID is a security risk. Exposing UID of your type as a mutable reference can lead to unwanted modifications or removal of the object's dynamic fields. Additionally, it affects the Transfer to Object and Dynamic Object Fields . Make sure to understand the implications before exposing the UID as a mutable reference. Because dynamic fields are attached to UIDs, their usage in other modules depends on whether the UID can be accessed. By default struct visibility protects the id field and won't let other modules access it directly. However, if there's a public accessor method that returns a reference to UID, dynamic fields can be read in other modules. /// Exposes the UID of the character, so that other modules can read\n/// dynamic fields.\npublic fun uid(c: &Character): &UID { &c.id\n} In the example above, we show how to expose the UID of a Character object. This solution may work for some applications, however, it is important to remember that exposed UID allows reading any dynamic field attached to the object. If you need to expose the UID only within the package, use a restrictive visibility, like public(package), or even better - use more specific accessor methods that would allow only reading specific fields. /// Only allow modules in the same package to access the UID.\npublic(package) fun uid_package(c: &Character): &UID { &c.id\n} /// Allow borrowing dynamic fields from the character.\npublic fun borrow( c: &Character, n: Name\n): &Value { df::borrow(&c.id, n)\n}","breadcrumbs":"Advanced Programmability » Dynamic Fields » Exposing UID","id":"288","title":"Exposing UID"},"289":{"body":"Dynamic Fields are more expensive than regular fields, as they require additional storage and costs for accessing them. Their flexibility comes at a price, and it is important to understand the implications when making a decision between using dynamic fields and regular fields.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Dynamic Fields vs Fields","id":"289","title":"Dynamic Fields vs Fields"},"29":{"body":"To make sure that we did everything correctly, let's build the package by running the sui move build command. If everything is correct, you should see the output similar to the following: $ sui move build\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list If there are no errors following this output, you have successfully built the package. If there are errors, make sure that: The code is copied correctly The file name and the package name is correct There are not many other reasons for the code to fail at this stage. But if you are still having issues, try looking up the structure of the package in this location .","breadcrumbs":"Hello, Sui! » Build the package","id":"29","title":"Build the package"},"290":{"body":"Dynamic Fields are not subject to the object size limit , and can be used to store large amounts of data. However, they are still subject to the dynamic fields created limit , which is set to 1000 fields per transaction.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Limits","id":"290","title":"Limits"},"291":{"body":"Dynamic Fields can play a crucial role in applications of any complexity. They open up a variety of different use cases, from storing heterogeneous data to attaching objects as part of the application logic. They allow for certain upgradeability practices based on the ability to define them later and change the type of the field.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Applications","id":"291","title":"Applications"},"292":{"body":"In the next section we will cover Dynamic Object Fields and explain how they differ from dynamic fields, and what are the implications of using them.","breadcrumbs":"Advanced Programmability » Dynamic Fields » Next Steps","id":"292","title":"Next Steps"},"293":{"body":"This section expands on the Dynamic Fields . Please, read it first to understand the basics of dynamic fields. Another variation of dynamic fields is dynamic object fields , which have certain differences from regular dynamic fields. In this section, we will cover the specifics of dynamic object fields and explain how they differ from regular dynamic fields. General recommendation is to avoid using dynamic object fields in favor of (just) dynamic fields, especially if there's no need for direct discovery through the ID. The extra costs of dynamic object fields may not be justified by the benefits they provide.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Dynamic Object Fields","id":"293","title":"Dynamic Object Fields"},"294":{"body":"Dynamic Object Fields are defined in the sui::dynamic_object_fields module in the Sui Framework . They are similar to dynamic fields in many ways, but unlike them, dynamic object fields have an extra constraint on the Value type. The Value must have a combination of key and store, not just store as in the case of dynamic fields. They're less explicit in their framework definition, as the concept itself is more abstract: File: sui-framework/sources/dynamic_object_fields.move /// Internal object used for storing the field and the name associated with the\n/// value. The separate type is necessary to prevent key collision with direct\n/// usage of dynamic_field\npublic struct Wrapper has copy, drop, store { name: Name,\n} Unlike Field type in the Dynamic Fields section, the Wrapper type only stores the name of the field. The value is the object itself, and is not wrapped . The constraints on the Value type become visible in the methods available for dynamic object fields. Here's the signature for the add function: /// Adds a dynamic object field to the object `object: &mut UID` at field\n/// specified by `name: Name`. Aborts with `EFieldAlreadyExists` if the object\n/// already has that field with that name.\npublic fun add( // we use &mut UID in several spots for access control object: &mut UID, name: Name, value: Value,\n) { /* implementation omitted */ } The rest of the methods which are identical to the ones in the Dynamic Fields section have the same constraints on the Value type. Let's list them for reference: add - adds a dynamic object field to the object remove - removes a dynamic object field from the object borrow - borrows a dynamic object field from the object borrow_mut - borrows a mutable reference to a dynamic object field from the object exists_ - checks if a dynamic object field exists exists_with_type - checks if a dynamic object field exists with a specific type Additionally, there is an id method which returns the ID of the Value object without specifying its type.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Definition","id":"294","title":"Definition"},"295":{"body":"The main difference between dynamic fields and dynamic object fields is that the latter allows storing only objects as values. This means that you can't store primitive types like u64 or bool. It may be considered a limitation, if not for the fact that dynamic object fields are not wrapped into a separate object. The relaxed requirement for wrapping keeps the object available for off-chain discovery via its ID. However, this property may not be outstanding if wrapped object indexing is implemented, making the dynamic object fields a redundant feature. module book::dynamic_object_field { use std::string::String; // there are two common aliases for the long module name: `dof` and // `ofield`. Both are commonly used and met in different projects. use sui::dynamic_object_field as dof; use sui::dynamic_field as df; /// The `Character` that we will use for the example public struct Character has key { id: UID } /// Metadata that doesn't have the `key` ability public struct Metadata has store, drop { name: String } /// Accessory that has the `key` and `store` abilities. public struct Accessory has key, store { id: UID } #[test] fun equip_accessory() { let ctx = &mut tx_context::dummy(); let mut character = Character { id: object::new(ctx) }; // Create an accessory and attach it to the character let hat = Accessory { id: object::new(ctx) }; // Add the hat to the character. Just like with `dynamic_fields` dof::add(&mut character.id, b\"hat_key\", hat); // However for non-key structs we can only use `dynamic_field` df::add(&mut character.id, b\"metadata_key\", Metadata { name: b\"John\".to_string() }); // Borrow the hat from the character let hat_id = dof::id(&character.id, b\"hat_key\").extract(); // Option let hat_ref: &Accessory = dof::borrow(&character.id, b\"hat_key\"); let hat_mut: &mut Accessory = dof::borrow_mut(&mut character.id, b\"hat_key\"); let hat: Accessory = dof::remove(&mut character.id, b\"hat_key\"); // Clean up, Metadata is an orphan now. sui::test_utils::destroy(hat); sui::test_utils::destroy(character); }\n}","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Usage & Differences with Dynamic Fields","id":"295","title":"Usage & Differences with Dynamic Fields"},"296":{"body":"Dynamic Object Fields come a little more exensive than dynamic fields. Because of their internal structure, they require 2 objects: the Wrapper for Name and the Value. Because of this, the cost of adding and accessing object fields (loading 2 objects compared to 1 for dynamic fields) is higher.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Pricing Differences","id":"296","title":"Pricing Differences"},"297":{"body":"Both dynamic field and dynamic object fields are powerful features which allow for innovative solutions in applications. However, they are relatively low-level and require careful handling to avoid orphaned fields. In the next section, we will introduce a higher-level abstraction - Dynamic Collections - which can help with managing dynamic fields and objects more effectively.","breadcrumbs":"Advanced Programmability » Dynamic Object Fields » Next Steps","id":"297","title":"Next Steps"},"298":{"body":"Sui Framework offers a variety of collection types that build on the dynamic fields and dynamic object fields concepts. These collections are designed to be a safer and more understandable way to store and manage dynamic fields and objects. For each collection type we will specify the primitive they use, and the specific features they offer. Unlike dynamic (object) fields which operate on UID, collection types have their own type and allow calling associated functions .","breadcrumbs":"Advanced Programmability » Dynamic Collections » Dynamic Collections","id":"298","title":"Dynamic Collections"},"299":{"body":"All of the collection types share the same set of methods, which are: add - adds a field to the collection remove - removes a field from the collection borrow - borrows a field from the collection borrow_mut - borrows a mutable reference to a field from the collection contains - checks if a field exists in the collection length - returns the number of fields in the collection is_empty - checks if the length is 0 All collection types support index syntax for borrow and borrow_mut methods. If you see square brackets in the examples, they are translated into borrow and borrow_mut calls. let hat: &Hat = &bag[b\"key\"];\nlet hat_mut: &mut Hat = &mut bag[b\"key\"]; // is equivalent to\nlet hat: &Hat = bag.borrow(b\"key\");\nlet hat_mut: &mut Hat = bag.borrow_mut(b\"key\"); In the examples we won't focus on these functions, but rather on the differences between the collection types.","breadcrumbs":"Advanced Programmability » Dynamic Collections » Common Concepts","id":"299","title":"Common Concepts"},"3":{"body":"Move is a compiled language, so you need to install a compiler to be able to write and run Move programs. The compiler is included into the Sui binary, which can be installed or downloaded using one of the methods below.","breadcrumbs":"Before we begin » Install Sui » Install Sui","id":"3","title":"Install Sui"},"30":{"body":"To publish and interact with the package, we need to set up an account. For the sake of simplicity and demonstration purposes, we will use sui devnet environment. If you already have an account set up, you can skip this step. If you are doing it for the first time, you will need to create a new account. To do this, run the sui client command, then the CLI will prompt you with multiple questions. The answers are marked below with >: $ sui client\nConfig file [\"/path/to/home/.sui/sui_config/client.yaml\"] doesn't exist, do you want to connect to a Sui Full node server [y/N]?\n> y\nSui Full node server URL (Defaults to Sui Testnet if not specified) :\n>\nSelect key scheme to generate keypair (0 for ed25519, 1 for secp256k1, 2: for secp256r1):\n> 0 After you have answered the questions, the CLI will generate a new keypair and save it to the configuration file. You can now use this account to interact with the network. To check that we have the account set up correctly, run the sui client active-address command: $ sui client active-address\n0x.... The command will output the address of your account, it starts with 0x followed by 64 characters.","breadcrumbs":"Hello, Sui! » Set up an account","id":"30","title":"Set up an account"},"300":{"body":"Bag, as the name suggests, acts as a \"bag\" of heterogeneous values. It is a simple, non-generic type that can store any data. Bag will never allow orphaned fields, as it tracks the number of fields and can't be destroyed if it's not empty. // File: sui-framework/sources/bag.move\npublic struct Bag has key, store { /// the ID of this bag id: UID, /// the number of key-value pairs in the bag size: u64,\n} Due to Bag storing any types, the extra methods it offers is: contains_with_type - checks if a field exists with a specific type Used as a struct field: /// Imported from the `sui::bag` module.\nuse sui::bag::{Self, Bag}; /// An example of a `Bag` as a struct field.\npublic struct Carrier has key { id: UID, bag: Bag\n} Using the Bag: let mut bag = bag::new(ctx); // bag has the `length` function to get the number of elements\nassert!(bag.length() == 0, 0); bag.add(b\"my_key\", b\"my_value\".to_string()); // length has changed to 1\nassert!(bag.length() == 1, 1); // in order: `borrow`, `borrow_mut` and `remove`\n// the value type must be specified\nlet field_ref: &String = &bag[b\"my_key\"];\nlet field_mut: &mut String = &mut bag[b\"my_key\"];\nlet field: String = bag.remove(b\"my_key\"); // length is back to 0 - we can unpack\nbag.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Bag","id":"300","title":"Bag"},"301":{"body":"Defined in the sui::object_bag module. Identical to Bag , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectBag","id":"301","title":"ObjectBag"},"302":{"body":"Table is a typed dynamic collection that has a fixed type for keys and values. It is defined in the sui::table module. // File: sui-framework/sources/table.move\npublic struct Table has key, store { /// the ID of this table id: UID, /// the number of key-value pairs in the table size: u64,\n} Used as a struct field: /// Imported from the `sui::table` module.\nuse sui::table::{Self, Table}; /// Some record type with `store`\npublic struct Record has store { /* ... */ } /// An example of a `Table` as a struct field.\npublic struct UserRegistry has key { id: UID, table: Table\n} Using the Table: #[test] fun test_table() {\nlet ctx = &mut tx_context::dummy(); // Table requires explicit type parameters for the key and value\n// ...but does it only once in initialization.\nlet mut table = table::new(ctx); // table has the `length` function to get the number of elements\nassert!(table.length() == 0, 0); table.add(@0xa11ce, b\"my_value\".to_string());\ntable.add(@0xb0b, b\"another_value\".to_string()); // length has changed to 2\nassert!(table.length() == 2, 2); // in order: `borrow`, `borrow_mut` and `remove`\nlet addr_ref = &table[@0xa11ce];\nlet addr_mut = &mut table[@0xa11ce]; // removing both values\nlet _addr = table.remove(@0xa11ce);\nlet _addr = table.remove(@0xb0b); // length is back to 0 - we can unpack\ntable.destroy_empty();","breadcrumbs":"Advanced Programmability » Dynamic Collections » Table","id":"302","title":"Table"},"303":{"body":"Defined in the sui::object_table module. Identical to Table , but uses dynamic object fields internally. Can only store objects as values.","breadcrumbs":"Advanced Programmability » Dynamic Collections » ObjectTable","id":"303","title":"ObjectTable"},"304":{"body":"Bag - a simple collection that can store any type of data ObjectBag - a collection that can store only objects Table - a typed dynamic collection that has a fixed type for keys and values ObjectTable - same as Table, but can only store objects","breadcrumbs":"Advanced Programmability » Dynamic Collections » Summary","id":"304","title":"Summary"},"305":{"body":"This section is coming soon!","breadcrumbs":"Advanced Programmability » Dynamic Collections » LinkedTable","id":"305","title":"LinkedTable"},"306":{"body":"Witness is a pattern of proving an existence by constructing a proof. In the context of programming, witness is a way to prove a certain property of a system by providing a value that can only be constructed if the property holds.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Pattern: Witness","id":"306","title":"Pattern: Witness"},"307":{"body":"In the Struct section we have shown that a struct can only be created - or packed - by the module defining it. Hence, in Move, a module proves ownership of the type by constructing it. This is one of the most important patterns in Move, and it is widely used for generic type instantiation and authorization. Practically speaking, for the witness to be used, there has to be a function that expects a witness as an argument. In the example below it is the new function that expects a witness of the T type to create a Instance instance. It is often the case that the witness struct is not stored, and for that the function may require the Drop ability for the type. module book::witness { /// A struct that requires a witness to be created. public struct Instance { t: T } /// Create a new instance of `Instance` with the provided T. public fun new(witness: T): Instance { Instance { t: witness } }\n} The only way to construct an Instance is to call the new function with an instance of the type T. This is a basic example of the witness pattern in Move. A module providing a witness often has a matching implementation, like the module book::witness_source below: module book::witness_source { use book::witness::{Self, Instance}; /// A struct used as a witness. public struct W {} /// Create a new instance of `Instance`. public fun new_instance(): Instance { witness::new(W {}) }\n} The instance of the struct W is passed into the new_instance function to create an Instance, thereby proving that the module book::witness_source owns the type W.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Witness in Move","id":"307","title":"Witness in Move"},"308":{"body":"Witness allows generic types to be instantiated with a concrete type. This is useful for inheriting associated behaviors from the type with an option to extend them, if the module provides the ability to do so. // File: sui-framework/sources/balance.move\n/// A Supply of T. Used for minting and burning.\npublic struct Supply has key, store { id: UID, value: u64\n} /// Create a new supply for type T with the provided witness.\npublic fun create_supply(_w: T): Supply { Supply { value: 0 }\n} /// Get the `Supply` value.\npublic fun supply_value(supply: &Supply): u64 { supply.value\n} In the example above, which is borrowed from the balance module of the Sui Framework , the Supply a generic struct that can be constructed only by supplying a witness of the type T. The witness is taken by value and discarded - hence the T must have the drop ability. The instantiated Supply can then be used to mint new Balance's, where T is the type of the supply. // File: sui-framework/sources/balance.move\n/// Storable balance.\nstruct Balance has store { value: u64\n} /// Increase supply by `value` and create a new `Balance` with this value.\npublic fun increase_supply(self: &mut Supply, value: u64): Balance { assert!(value < (18446744073709551615u64 - self.value), EOverflow); self.value = self.value + value; Balance { value }\n}","breadcrumbs":"Advanced Programmability » Pattern: Witness » Instantiating a Generic Type","id":"308","title":"Instantiating a Generic Type"},"309":{"body":"While a struct can be created any number of times, there are cases where a struct should be guaranteed to be created only once. For this purpose, Sui provides the \"One-Time Witness\" - a special witness that can only be used once. We explain it in more detail in the next section .","breadcrumbs":"Advanced Programmability » Pattern: Witness » One Time Witness","id":"309","title":"One Time Witness"},"31":{"body":"In devnet and testnet environments, the CLI provides a way to request coins to your account, so you can interact with the network. To request coins, run the sui client faucet command: $ sui client faucet\nRequest successful. It can take up to 1 minute to get the coin. Run sui client gas to check your gas coins. After waiting a little bit, you can check that the Coin object was sent to your account by running the sui client balance command: $ sui client balance\n╭────────────────────────────────────────╮\n│ Balance of coins owned by this address │\n├────────────────────────────────────────┤\n│ ╭──────────────────────────────────╮ │\n│ │ coin balance (raw) balance │ │\n│ ├──────────────────────────────────┤ │\n│ │ Sui 1000000000 1.00 SUI │ │\n│ ╰──────────────────────────────────╯ │\n╰────────────────────────────────────────╯ Alternatively, you can query objects owned by your account, by running the sui client objects command. The actual output will be different, because the object ID is unique, and so is digest, but the structure will be similar: $ sui client objects\n╭───────────────────────────────────────────────────────────────────────────────────────╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │ │\n│ │ version │ 4 │ │\n│ │ digest │ nA68oa8gab/CdIRw+240wze8u0P+sRe4vcisbENcR4U= │ │\n│ │ objectType │ 0x0000..0002::coin::Coin │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n╰───────────────────────────────────────────────────────────────────────────────────────╯ Now that we have the account set up and the coins in the account, we can interact with the network. We will start by publishing the package to the network.","breadcrumbs":"Hello, Sui! » Requesting Coins","id":"31","title":"Requesting Coins"},"310":{"body":"Witness is a pattern of proving a certain property by constructing a proof. In Move, a module proves ownership of a type by constructing it. Witness is often used for generic type instantiation and authorization.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Summary","id":"310","title":"Summary"},"311":{"body":"In the next section, we will learn about the One Time Witness pattern.","breadcrumbs":"Advanced Programmability » Pattern: Witness » Next Steps","id":"311","title":"Next Steps"},"312":{"body":"While regular Witness is a great way to statically prove the ownership of a type, there are cases where we need to ensure that a Witness is instantiated only once. And this is the purpose of the One Time Witness (OTW).","breadcrumbs":"Advanced Programmability » One Time Witness » One Time Witness","id":"312","title":"One Time Witness"},"313":{"body":"The OTW is a special type of Witness that can be used only once. It cannot be manually created and it is guaranteed to be unique per module. Sui Adapter treats a type as an OTW if it follows these rules: Has only drop ability. Has no fields. Is not a generic type. Named after the module with all uppercase letters. Here is an example of an OTW: module book::one_time { /// The OTW for the `book::one_time` module. /// Only `drop`, no fields, no generics, all uppercase. public struct ONE_TIME has drop {} /// Receive the instance of `ONE_TIME` as the first argument. fun init(otw: ONE_TIME, ctx: &mut TxContext) { // do something with the OTW }\n} The OTW cannot be constructed manually, and any code attempting to do so will result in a compilation error. The OTW can be received as the first argument in the module initializer . And because the init function is called only once per module, the OTW is guaranteed to be instantiated only once.","breadcrumbs":"Advanced Programmability » One Time Witness » Definition","id":"313","title":"Definition"},"314":{"body":"To check if a type is an OTW, sui::types module of the Sui Framework offers a special function is_one_time_witness that can be used to check if the type is an OTW. use sui::types; const ENotOneTimeWitness: u64 = 1; /// Takes an OTW as an argument, aborts if the type is not OTW.\npublic fun takes_witness(otw: T) { assert!(types::is_one_time_witness(&otw), ENotOneTimeWitness);\n}","breadcrumbs":"Advanced Programmability » One Time Witness » Enforcing the OTW","id":"314","title":"Enforcing the OTW"},"315":{"body":"The OTW pattern is a great way to ensure that a type is used only once. Most of the developers should understand how to define and receive the OTW, while the OTW checks and enforcement is mostly needed in libraries and frameworks. For example, the sui::coin module requires an OTW in the coin::create_currency method, therefore enforcing that the coin::TreasuryCap is created only once. OTW is a powerful tool that lays the foundation for the Publisher object, which we will cover in the next section.","breadcrumbs":"Advanced Programmability » One Time Witness » Summary","id":"315","title":"Summary"},"316":{"body":"In application design and development, it is often needed to prove publisher authority. This is especially important in the context of digital assets, where the publisher may enable or disable certain features for their assets. The Publisher Object is an object, defined in the Sui Framework , that allows the publisher to prove their authority over a type .","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher Authority","id":"316","title":"Publisher Authority"},"317":{"body":"The Publisher object is defined in the sui::package module of the Sui Framework. It is a very simple, non-generic object that can be initialized once per module (and multiple times per package) and is used to prove the authority of the publisher over a type. To claim a Publisher object, the publisher must present a One Time Witness to the package::claim function. // File: sui-framework/sources/package.move\npublic struct Publisher has key, store { id: UID, package: String, module_name: String,\n} If you're not familiar with the One Time Witness, you can read more about it here . Here's a simple example of claiming a Publisher object in a module: module book::publisher { /// Some type defined in the module. public struct Book {} /// The OTW for the module. public struct PUBLISHER has drop {} /// Uses the One Time Witness to claim the Publisher object. fun init(otw: PUBLISHER, ctx: &mut TxContext) { // Claim the Publisher object. let publisher = sui::package::claim(otw, ctx); // Usually it is transferred to the sender. // It can also be stored in another object. transfer::public_transfer(publisher, ctx.sender()) }\n}","breadcrumbs":"Advanced Programmability » Publisher Authority » Definition","id":"317","title":"Definition"},"318":{"body":"The Publisher object has two functions associated with it which are used to prove the publisher's authority over a type: // Checks if the type is from the same module, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_module(), 0); // Checks if the type is from the same package, hence the `Publisher` has the\n// authority over it.\nassert!(publisher.from_package(), 0);","breadcrumbs":"Advanced Programmability » Publisher Authority » Usage","id":"318","title":"Usage"},"319":{"body":"For small applications or simple use cases, the Publisher object can be used as an admin capability . While in the broader context, the Publisher object has control over system configurations, it can also be used to manage the application's state. /// Some action in the application gated by the Publisher object.\npublic fun admin_action(cap: &Publisher, /* app objects... */ param: u64) { assert!(cap.from_module(), ENotAuthorized); // perform application-specific action\n} However, Publisher misses some native properties of Capabilities , such as type safety and expressiveness. The signature for the admin_action is not very explicit, can be called by anyone else. And due to Publisher object being standard, there now is a risk of unauthorized access if the from_module check is not performed. So it's important to be cautious when using the Publisher object as an admin role.","breadcrumbs":"Advanced Programmability » Publisher Authority » Publisher as Admin Role","id":"319","title":"Publisher as Admin Role"},"32":{"body":"To publish the package to the network, we will use the sui client publish command. The command will automatically build the package and use its bytecode to publish in a single transaction. We are using the --gas-budget argument during publishing. It specifies how much gas we are willing to spend on the transaction. We won't touch on this topic in this section, but it's important to know that every transaction in Sui costs gas, and the gas is paid in SUI coins. The gas-budget is specified in MISTs . 1 SUI equals 10^9 MISTs. For the sake of demonstration, we will use 100,000,000 MISTs, which is 0.1 SUI. # run this from the `todo_list` folder\n$ sui client publish --gas-budget 100000000 # alternatively, you can specify path to the package\n$ sui client publish --gas-budget 100000000 todo_list The output of the publish command is rather lengthy, so we will show and explain it in parts. $ sui client publish --gas-budget 100000000\nUPDATING GIT DEPENDENCY https://github.com/MystenLabs/sui.git\nINCLUDING DEPENDENCY Sui\nINCLUDING DEPENDENCY MoveStdlib\nBUILDING todo_list\nSuccessfully verified dependencies on-chain against source.\nTransaction Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW As you can see, when we run the publish command, the CLI first builds the package, then verifies the dependencies on-chain, and finally publishes the package. The output of the command is the transaction digest, which is a unique identifier of the transaction and can be used to query the transaction status.","breadcrumbs":"Hello, Sui! » Publish","id":"32","title":"Publish"},"320":{"body":"Publisher is required for certain features on Sui. Object Display can be created only by the Publisher, and TransferPolicy - an important component of the Kiosk system - also requires the Publisher object to prove ownership of the type.","breadcrumbs":"Advanced Programmability » Publisher Authority » Role on Sui","id":"320","title":"Role on Sui"},"321":{"body":"In the next chapter we will cover the first feature that requires the Publisher object - Object Display - a way to describe objects for clients, and standardize metadata. A must-have for user-friendly applications.","breadcrumbs":"Advanced Programmability » Publisher Authority » Next Steps","id":"321","title":"Next Steps"},"322":{"body":"Objects on Sui are explicit in their structure and behavior and can be displayed in an understandable way. However, to support richer metadata for clients, there's a standard and efficient way of \"describing\" them to the client - the Display object defined in the Sui Framework .","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"322","title":"Object Display"},"323":{"body":"Historically, there were different attempts to agree on a standard structure of an object so it can be displayed in a user interface. One of the approaches was to define certain fields in the object struct which, when present, would be used in the UI. This approach was not flexible enough and required developers to define the same fields in every object, and sometimes the fields did not make sense for the object. /// An attempt to standardize the object structure for display.\npublic struct CounterWithDisplay has key { id: UID, /// If this field is present it will be displayed in the UI as `name`. name: String, /// If this field is present it will be displayed in the UI as `description`. description: String, // ... image: String, /// Actual fields of the object. counter: u64, // ...\n} If any of the fields contained static data, it would be duplicated in every object. And, since Move does not have interfaces, it is not possible to know if an object has a specific field without \"manually\" checking the object's type, which makes the client fetching more complex.","breadcrumbs":"Advanced Programmability » Display » Background","id":"323","title":"Background"},"324":{"body":"To address these issues, Sui introduces a standard way of describing an object for display. Instead of defining fields in the object struct, the display metadata is stored in a separate object, which is associated with the type. This way, the display metadata is not duplicated, and it is easy to extend and maintain. Another important feature of Sui Display is the ability to define templates and use object fields in those templates. Not only it allows for a more flexible display, but it also frees the developer from the need to define the same fields with the same names and types in every object. The Object Display is natively supported by the Sui Fullnode, and the client can fetch the display metadata for any object if the object type has a Display associated with it. module book::arena { use std::string::String; use sui::package; use sui::display; /// The One Time Witness to claim the `Publisher` object. public struct ARENA has drop {} /// Some object which will be displayed. public struct Hero has key { id: UID, class: String, level: u64, } /// In the module initializer we create the `Publisher` object, and then /// the Display for the `Hero` type. fun init(otw: ARENA, ctx: &mut TxContext) { let publisher = package::claim(otw, ctx); let mut display = display::new(&publisher, ctx); display.add( b\"name\".to_string(), b\"{class} (lvl. {level})\".to_string() ); display.add( b\"description\".to_string(), b\"One of the greatest heroes of all time. Join us!\".to_string() ); display.add( b\"link\".to_string(), b\"https://example.com/hero/{id}\".to_string() ); display.add( b\"image_url\".to_string(), b\"https://example.com/hero/{class}.jpg\".to_string() ); // Update the display with the new data. // Must be called to apply changes. display.update_version(); transfer::public_transfer(publisher, ctx.sender()); transfer::public_transfer(display, ctx.sender()); }\n}","breadcrumbs":"Advanced Programmability » Display » Object Display","id":"324","title":"Object Display"},"325":{"body":"While the objects can be owned by accounts and may be a subject to True Ownership , the Display can be owned by the creator of the object. This way, the creator can update the display metadata and apply the changes globally without the need to update every object. The creator can also transfer Display to another account or even build an application around the object with custom functionality to manage the metadata.","breadcrumbs":"Advanced Programmability » Display » Creator Privilege","id":"325","title":"Creator Privilege"},"326":{"body":"The fields that are supported most widely are: name - A name for the object. The name is displayed when users view the object. description - A description for the object. The description is displayed when users view the object. link - A link to the object to use in an application. image_url - A URL or a blob with the image for the object. thumbnail_url - A URL to a smaller image to use in wallets, explorers, and other products as a preview. project_url - A link to a website associated with the object or creator. creator - A string that indicates the object creator. Please, refer to the Sui Documentation for the most up-to-date list of supported fields. While there's a standard set of fields, the Display object does not enforce them. The developer can define any fields they need, and the client can use them as they see fit. Some applications may require additional fields, and omit other, and the Display is flexible enough to support them.","breadcrumbs":"Advanced Programmability » Display » Standard Fields","id":"326","title":"Standard Fields"},"327":{"body":"The Display object is defined in the sui::display module. It is a generic struct that takes a phantom type as a parameter. The phantom type is used to associate the Display object with the type it describes. The fields of the Display object are a VecMap of key-value pairs, where the key is the field name and the value is the field value. The version field is used to version the display metadata, and is updated on the update_display call. File: sui-framework/sources/display.move struct Display has key, store { id: UID, /// Contains fields for display. Currently supported /// fields are: name, link, image and description. fields: VecMap, /// Version that can only be updated manually by the Publisher. version: u16\n} The Publisher object is required to a new Display, since it serves as the proof of ownership of type.","breadcrumbs":"Advanced Programmability » Display » Working with Display","id":"327","title":"Working with Display"},"328":{"body":"Currently, Display supports simple string interpolation and can use struct fields (and paths) in its templates. The syntax is trivial - {path} is replaced with the value of the field at the path. The path is a dot-separated list of field names, starting from the root object in case of nested fields. /// Some common metadata for objects.\npublic struct Metadata has store { name: String, description: String, published_at: u64\n} /// The type with nested Metadata field.\npublic struct LittlePony has key, store { id: UID, image_url: String, metadata: Metadata\n} The Display for the type LittlePony above could be defined as follows: { \"name\": \"Just a pony\", \"image_url\": \"{image_url}\", \"description\": \"{metadata.description}\"\n}","breadcrumbs":"Advanced Programmability » Display » Template Syntax","id":"328","title":"Template Syntax"},"329":{"body":"There's no restriction to how many Display objects can be created for a specific T. However, the most recently updated Display will be used by the fullnode.","breadcrumbs":"Advanced Programmability » Display » Multiple Display Objects","id":"329","title":"Multiple Display Objects"},"33":{"body":"The section titled TransactionData contains the information about the transaction we just sent. It features fields like sender, which is your address, the gas_budget set with the --gas-budget argument, and the Coin we used for payment. It also prints the Commands that were run by the CLI. In this example, the commands Publish and TransferObject were run - the latter transfers a special object UpgradeCap to the sender. ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Version: 7 │\n│ │ Digest: AXYPnups8A5J6pkvLa6RekX2ye3qur66EZ88mEbaUDQ1 │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭─────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├─────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Publish: │ │\n│ │ ┌ │ │\n│ │ │ Dependencies: │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000001 │ │\n│ │ │ 0x0000000000000000000000000000000000000000000000000000000000000002 │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰─────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ gebjSbVwZwTkizfYg2XIuzdx+d66VxFz8EmVaisVFiV3GkDay6L+hQG3n2CQ1hrWphP6ZLc7bd1WRq4ss+hQAQ== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Data","id":"33","title":"Transaction Data"},"330":{"body":"Sui Object Display is Sui Documentation Publisher - the representation of the creator","breadcrumbs":"Advanced Programmability » Display » Further Reading","id":"330","title":"Further Reading"},"331":{"body":"Events are a way to notify off-chain listeners about on-chain events. They are used to emit additional information about the transaction that is not stored - and, hence, can't be accessed - on-chain. Events are emitted by the sui::event module located in the Sui Framework . Any custom type with the copy and drop abilities can be emitted as an event. Sui Verifier requires the type to be internal to the module. // File: sui-framework/sources/event.move\nmodule sui::event { /// Emit a custom Move event, sending the data offchain. /// /// Used for creating custom indexes and tracking onchain /// activity in a way that suits a specific application the most. /// /// The type `T` is the main way to index the event, and can contain /// phantom parameters, eg `emit(MyEvent)`. public native fun emit(event: T);\n}","breadcrumbs":"Advanced Programmability » Events » Events","id":"331","title":"Events"},"332":{"body":"Events are emitted using the emit function in the sui::event module. The function takes a single argument - the event to be emitted. The event data is passed by value, module book::events { use sui::coin::Coin; use sui::sui::SUI; use sui::event; /// The item that can be purchased. public struct Item has key { id: UID } /// Event emitted when an item is purchased. Contains the ID of the item and /// the price for which it was purchased. public struct ItemPurchased has copy, drop { item: ID, price: u64 } /// A marketplace function which performs the purchase of an item. public fun purchase(coin: Coin, ctx: &mut TxContext) { let item = Item { id: object::new(ctx) }; // Create an instance of `ItemPurchased` and pass it to `event::emit`. event::emit(ItemPurchased { item: object::id(&item), price: coin.value() }); // Omitting the rest of the implementation to keep the example simple. abort 0 }\n} The Sui Verifier requires the type passed to the emit function to be internal to the module . So emitting a type from another module will result in a compilation error. Primitive types, although they match the copy and drop requirement, are not allowed to be emitted as events.","breadcrumbs":"Advanced Programmability » Events » Emitting Events","id":"332","title":"Emitting Events"},"333":{"body":"Events are a part of the transaction result and are stored in the transaction effects . As such, they natively have the sender field which is the address who sent the transaction. So adding a \"sender\" field to the event is not necessary. Similarly, event metadata contains the timestamp. But it is important to note that the timestamp is relative to the node and may vary a little from node to node.","breadcrumbs":"Advanced Programmability » Events » Event Structure","id":"333","title":"Event Structure"},"334":{"body":"Sui Framework is a default dependency set in the Package Manifest . It depends on the Standard Library and provides Sui-specific features, including the interaction with the storage, and Sui-specific native types and modules. For convenience, we grouped the modules in the Sui Framework into multiple categories. But they're still part of the same framework.","breadcrumbs":"Advanced Programmability » Sui Framework » Sui Framework","id":"334","title":"Sui Framework"},"335":{"body":"Module Description Chapter sui::address Adds conversion methods to the address type Address sui::transfer Implements the storage operations for Objects It starts with an Object sui::tx_context Contains the TxContext struct and methods to read it Transaction Context sui::object Defines the UID and ID type, required for creating objects It starts with an Object sui::clock Defines the Clock type and its methods Epoch and Time sui::dynamic_field Implements methods to add, use and remove dynamic fields Dynamic Fields sui::dynamic_object_field Implements methods to add, use and remove dynamic object fields Dynamic Object Fields sui::event Allows emitting events for off-chain listeners Events sui::package Defines the Publisher type and package upgrade methods Publisher , Package Upgrades sui::display Implements the Display object and ways to create and update it Display","breadcrumbs":"Advanced Programmability » Sui Framework » Core","id":"335","title":"Core"},"336":{"body":"Module Description Chapter sui::vec_set Implements a set type Collections sui::vec_map Implements a map with vector keys Collections sui::table Implements the Table type and methods to interact with it Dynamic Collections sui::linked_table Implements the LinkedTable type and methods to interact with it Dynamic Collections sui::bag Implements the Bag type and methods to interact with it Dynamic Collections sui::object_table Implements the ObjectTable type and methods to interact with it Dynamic Collections sui::object_bag Implements the ObjectBag type and methods to interact with it Dynamic Collections","breadcrumbs":"Advanced Programmability » Sui Framework » Collections","id":"336","title":"Collections"},"337":{"body":"Module Description Chapter sui::bcs Implements the BCS encoding and decoding functions Binary Canonical Serialization","breadcrumbs":"Advanced Programmability » Sui Framework » Utilities","id":"337","title":"Utilities"},"338":{"body":"Sui Framework exports two named addresses: sui = 0x2 and std = 0x1 from the std dependency. [addresses]\nsui = \"0x2\" # Exported from the MoveStdlib dependency\nstd = \"0x1\"","breadcrumbs":"Advanced Programmability » Sui Framework » Exported Addresses","id":"338","title":"Exported Addresses"},"339":{"body":"Just like with Standard Library , some of the modules and types are imported implicitly in the Sui Framework. This is the list of modules and types that are available without explicit use import: sui::object sui::object::ID sui::object::UID sui::tx_context sui::tx_context::TxContext sui::transfer","breadcrumbs":"Advanced Programmability » Sui Framework » Implicit Imports","id":"339","title":"Implicit Imports"},"34":{"body":"Transaction Effects contains the status of the transaction, the changes that the transaction made to the state of the network and the objects involved in the transaction. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: GpcDV6JjjGQMRwHpEz582qsd5MpCYgSwrDAq1JXcpFjW │\n│ Status: Success │\n│ Executed Epoch: 411 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ ┌── │\n│ │ ID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Owner: Immutable │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 10404400 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ 7Ukrc5GqdFqTA41wvWgreCdHn2vRLfgQ3YMFkdks72Vk │\n│ 7d4amuHGhjtYKujEs9YkJARzNEn4mRbWWv3fn4cdKdyh │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Transaction Effects","id":"34","title":"Transaction Effects"},"340":{"body":"The source code of the Sui Framework is available in the Sui repository .","breadcrumbs":"Advanced Programmability » Sui Framework » Source Code","id":"340","title":"Source Code"},"341":{"body":"Binary Canonical Serialization (BCS) is a binary encoding format for structured data. It was originally designed in Diem, and became the standard serialization format for Move. BCS is simple, efficient, deterministic, and easy to implement in any programming language. The full format specification is available in the BCS repository .","breadcrumbs":"Advanced Programmability » BCS » Binary Canonical Serialization","id":"341","title":"Binary Canonical Serialization"},"342":{"body":"BCS is a binary format that supports unsigned integers up to 256 bits, options, booleans, unit (empty value), fixed and variable-length sequences, and maps. The format is designed to be deterministic, meaning that the same data will always be serialized to the same bytes. \"BCS is not a self-describing format. As such, in order to deserialize a message, one must know the message type and layout ahead of time\" from the README Integers are stored in little-endian format, and variable-length integers are encoded using a variable-length encoding scheme. Sequences are prefixed with their length as ULEB128, enumerations are stored as the index of the variant followed by the data, and maps are stored as an ordered sequence of key-value pairs. Structs are treated as a sequence of fields, and the fields are serialized in the order they are defined in the struct. The fields are serialized using the same rules as the top-level data.","breadcrumbs":"Advanced Programmability » BCS » Format","id":"342","title":"Format"},"343":{"body":"The Sui Framework includes the sui::bcs module for encoding and decoding data. Encoding functions are native to the VM, and decoding functions are implemented in Move.","breadcrumbs":"Advanced Programmability » BCS » Using BCS","id":"343","title":"Using BCS"},"344":{"body":"To encode data, use the bcs::to_bytes function, which converts data references into byte vectors. This function supports encoding any types, including structs. // File: move-stdlib/sources/bcs.move\npublic native fun to_bytes(t: &T): vector; The following example shows how to encode a struct using BCS. The to_bytes function can take any value and encode it as a vector of bytes. use sui::bcs; // 0x01 - a single byte with value 1 (or 0 for false)\nlet bool_bytes = bcs::to_bytes(&true);\n// 0x2a - just a single byte\nlet u8_bytes = bcs::to_bytes(&42u8);\n// 0x2a00000000000000 - 8 bytes\nlet u64_bytes = bcs::to_bytes(&42u64);\n// address is a fixed sequence of 32 bytes\n// 0x0000000000000000000000000000000000000000000000000000000000000002\nlet addr = bcs::to_bytes(&@sui);","breadcrumbs":"Advanced Programmability » BCS » Encoding","id":"344","title":"Encoding"},"345":{"body":"Structs encode similarly to simple types. Here is how to encode a struct using BCS: let data = CustomData { num: 42, string: b\"hello, world!\".to_string(), value: true\n}; let struct_bytes = bcs::to_bytes(&data); let mut custom_bytes = vector[];\ncustom_bytes.append(bcs::to_bytes(&42u8));\ncustom_bytes.append(bcs::to_bytes(&b\"hello, world!\".to_string()));\ncustom_bytes.append(bcs::to_bytes(&true)); // struct is just a sequence of fields, so the bytes should be the same!\nassert!(&struct_bytes == &custom_bytes, 0);","breadcrumbs":"Advanced Programmability » BCS » Encoding a Struct","id":"345","title":"Encoding a Struct"},"346":{"body":"Because BCS does not self-describe and Move is statically typed, decoding requires prior knowledge of the data type. The sui::bcs module provides various functions to assist with this process.","breadcrumbs":"Advanced Programmability » BCS » Decoding","id":"346","title":"Decoding"},"347":{"body":"BCS is implemented as a wrapper in Move. The decoder takes the bytes by value, and then allows the caller to peel off the data by calling different decoding functions, prefixed with peel_*. The data is split off the bytes, and the remainder bytes are kept in the wrapper until the into_remainder_bytes function is called. use sui::bcs; // BCS instance should always be declared as mutable\nlet mut bcs = bcs::new(x\"010000000000000000\"); // Same bytes can be read differently, for example: Option\nlet value: Option = bcs.peel_option_u64(); assert!(value.is_some(), 0);\nassert!(value.borrow() == &0, 1); let remainder = bcs.into_remainder_bytes(); assert!(remainder.length() == 0, 2); There is a common practice to use multiple variables in a single let statement during decoding. It makes code a little bit more readable and helps to avoid unnecessary copying of the data. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // mind the order!!!\n// handy way to peel multiple values\nlet (bool_value, u8_value, u64_value) = ( bcs.peel_bool(), bcs.peel_u8(), bcs.peel_u64()\n);","breadcrumbs":"Advanced Programmability » BCS » Wrapper API","id":"347","title":"Wrapper API"},"348":{"body":"While most of the primitive types have a dedicated decoding function, vectors need special handling, which depends on the type of the elements. For vectors, first you need to decode the length of the vector, and then decode each element in a loop. let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); // bcs.peel_vec_length() peels the length of the vector :)\nlet mut len = bcs.peel_vec_length();\nlet mut vec = vector[]; // then iterate depending on the data type\nwhile (len > 0) { vec.push_back(bcs.peel_u64()); // or any other type len = len - 1;\n}; assert!(vec.length() == 1, 0); For most common scenarios, bcs module provides a basic set of functions for decoding vectors: peel_vec_address(): vector
peel_vec_bool(): vector peel_vec_u8(): vector peel_vec_u64(): vector peel_vec_u128(): vector peel_vec_vec_u8(): vector> - vector of byte vectors","breadcrumbs":"Advanced Programmability » BCS » Decoding Vectors","id":"348","title":"Decoding Vectors"},"349":{"body":"Option is represented as a vector of either 0 or 1 element. To read an option, you would treat it like a vector and check its length (first byte - either 1 or 0). let mut bcs = bcs::new(x\"00\");\nlet is_some = bcs.peel_bool(); assert!(is_some == false, 0); let mut bcs = bcs::new(x\"0101\");\nlet is_some = bcs.peel_bool();\nlet value = bcs.peel_u8(); assert!(is_some == true, 1);\nassert!(value == 1, 2); If you need to decode an option of a custom type, use the method in the code snippet above. The most common scenarios, bcs module provides a basic set of functions for decoding Option's: peel_option_address(): Option
peel_option_bool(): Option peel_option_u8(): Option peel_option_u64(): Option peel_option_u128(): Option","breadcrumbs":"Advanced Programmability » BCS » Decoding Option","id":"349","title":"Decoding Option"},"35":{"body":"If there were any events emitted, you would see them in this section. Our package does not use events, so the section is empty. ╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯","breadcrumbs":"Hello, Sui! » Events","id":"35","title":"Events"},"350":{"body":"Structs are decoded field by field, and there is no standard function to automatically decode bytes into a Move struct, and it would have been a violation of the Move's type system. Instead, you need to decode each field manually. // some bytes... let mut bcs = bcs::new(x\"0101010F0000000000F00000000000\"); let (age, is_active, name) = ( bcs.peel_u8(), bcs.peel_bool(), bcs.peel_vec_u8().to_string()\n); let user = User { age, is_active, name };","breadcrumbs":"Advanced Programmability » BCS » Decoding Structs","id":"350","title":"Decoding Structs"},"351":{"body":"Binary Canonical Serialization is an efficient binary format for structured data, ensuring consistent serialization across platforms. The Sui Framework provides comprehensive tools for working with BCS, allowing extensive functionality through built-in functions.","breadcrumbs":"Advanced Programmability » BCS » Summary","id":"351","title":"Summary"},"352":{"body":"Move 2024 is the new edition of the Move language that is maintained by Mysten Labs. This guide is intended to help you understand the differences between the 2024 edition and the previous version of the Move language. This guide provides a high-level overview of the changes in the new edition. For a more detailed and exhaustive list of changes, refer to the Sui Documentation .","breadcrumbs":"2024 Migration Guide » Move 2024 Migration Guide","id":"352","title":"Move 2024 Migration Guide"},"353":{"body":"To use the new edition, you need to specify the edition in the move file. The edition is specified in the move file using the edition keyword. Currently, the only available edition is 2024.beta. edition = \"2024.beta\";","breadcrumbs":"2024 Migration Guide » Using the New Edition","id":"353","title":"Using the New Edition"},"354":{"body":"The Move CLI has a migration tool that updates the code to the new edition. To use the migration tool, run the following command: $ sui move migrate The migration tool will update the code to use the let mut syntax, the new public modifier for strucs, and the public(package) function visibility instead of friend declarations.","breadcrumbs":"2024 Migration Guide » Migration Tool","id":"354","title":"Migration Tool"},"355":{"body":"Move 2024 introduces let mut syntax to declare mutable variables. The let mut syntax is used to declare a mutable variable that can be changed after it is declared. let mut declaration is now required for mutable variables. Compiler will emit an error if you try to reassign a variable without the mut keyword. // Move 2020\nlet x: u64 = 10;\nx = 20; // Move 2024\nlet mut x: u64 = 10;\nx = 20; Additionally, the mut keyword is used in tuple destructuring and function arguments to declare mutable variables. // takes by value and mutates\nfun takes_by_value_and_mutates(mut v: Value): Value { v.field = 10; v\n} // `mut` should be placed before the variable name\nfun destruct() { let (x, y) = point::get_point(); let (mut x, y) = point::get_point(); let (mut x, mut y) = point::get_point();\n} // in struct unpack\nfun unpack() { let Point { x, mut y } = point::get_point(); let Point { mut x, mut y } = point::get_point();\n}","breadcrumbs":"2024 Migration Guide » Mutable bindings with let mut","id":"355","title":"Mutable bindings with let mut"},"356":{"body":"In Move 2024, the friend keyword is deprecated. Instead, you can use the public(package) visibility modifier to make functions visible to other modules in the same package. // Move 2020\nfriend book::friend_module;\npublic(friend) fun protected_function() {} // Move 2024\npublic(package) fun protected_function_2024() {}","breadcrumbs":"2024 Migration Guide » Friends are Deprecated","id":"356","title":"Friends are Deprecated"},"357":{"body":"In Move 2024, structs get a visibility modifier. Currently, the only available visibility modifier is public. // Move 2020\nstruct Book {} // Move 2024\npublic struct Book {}","breadcrumbs":"2024 Migration Guide » Struct Visibility","id":"357","title":"Struct Visibility"},"358":{"body":"In the new edition, functions which have a struct as the first argument are associated with the struct. This means that the function can be called using the dot notation. Methods defined in the same module with the type are automatically exported. Methods are automatically exported if the type is defined in the same module as the method. It is impossible to export methods for types defined in other modules. However, you can create custom aliases for methods in the module scope. public fun count(c: &Counter): u64 { /* ... */ } fun use_counter() { // move 2020 let count = counter::count(&c); // move 2024 let count = c.count();\n}","breadcrumbs":"2024 Migration Guide » Method Syntax","id":"358","title":"Method Syntax"},"359":{"body":"In Move 2024, some of the native and standard types received associated methods. For example, the vector type has a to_string method that converts the vector into a UTF8 string. fun aliases() { // vector to string and ascii string let str: String = b\"Hello, World!\".to_string(); let ascii: ascii::String = b\"Hello, World!\".to_ascii_string(); // address to bytes let bytes = @0xa11ce.to_bytes();\n} For the full list of built-in aliases, refer to the Standard Library and Sui Framework source code.","breadcrumbs":"2024 Migration Guide » Methods for Built-in Types","id":"359","title":"Methods for Built-in Types"},"36":{"body":"These are the changes to objects that transaction has made. In our case, we have created a new UpgradeCap object which is a special object that allows the sender to upgrade the package in the future, mutated the Gas object, and published a new package. Packages are also objects on Sui. ╭──────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├──────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x160f7856e13b27e5a025112f361370f4efc2c2659cb0023f1e99a8a84d1652f3 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::package::UpgradeCap │\n│ │ Version: 8 │\n│ │ Digest: 8y6bhwvQrGJHDckUZmj2HDAjfkyVqHohhvY1Fvzyj7ec │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0x4ea1303e4f5e2f65fc3709bc0fb70a3035fdd2d53dbcff33e026a50a742ce0de │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 8 │\n│ │ Digest: 7ydahjaM47Gyb33PB4qnW2ZAGqZvDuWScV6sWPiv7LTc │\n│ └── │\n│ Published Objects: │\n│ ┌── │\n│ │ PackageID: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │\n│ │ Version: 1 │\n│ │ Digest: Ein91NF2hc3qC4XYoMUFMfin9U23xQmDAdEMSHLae7MK │\n│ │ Modules: todo_list │\n│ └── │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Object Changes","id":"36","title":"Object Changes"},"360":{"body":"Some of the built-in types support borrowing operators. The borrowing operator is used to get a reference to the element at the specified index. The borrowing operator is defined as []. fun play_vec() { let v = vector[1,2,3,4]; let first = &v[0]; // calls vector::borrow(v, 0) let first_mut = &mut v[0]; // calls vector::borrow_mut(v, 0) let first_copy = v[0]; // calls *vector::borrow(v, 0)\n} Types that support the borrowing operator are: vector sui::vec_map::VecMap sui::table::Table sui::bag::Bag sui::object_table::ObjectTable sui::object_bag::ObjectBag sui::linked_table::LinkedTable To implement the borrowing operator for a custom type, you need to add a #[syntax(index)] attribute to the methods. #[syntax(index)]\npublic fun borrow(c: &List, key: String): &T { /* ... */ } #[syntax(index)]\npublic fun borrow_mut(c: &mut List, key: String): &mut T { /* ... */ }","breadcrumbs":"2024 Migration Guide » Borrowing Operator","id":"360","title":"Borrowing Operator"},"361":{"body":"In Move 2024, methods can be associated with types. The alias can be defined for any type locally to the module; or publicly, if the type is defined in the same module. // my_module.move\n// Local: type is foreign to the module\nuse fun my_custom_function as vector.do_magic; // sui-framework/kiosk/kiosk.move\n// Exported: type is defined in the same module\npublic use fun kiosk_owner_cap_for as KioskOwnerCap.kiosk;","breadcrumbs":"2024 Migration Guide » Method Aliases","id":"361","title":"Method Aliases"},"362":{"body":"To talk about best practices for upgradeability, we need to first understand what can be upgraded in a package. The base premise of upgradeability is that an upgrade should not break public compatibility with the previous version. The parts of the module which can be used in dependent packages should not change their static signature. This applies to modules - a module can not be removed from a package, public structs - they can be used in function signatures and public functions - they can be called from other packages. // module can not be removed from the package\nmodule book::upgradable { // dependencies can be changed (if they are not used in public signatures) use std::string::String; use sui::event; // can be removed // public structs can not be removed and can't be changed public struct Book has key { id: UID, title: String, } // public structs can not be removed and can't be changed public struct BookCreated has copy, drop { /* ... */ } // public functions can not be removed and their signature can never change // but the implementation can be changed public fun create_book(ctx: &mut TxContext): Book { create_book_internal(ctx) // can be removed and changed event::emit(BookCreated { /* ... */ }) } // package-visibility functions can be removed and changed public(package) fun create_book_package(ctx: &mut TxContext): Book { create_book_internal(ctx) } // entry functions can be removed and changed as long they're not public entry fun create_book_entry(ctx: &mut TxContext): Book { create_book_internal(ctx) } // private functions can be removed and changed fun create_book_internal(ctx: &mut TxContext): Book { abort 0 }\n}","breadcrumbs":"Upgradability Practices » Upgradeability Practices","id":"362","title":"Upgradeability Practices"},"363":{"body":"To discard previous versions of the package, the objects can be versioned. As long as the object contains a version field, and the code which uses the object expects and asserts a specific version, the code can be force-migrated to the new version. Normally, after an upgrade, admin functions can be used to update the version of the shared state, so that the new version of code can be used, and the old version aborts with a version mismatch. module book::versioned_state { const EVersionMismatch: u64 = 0; const VERSION: u8 = 1; /// The shared state (can be owned too) public struct SharedState has key { id: UID, version: u8, /* ... */ } public fun mutate(state: &mut SharedState) { assert!(state.version == VERSION, EVersionMismatch); // ... }\n}","breadcrumbs":"Upgradability Practices » Versioning objects","id":"363","title":"Versioning objects"},"364":{"body":"There's a common pattern in Sui which allows changing the stored configuration of an object while retaining the same object signature. This is done by keeping the base object simple and versioned and adding an actual configuration object as a dynamic field. Using this anchor pattern, the configuration can be changed with package upgrades while keeping the same base object signature. module book::versioned_config { use sui::vec_map::VecMap; use std::string::String; /// The base object public struct Config has key { id: UID, version: u16 } /// The actual configuration public struct ConfigV1 has store { data: Bag, metadata: VecMap } // ...\n}","breadcrumbs":"Upgradability Practices » Versioning configuration with dynamic fields","id":"364","title":"Versioning configuration with dynamic fields"},"365":{"body":"This section is coming soon!","breadcrumbs":"Upgradability Practices » Modular architecture","id":"365","title":"Modular architecture"},"366":{"body":"To guarantee the safety and security of the network, Sui has certain limits and restrictions. These limits are in place to prevent abuse and to ensure that the network remains stable and efficient. This guide provides an overview of these limits and restrictions, and how to build your application to work within them. The limits are defined in the protocol configuration and are enforced by the network. If any of the limits are exceeded, the transaction will either be rejected or aborted. The limits, being a part of the protocol, can only be changed through a network upgrade.","breadcrumbs":"Building against Limits » Building against Limits","id":"366","title":"Building against Limits"},"367":{"body":"The size of a transaction is limited to 128KB. This includes the size of the transaction payload, the size of the transaction signature, and the size of the transaction metadata. If a transaction exceeds this limit, it will be rejected by the network.","breadcrumbs":"Building against Limits » Transaction Size","id":"367","title":"Transaction Size"},"368":{"body":"The size of an object is limited to 256KB. This includes the size of the object data. If an object exceeds this limit, it will be rejected by the network. While a single object cannot bypass this limit, for more extensive storage options, one could use a combination of a base object with other attached to it using dynamic fields (eg Bag).","breadcrumbs":"Building against Limits » Object Size","id":"368","title":"Object Size"},"369":{"body":"The size of a single pure argument is limited to 16KB. A transaction argument bigger than this limit will result in execution failure. So in order to create a vector of more than ~500 addresses (given that a single address is 32 bytes), it needs to be joined dynamically either in Transaction Block or in a Move function. Standard functions like vector::append() can join two vectors of ~16KB resulting in a ~32KB of data as a single value.","breadcrumbs":"Building against Limits » Single Pure Argument Size","id":"369","title":"Single Pure Argument Size"},"37":{"body":"This last section contains changes to SUI Coins, in our case, we have spent around 0.015 SUI, which in MIST is 10,500,000. You can see it under the amount field in the output. ╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -10426280 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯","breadcrumbs":"Hello, Sui! » Balance Changes","id":"37","title":"Balance Changes"},"370":{"body":"The maximum number of objects that can be created in a single transaction is 2048. If a transaction attempts to create more than 2048 objects, it will be rejected by the network. This also affects dynamic fields , as both the key and the value are objects. So the maximum number of dynamic fields that can be created in a single transaction is 1024.","breadcrumbs":"Building against Limits » Maximum Number of Objects created","id":"370","title":"Maximum Number of Objects created"},"371":{"body":"The maximum number of dynamic fields that can be created in a single object is 1024. If an object attempts to create more than 1024 dynamic fields, it will be rejected by the network.","breadcrumbs":"Building against Limits » Maximum Number of Dynamic Fields created","id":"371","title":"Maximum Number of Dynamic Fields created"},"372":{"body":"The maximum number of events that can be emitted in a single transaction is 1024. If a transaction attempts to emit more than 1024 events, it will be aborted.","breadcrumbs":"Building against Limits » Maximum Number of Events","id":"372","title":"Maximum Number of Events"},"373":{"body":"Whenever execution encounters an abort, transaction fails and abort code is returned to the caller. Move VM returns the module name that aborted the transaction and the abort code. This behavior is not fully transparent to the caller of the transaction, especially when a single function contains multiple calls to the same function which may abort. In this case, the caller will not know which call aborted the transaction, and it will be hard to debug the issue or provide meaningful error message to the user. module book::module_a { use book::module_b; public fun do_something() { let field_1 = module_b::get_field(1); // may abort with 0 /* ... a lot of logic ... */ let field_2 = module_b::get_field(2); // may abort with 0 /* ... some more logic ... */ let field_3 = module_b::get_field(3); // may abort with 0 }\n} The example above illustrates the case when a single function contains multiple calls which may abort. If the caller of the do_something function receives an abort code 0, it will be hard to understand which call to module_b::get_field aborted the transaction. To address this problem, there are common patterns that can be used to improve error handling.","breadcrumbs":"Better error handling » Better error handling","id":"373","title":"Better error handling"},"374":{"body":"It is considered a good practice to provide a safe \"check\" function that returns a boolean value indicating whether an operation can be performed safely. If the module_b provides a function has_field that returns a boolean value indicating whether a field exists, the do_something function can be rewritten as follows: module book::module_a { use book::module_b; const ENoField: u64 = 0; public fun do_something() { assert!(module_b::has_field(1), ENoField); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoField); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoField); let field_3 = module_b::get_field(3); }\n} By adding custom checks before each call to module_b::get_field, the developer of the module_a takes control over the error handling. And it allows implementing the second rule.","breadcrumbs":"Better error handling » Rule 1: Handle all possible scenarios","id":"374","title":"Rule 1: Handle all possible scenarios"},"375":{"body":"The second trick, once the abort codes are handled by the caller module, is to use different abort codes for different scenarios. This way, the caller module can provide a meaningful error message to the user. The module_a can be rewritten as follows: module book::module_a { use book::module_b; const ENoFieldA: u64 = 0; const ENoFieldB: u64 = 1; const ENoFieldC: u64 = 2; public fun do_something() { assert!(module_b::has_field(1), ENoFieldA); let field_1 = module_b::get_field(1); /* ... */ assert!(module_b::has_field(2), ENoFieldB); let field_2 = module_b::get_field(2); /* ... */ assert!(module_b::has_field(3), ENoFieldC); let field_3 = module_b::get_field(3); }\n} Now, the caller module can provide a meaningful error message to the user. If the caller receives an abort code 0, it can be translated to \"Field 1 does not exist\". If the caller receives an abort code 1, it can be translated to \"Field 2 does not exist\". And so on.","breadcrumbs":"Better error handling » Rule 2: Abort with different codes","id":"375","title":"Rule 2: Abort with different codes"},"376":{"body":"A developer is often tempted to add a public function that would assert all the conditions and abort the execution. However, it is a better practice to create a function that returns a boolean value instead. This way, the caller module can handle the error and provide a meaningful error message to the user. module book::some_app_assert { const ENotAuthorized: u64 = 0; public fun do_a() { assert_is_authorized(); // ... } public fun do_b() { assert_is_authorized(); // ... } /// Don't do this public fun assert_is_authorized() { assert!(/* some condition */ true, ENotAuthorized); }\n} This module can be rewritten as follows: module book::some_app { const ENotAuthorized: u64 = 0; public fun do_a() { assert!(is_authorized(), ENotAuthorized); // ... } public fun do_b() { assert!(is_authorized(), ENotAuthorized); // ... } public fun is_authorized(): bool { /* some condition */ true } // a private function can still be used to avoid code duplication for a case // when the same condition with the same abort code is used in multiple places fun assert_is_authorized() { assert!(is_authorized(), ENotAuthorized); }\n} Utilizing these three rules will make the error handling more transparent to the caller of the transaction, and it will allow other developers to use custom abort codes in their modules.","breadcrumbs":"Better error handling » Rule 3: Return bool instead of assert","id":"376","title":"Rule 3: Return bool instead of assert"},"377":{"body":"","breadcrumbs":"Coding Conventions » Coding Conventions","id":"377","title":"Coding Conventions"},"378":{"body":"","breadcrumbs":"Coding Conventions » Naming","id":"378","title":"Naming"},"379":{"body":"Module names should be in snake_case. Module names should be descriptive and should not be too long. module book::conventions { /* ... */ }\nmodule book::common_pracices { /* ... */ }","breadcrumbs":"Coding Conventions » Module","id":"379","title":"Module"},"38":{"body":"It is possible to specify the --json flag during publishing to get the output in JSON format. This is useful if you want to parse the output programmatically or store it for later use. $ sui client publish --gas-budget 100000000 --json","breadcrumbs":"Hello, Sui! » Alternative Output","id":"38","title":"Alternative Output"},"380":{"body":"Constants should be in SCREAMING_SNAKE_CASE. Error constants should be in EPascalCase const MAX_PRICE: u64 = 1000;\nconst EInvalidInput: u64 = 0;","breadcrumbs":"Coding Conventions » Constant","id":"380","title":"Constant"},"381":{"body":"Function names should be in snake_case. Function names should be descriptive. public fun add(a: u64, b: u64): u64 { a + b }\npublic fun create_if_not_exists() { /* ... */ }","breadcrumbs":"Coding Conventions » Function","id":"381","title":"Function"},"382":{"body":"Struct names should be in PascalCase. Struct fields should be in snake_case. Capabilities should be suffixed with Cap. public struct Hero has key { id: UID value: u64, another_value: u64,\n} public struct AdminCap has key { id: UID }","breadcrumbs":"Coding Conventions » Struct","id":"382","title":"Struct"},"383":{"body":"Struct methods should be in snake_case. If there's multiple structs with the same method, the method should be prefixed with the struct name. In this case, an alias can be added to the method using use fun. public fun value(h: &Hero): u64 { h.value } public use fun hero_health as Hero.health;\npublic fun hero_health(h: &Hero): u64 { h.another_value } public use fun boar_health as Boar.health;\npublic fun boar_health(b: &Boar): u64 { b.another_value }","breadcrumbs":"Coding Conventions » Struct Method","id":"383","title":"Struct Method"},"384":{"body":"Fast Path - term used to describe a transaction that does not involve shared objects, and can be executed without the need for consensus. Parallel Execution - term used to describe the ability of the Sui runtime to execute transactions in parallel, including the ones that involve shared objects. Internal Type - type that is defined within the module. Fields of this type can not be accessed from outside the module, and, in case of \"key\"-only abilities, can not be used in public_* transfer functions.","breadcrumbs":"A - Glossary » Appendix A: Glossary","id":"384","title":"Appendix A: Glossary"},"385":{"body":"key - ability that allows the struct to be used as a key in the storage. On Sui, the key ability marks an object and requires the first field to be a id: UID. store - ability that allows the struct to be stored inside other objects. This ability relaxes restrictions applied to internal structs, allowing public_* transfer functions to accept them as arguments. It also enables the object to be stored as a dynamic field. copy - ability that allows the struct to be copied. On Sui, the copy ability conflicts with the key ability, and can not be used together with it. drop - ability that allows the struct to be ignored or discarded. On Sui, the drop ability cannot be used together with the key ability, as objects are not allowed to be ignored.","breadcrumbs":"A - Glossary » Abilities","id":"385","title":"Abilities"},"386":{"body":"Reserved addresses are special addresses that have a specific purpose on Sui. They stay the same between environments and are used for specific native operations. 0x1 - address of the Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x5 - address of the SuiSystem object 0x6 - address of the system Clock object 0x8 - address of the system Random object 0x403 - address of the DenyList system object","breadcrumbs":"B - Reserved Addresses » Appendix B: Reserved Addresses","id":"386","title":"Appendix B: Reserved Addresses"},"387":{"body":"This section lists publications related to Move and Sui. The Move Borrow Checker by Sam Blackshear, John Mitchell, Todd Nowacki, Shaz Qadeer. Resources: A Safe Language Abstraction for Money by Sam Blackshear, David L. Dill, Shaz Qadeer, Clark W. Barrett, John C. Mitchell, Oded Padon, Yoni Zohar. Robust Safety for Move by Marco Patrignani, Sam Blackshear","breadcrumbs":"C - Publications » Appendix C: Publications","id":"387","title":"Appendix C: Publications"},"388":{"body":"To contribute to this book, please, submit a pull request to the GitHub repository . The repository contains the source files for the book, written in mdBook format.","breadcrumbs":"D - Contributing » Appendix D: Contributing","id":"388","title":"Appendix D: Contributing"},"389":{"body":"The Rust Book has been a great inspiration for this book. I am personally grateful to the authors of the book, Steve Klabnik and Carol Nichols, for their work, as I have learned a lot from it. This book is a small tribute to their work and an attempt to bring a similar learning experience to the Move community.","breadcrumbs":"E - Acknowledgements » Appendix E: Acknowledgements","id":"389","title":"Appendix E: Acknowledgements"},"39":{"body":"After the package is published on chain, we can interact with it. To do this, we need to find the address (object ID) of the package. It's under the Published Objects section of the Object Changes output. The address is unique for each package, so you will need to copy it from the output. In this example, the address is: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe Now that we have the address, we can interact with the package. In the next section, we will show how to interact with the package by sending transactions.","breadcrumbs":"Hello, Sui! » Using the Results","id":"39","title":"Using the Results"},"4":{"body":"You can download the latest Sui binary from the releases page . The binary is available for macOS, Linux and Windows. For education purposes and development, we recommend using the mainnet version.","breadcrumbs":"Before we begin » Install Sui » Download Binary","id":"4","title":"Download Binary"},"40":{"body":"To demonstrate the interaction with the todo_list package, we will send a transaction to create a new list and add an item to it. Transactions are sent via the sui client ptb command, it allows using the Transaction Blocks at full capacity. The command may look big and complex, but we go through it step by step.","breadcrumbs":"Hello, Sui! » Sending Transactions","id":"40","title":"Sending Transactions"},"41":{"body":"Before we construct the command, let's store the values we will use in the transaction. Replace the 0x4.... with the address of the package you have published. And MY_ADDRESS variable will be automatically set to your address from the CLI output. $ export PACKAGE_ID=0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe\n$ export MY_ADDRESS=$(sui client active-address)","breadcrumbs":"Hello, Sui! » Prepare the Variables","id":"41","title":"Prepare the Variables"},"42":{"body":"Now to building an actual transaction. The transaction will consist of two parts: we will call the new function in the todo_list package to create a new list, and then we will transfer the list object to our account. The transaction will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--assign sender @$MY_ADDRESS \\\n--move-call $PACKAGE_ID::todo_list::new \\\n--assign list \\\n--transfer-objects \"[list]\" sender In this command, we are using the ptb subcommand to build a transaction. Parameters that follow it define the actual commands and actions that the transaction will perform. The first two calls we make are utility calls to set the sender address to the command inputs and set the gas budget for the transaction. # sets the gas budget for the transaction\n--gas-budget 100000000 \\n\n# registers a variable \"sender=@...\"\n--assign sender @$MY_ADDRESS \\n Then we perform the actual call to a function in the package. We use the --move-call followed by the package ID, the module name, and the function name. In this case, we are calling the new function in the todo_list package. # calls the \"new\" function in the \"todo_list\" package under the $PACKAGE_ID address\n--move-call $PACKAGE_ID::todo_list::new The function that we defined actually returns a value, which we want need to store. We use the --assign command to give a name to the returned value. In this case, we are calling it list. And then we transfer the object to our account. --move-call $PACKAGE_ID::todo_list::new \\\n# assigns the result of the \"new\" function to the \"list\" variable (from the previous step)\n--assign list \\\n# transfers the object to the sender\n--transfer-objects \"[list]\" sender Once the command is constructed, you can run it in the terminal. If everything is correct, you should see the output similar to the one we had in previous sections. The output will contain the transaction digest, the transaction data, and the transaction effects. Spoiler: Full transaction output Transaction Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8\n╭──────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Data │\n├──────────────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Owner: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ Gas Budget: 100000000 MIST │\n│ Gas Price: 1000 MIST │\n│ Gas Payment: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n│ │\n│ Transaction Kind: Programmable │\n│ ╭──────────────────────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Input Objects │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 Pure Arg: Type: address, Value: \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────────────────────────────╯ │\n│ ╭──────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ Commands │ │\n│ ├──────────────────────────────────────────────────────────────────────────────────┤ │\n│ │ 0 MoveCall: │ │\n│ │ ┌ │ │\n│ │ │ Function: new │ │\n│ │ │ Module: todo_list │ │\n│ │ │ Package: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe │ │\n│ │ └ │ │\n│ │ │ │\n│ │ 1 TransferObjects: │ │\n│ │ ┌ │ │\n│ │ │ Arguments: │ │\n│ │ │ Result 0 │ │\n│ │ │ Address: Input 0 │ │\n│ │ └ │ │\n│ ╰──────────────────────────────────────────────────────────────────────────────────╯ │\n│ │\n│ Signatures: │\n│ C5Lie4dtP5d3OkKzFBa+xM0BiNoB/A4ItthDCRTRBUrEE+jXeNs7mP4AuGwi3nzfTskh29+R1j1Kba4Wdy3QDA== │\n│ │\n╰──────────────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Transaction Effects │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Digest: BJwYEnuuMzU4Y8cTwMoJbbQA6cLwPmwxvsRpSmvThoK8 │\n│ Status: Success │\n│ Executed Epoch: 1213 │\n│ │\n│ Created Objects: │\n│ ┌── │\n│ │ ID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Object: │\n│ ┌── │\n│ │ ID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n│ Gas Cost Summary: │\n│ Storage Cost: 2318000 MIST │\n│ Computation Cost: 1000000 MIST │\n│ Storage Rebate: 978120 MIST │\n│ Non-refundable Storage Fee: 9880 MIST │\n│ │\n│ Transaction Dependencies: │\n│ FSz2fYXmKqTf77mFXNq5JK7cKY8agWja7V5yDKEgL8c3 │\n│ GgMZKTt482DYApbAZkPDtdssGHZLbxgjm2uMXhzJax8Q │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭─────────────────────────────╮\n│ No transaction block events │\n╰─────────────────────────────╯ ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x74973c4ea2e78dc409f60481e23761cee68a48156df93a93fbcceb77d1cacdf6 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 23 │\n│ │ Digest: DuHTozDHMsuA7cFnWRQ1Gb8FQghAEBaj3inasJxqYq1c │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 23 │\n│ │ Digest: 82fwKarGuDhtomr5oS6ZGNvZNw9QVXLSbPdQu6jQgNV7 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯\n╭───────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Balance Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ ┌── │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ CoinType: 0x2::sui::SUI │\n│ │ Amount: -2339880 │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────╯ The section that we want to focus on is the \"Object Changes\". More specifically, the \"Created Objects\" part of it. It contains the object ID, the type and the version of the TodoList that you have created. We will use this object ID to interact with the list. ╭───────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ Object Changes │\n├───────────────────────────────────────────────────────────────────────────────────────────────────────┤\n│ Created Objects: │\n│ ┌── │\n│ │ ObjectID: 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ │ Version: 22 │\n│ │ Digest: HyWdUpjuhjLY38dLpg6KPHQ3bt4BqQAbdF5gB8HQdEqG │\n│ └── │\n│ Mutated Objects: │\n│ ┌── │\n│ │ ObjectID: 0xe5ddeb874a8d7ead328e9f2dd2ad8d25383ab40781a5f1aefa75600973b02bc4 │\n│ │ Sender: 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │\n│ │ Owner: Account Address ( 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 ) │\n│ │ ObjectType: 0x2::coin::Coin<0x2::sui::SUI> │\n│ │ Version: 22 │\n│ │ Digest: DiBrBMshDiD9cThpaEgpcYSF76uV4hCoE1qRyQ3rnYCB │\n│ └── │\n╰───────────────────────────────────────────────────────────────────────────────────────────────────────╯ In this example the object ID is 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553. And the owner should be your account address. We achieved this by transferring the object to the sender in the last command of the transaction. Another way to test that you have successfully created the list is to check the account objects. $ sui client objects It should have an object that looks similar to this: ╭ ... ╮\n│ ╭────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │\n│ │ version │ 22 │ │\n│ │ digest │ /DUEiCLkaNSgzpZSq2vSV0auQQEQhyH9occq9grMBZM= │ │\n│ │ objectType │ 0x468d..29fe::todo_list::TodoList │ │\n│ ╰────────────┴──────────────────────────────────────────────────────────────────────╯ │\n| ... |","breadcrumbs":"Hello, Sui! » Building the Transaction in CLI","id":"42","title":"Building the Transaction in CLI"},"43":{"body":"The TodoList that we created in the previous step is an object that you can interact with as its owner. You can call functions defined in the todo_list module on this object. To demonstrate this, we will add an item to the list. First, we will add just one item, and in the second transaction we will add 3 and remove another one. Double check that you have variables set up from the previous step , and then add one more variable for the list object. $ export LIST_ID=0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 Now we can construct the transaction to add an item to the list. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish the Hello, Sui chapter'\" In this command, we are calling the add function in the todo_list package. The function takes two arguments: the list object and the item to add. The item is a string, so we need to wrap it in single quotes. The command will add the item to the list. If everything is correct, you should see the output similar to the one we had in previous sections. Now you can check the list object to see if the item was added. $ sui client object $LIST_ID The output should contain the item that you have added. ╭───────────────┬───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╮\n│ objectId │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │\n│ version │ 24 │\n│ digest │ FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ │\n│ objType │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │\n│ owner │ ╭──────────────┬──────────────────────────────────────────────────────────────────────╮ │\n│ │ │ AddressOwner │ 0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1 │ │\n│ │ ╰──────────────┴──────────────────────────────────────────────────────────────────────╯ │\n│ prevTx │ EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1 │\n│ storageRebate │ 1558000 │\n│ content │ ╭───────────────────┬───────────────────────────────────────────────────────────────────────────────────────────╮ │\n│ │ │ dataType │ moveObject │ │\n│ │ │ type │ 0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList │ │\n│ │ │ hasPublicTransfer │ true │ │\n│ │ │ fields │ ╭───────┬───────────────────────────────────────────────────────────────────────────────╮ │ │\n│ │ │ │ │ id │ ╭────┬──────────────────────────────────────────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ id │ 0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553 │ │ │ │\n│ │ │ │ │ │ ╰────┴──────────────────────────────────────────────────────────────────────╯ │ │ │\n│ │ │ │ │ items │ ╭─────────────────────────────────╮ │ │ │\n│ │ │ │ │ │ │ finish the Hello, Sui chapter │ │ │ │\n│ │ │ │ │ │ ╰─────────────────────────────────╯ │ │ │\n│ │ │ │ ╰───────┴───────────────────────────────────────────────────────────────────────────────╯ │ │\n│ │ ╰───────────────────┴───────────────────────────────────────────────────────────────────────────────────────────╯ │\n╰───────────────┴───────────────────────────────────────────────────────────────────────────────────────────────────────────────────╯ A JSON representation of the object can be obtained by adding the --json flag to the command. $ sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"24\", \"digest\": \"FGcXH8MGpMs5BdTnC62CQ3VLAwwexYg2id5DKU7Jr9aQ\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"EJVK6FEHtfTdCuGkNsU1HcrmUBEN6H6jshfcptnw8Yt1\", \"storageRebate\": \"1558000\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [\"Finish the Hello, Sui chapter\"] } }\n}","breadcrumbs":"Hello, Sui! » Passing Objects to Functions","id":"43","title":"Passing Objects to Functions"},"44":{"body":"You can chain multiple commands in a single transaction. This shows the power of Transaction Blocks! Using the same list object, we will add three more items and remove one. The command will look like this: $ sui client ptb \\\n--gas-budget 100000000 \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Finish Concepts chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Read the Move Basics chapter'\" \\\n--move-call $PACKAGE_ID::todo_list::add @$LIST_ID \"'Learn about Object Model'\" \\\n--move-call $PACKAGE_ID::todo_list::remove @$LIST_ID 0 If previous commands were successful, this one should not be any different. You can check the list object to see if the items were added and removed. The JSON representation is a bit more readable! sui client object $LIST_ID --json { \"objectId\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\", \"version\": \"25\", \"digest\": \"EDTXDsteqPGAGu4zFAj5bbQGTkucWk4hhuUquk39enGA\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"owner\": { \"AddressOwner\": \"0x091ef55506ad814920adcef32045f9078f2f6e9a72f4cf253a1e6274157380a1\" }, \"previousTransaction\": \"7SXLGBSh31jv8G7okQ9mEgnw5MnTfvzzHEHpWf3Sa9gY\", \"storageRebate\": \"1922800\", \"content\": { \"dataType\": \"moveObject\", \"type\": \"0x468daa33dfcb3e17162bbc8928f6ec73744bb08d838d1b6eb94eac99269b29fe::todo_list::TodoList\", \"hasPublicTransfer\": true, \"fields\": { \"id\": { \"id\": \"0x20e0bede16de8a728ab25e228816b9059b45ebea49c8ad384e044580b2d3e553\" }, \"items\": [ \"Finish Concepts chapter\", \"Read the Move Basics chapter\", \"Learn about Object Model\" ] } }\n} Commands don't have to be in the same package or operate on the same object. Within a single transaction block, you can interact with multiple packages and objects. This is a powerful feature that allows you to build complex interactions on-chain!","breadcrumbs":"Hello, Sui! » Chaining Commands","id":"44","title":"Chaining Commands"},"45":{"body":"In this guide, we have shown how to publish a package on the Move blockchain and interact with it using the Sui CLI. We have demonstrated how to create a new list object, add items to it, and remove them. We have also shown how to chain multiple commands in a single transaction block. This guide should give you a good starting point for building your own applications on the Sui blockchain!","breadcrumbs":"Hello, Sui! » Conclusion","id":"45","title":"Conclusion"},"46":{"body":"In this chapter you will learn about the basic concepts of Sui and Move. You will learn what is a package, how to interact with it, what is an account and a transaction, and how data is stored on Sui. While this chapter is not a complete reference, and you should refer to the Sui Documentation for that, it will give you a good understanding of the basic concepts required to write Move programs on Sui.","breadcrumbs":"Concepts » Concepts","id":"46","title":"Concepts"},"47":{"body":"Move is a language for writing smart contracts - programs that are stored and run on the blockchain. A single program is organized into a package. A package is published on the blockchain and is identified by an address . A published package can be interacted with by sending transactions calling its functions. It can also act as a dependency for other packages. To create a new package, use the sui move new command. To learn more about the command, run sui move new --help. Package consists of modules - separate scopes that contain functions, types, and other items. package 0x... module a struct A1 fun hello_world() module b struct B1 fun hello_package()","breadcrumbs":"Concepts » Package » Package","id":"47","title":"Package"},"48":{"body":"Locally, a package is a directory with a Move.toml file and a sources directory. The Move.toml file - called the \"package manifest\" - contains metadata about the package, and the sources directory contains the source code for the modules. Package usually looks like this: sources/ my_module.move another_module.move ...\ntests/ ...\nexamples/ using_my_module.move\nMove.toml The tests directory is optional and contains tests for the package. Code placed into the tests directory is not published on-chain and is only availably in tests. The examples directory can be used for code examples, and is also not published on-chain.","breadcrumbs":"Concepts » Package » Package Structure","id":"48","title":"Package Structure"},"49":{"body":"During development, package doesn't have an address and it needs to be set to 0x0. Once a package is published, it gets a single unique address on the blockchain containing its modules' bytecode. A published package becomes immutable and can be interacted with by sending transactions. 0x... my_module: another_module: ","breadcrumbs":"Concepts » Package » Published Package","id":"49","title":"Published Package"},"5":{"body":"You can install Sui using the Homebrew package manager. brew install sui","breadcrumbs":"Before we begin » Install Sui » Install using Homebrew (MacOS)","id":"5","title":"Install using Homebrew (MacOS)"},"50":{"body":"Package Manifest Address Packages in the Move Reference.","breadcrumbs":"Concepts » Package » Links","id":"50","title":"Links"},"51":{"body":"The Move.toml is a manifest file that describes the package and its dependencies. It is written in TOML format and contains multiple sections, the most important of which are [package], [dependencies] and [addresses]. [package]\nname = \"my_project\"\nversion = \"0.0.0\"\nedition = \"2024\" [dependencies]\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } [addresses]\nstd = \"0x1\"\nalice = \"0xA11CE\" [dev-addresses]\nalice = \"0xB0B\"","breadcrumbs":"Concepts » Manifest » Package Manifest","id":"51","title":"Package Manifest"},"52":{"body":"","breadcrumbs":"Concepts » Manifest » Sections","id":"52","title":"Sections"},"53":{"body":"The [package] section is used to describe the package. None of the fields in this section are published on chain, but they are used in tooling and release management; they also specify the Move edition for the compiler. name - the name of the package when it is imported; version - the version of the package, can be used in release management; edition - the edition of the Move language; currently, the only valid value is 2024.","breadcrumbs":"Concepts » Manifest » Package","id":"53","title":"Package"},"54":{"body":"The [dependencies] section is used to specify the dependencies of the project. Each dependency is specified as a key-value pair, where the key is the name of the dependency, and the value is the dependency specification. The dependency specification can be a git repository URL or a path to the local directory. # git repository\nSui = { git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" } # local directory\nMyPackage = { local = \"../my-package\" } Packages also import addresses from other packages. For example, the Sui dependency adds the std and sui addresses to the project. These addresses can be used in the code as aliases for the addresses.","breadcrumbs":"Concepts » Manifest » Dependencies","id":"54","title":"Dependencies"},"55":{"body":"Sometimes dependencies have conflicting versions of the same package. For example, if you have two dependencies that use different versions of the Sui package, you can override the dependency in the [dependencies] section. To do so, add the override field to the dependency. The version of the dependency specified in the [dependencies] section will be used instead of the one specified in the dependency itself. [dependencies]\nSui = { override = true, git = \"https://github.com/MystenLabs/sui.git\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }","breadcrumbs":"Concepts » Manifest » Resolving version conflicts with override","id":"55","title":"Resolving version conflicts with override"},"56":{"body":"It is possible to add [dev-dependencies] section to the manifest. It is used to override dependencies in the dev and test modes. For example, if you want to use a different version of the Sui package in the dev mode, you can add a custom dependency specification to the [dev-dependencies] section.","breadcrumbs":"Concepts » Manifest » Dev-dependencies","id":"56","title":"Dev-dependencies"},"57":{"body":"The [addresses] section is used to add aliases for the addresses. Any address can be specified in this section, and then used in the code as an alias. For example, if you add alice = \"0xA11CE\" to this section, you can use alice as 0xA11CE in the code.","breadcrumbs":"Concepts » Manifest » Addresses","id":"57","title":"Addresses"},"58":{"body":"The [dev-addresses] section is the same as [addresses], but only works for the test and dev modes. Important to note that it is impossible to introduce new aliases in this section, only override the existing ones. So in the example above, if you add alice = \"0xB0B\" to this section, the alice address will be 0xB0B in the test and dev modes, and 0xA11CE in the regular build.","breadcrumbs":"Concepts » Manifest » Dev-addresses","id":"58","title":"Dev-addresses"},"59":{"body":"The TOML format supports two styles for tables: inline and multiline. The examples above are using the inline style, but it is also possible to use the multiline style. You wouldn't want to use it for the [package] section, but it can be useful for the dependencies. # Inline style\n[dependencies]\nSui = { override = true, git = \"\", subdir = \"crates/sui-framework/packages/sui-framework\", rev = \"framework/testnet\" }\nMyPackage = { local = \"../my-package\" } # Multiline style\n[dependencies.Sui]\noverride = true\ngit = \"https://github.com/MystenLabs/sui.git\"\nsubdir = \"crates/sui-framework/packages/sui-framework\"\nrev = \"framework/testnet\" [dependencies.MyPackage]\nlocal = \"../my-package\"","breadcrumbs":"Concepts » Manifest » TOML styles","id":"59","title":"TOML styles"},"6":{"body":"You can install Sui using the Chocolatey package manager for Windows. choco install sui","breadcrumbs":"Before we begin » Install Sui » Install using Chocolatey (Windows)","id":"6","title":"Install using Chocolatey (Windows)"},"60":{"body":"Packages in the Move Reference.","breadcrumbs":"Concepts » Manifest » Further Reading","id":"60","title":"Further Reading"},"61":{"body":"Address is a unique identifier of a location on the blockchain. It is used to identify packages , accounts , and objects . Address has a fixed size of 32 bytes and is usually represented as a hexadecimal string prefixed with 0x. Addresses are case insensitive. 0xe51ff5cd221a81c3d6e22b9e670ddf99004d71de4f769b0312b68c7c4872e2f1 The address above is an example of a valid address. It is 64 characters long (32 bytes) and prefixed with 0x. Sui also has reserved addresses that are used to identify standard packages and objects. Reserved addresses are typically simple values that are easy to remember and type. For example, the address of the Standard Library is 0x1. Addresses, shorter than 32 bytes, are padded with zeros to the left. 0x1 = 0x0000000000000000000000000000000000000000000000000000000000000001 Here are some examples of reserved addresses: 0x1 - address of the Sui Standard Library (alias std) 0x2 - address of the Sui Framework (alias sui) 0x6 - address of the system Clock object You can find all reserved addresses in the Appendix B .","breadcrumbs":"Concepts » Address » Address","id":"61","title":"Address"},"62":{"body":"Address type in Move","breadcrumbs":"Concepts » Address » Further reading","id":"62","title":"Further reading"},"63":{"body":"An account is a way to identify a user. An account is generated from a private key, and is identified by an address. An account can own objects, and can send transactions. Every transaction has a sender, and the sender is identified by an address . Sui supports multiple cryptographic algorithms for account generation. The two supported curves are ed25519, secp256k1, and there is also a special way of generating an account - zklogin. The cryptographic agility - the unique feature of Sui - allows for flexibility in the account generation.","breadcrumbs":"Concepts » Account » Account","id":"63","title":"Account"},"64":{"body":"Cryptography in Sui in the Sui Blog Keys and Addresses in the Sui Docs Signatures in the Sui Docs","breadcrumbs":"Concepts » Account » Further Reading","id":"64","title":"Further Reading"},"65":{"body":"Transaction is a fundamental concept in the blockchain world. It is a way to interact with a blockchain. Transactions are used to change the state of the blockchain, and they are the only way to do so. In Move, transactions are used to call functions in a package, deploy new packages, and upgrade existing ones.","breadcrumbs":"Concepts » Transaction » Transaction","id":"65","title":"Transaction"},"66":{"body":"Every transaction explicitly specifies the objects it operates on! Transactions consist of: a sender - the account that signs the transaction; a list (or a chain) of commands - the operations to be executed; command inputs - the arguments for the commands: either pure - simple values like numbers or strings, or object - objects that the transaction will access; a gas object - the Coin object used to pay for the transaction; gas price and budget - the cost of the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Structure","id":"66","title":"Transaction Structure"},"67":{"body":"Sui transactions may consist of multiple commands. Each command is a single built-in command (like publishing a package) or a call to a function in an already published package. The commands are executed in the order they are listed in the transaction, and they can use the results of the previous commands, forming a chain. Transaction either succeeds or fails as a whole. Schematically, a transaction looks like this (in pseudo-code): Inputs:\n- sender = 0xa11ce Commands:\n- payment = SplitCoins(Gas, [ 1000 ])\n- item = MoveCall(0xAAA::market::purchase, [ payment ])\n- TransferObjects(item, sender) In this example, the transaction consists of three commands: SplitCoins - a built-in command that splits a new coin from the passed object, in this case, the Gas object; MoveCall - a command that calls a function purchase in a package 0xAAA, module market with the given arguments - the payment object; TransferObjects - a built-in command that transfers the object to the recipient.","breadcrumbs":"Concepts » Transaction » Commands","id":"67","title":"Commands"},"68":{"body":"Transaction effects are the changes that a transaction makes to the blockchain state. More specifically, a transaction can change the state in the following ways: use the gas object to pay for the transaction; create, update, or delete objects; emit events; The result of the executed transaction consists of different parts: Transaction Digest - the hash of the transaction which is used to identify the transaction; Transaction Data - the inputs, commands and gas object used in the transaction; Transaction Effects - the status and the \"effects\" of the transaction, more specifically: the status of the transaction, updates to objects and their new versions, the gas object used, the gas cost of the transaction, and the events emitted by the transaction; Events - the custom events emitted by the transaction; Object Changes - the changes made to the objects, including the change of ownership ; Balance Changes - the changes made to the aggregate balances of the account involved in the transaction;","breadcrumbs":"Concepts » Transaction » Transaction Effects","id":"68","title":"Transaction Effects"},"69":{"body":"This chapter is all about the basic syntax of the Move language. It covers the basics of the language, such as types, modules, functions, and control flow. It focuses on the language without a storage model or a blockchain, and explains the essential concepts of the language. To learn features specific to Sui, such as storage functions and abilities, refer to the Using Objects chapter, however, it is recommended to start with this chapter first.","breadcrumbs":"Move Basics » Move Basics","id":"69","title":"Move Basics"},"7":{"body":"You can install and build Sui locally by using the Cargo package manager (requires Rust) cargo install --git https://github.com/MystenLabs/sui.git --bin sui --branch mainnet Make sure that your system has the latest Rust versions with the command below. rustup update stable","breadcrumbs":"Before we begin » Install Sui » Build using Cargo (MacOS, Linux)","id":"7","title":"Build using Cargo (MacOS, Linux)"},"70":{"body":"Module is the base unit of code organization in Move. Modules are used to group and isolate code, and all of the members of the module are private to the module by default. In this section you will learn how to define a module, how to declare its members and how to access them from other modules.","breadcrumbs":"Move Basics » Module » Module","id":"70","title":"Module"},"71":{"body":"Modules are declared using the module keyword followed by the package address, module name and the module body inside the curly braces {}. The module name should be in snake_case - all lowercase letters with underscores between words. Modules names must be unique in the package. Usually, a single file in the sources/ folder contains a single module. The file name should match the module name - for example, a donut_shop module should be stored in the donut_shop.move file. You can read more about coding conventions in the Coding Conventions section. module book::my_module { // module body\n} Structs, functions, constants and imports all part of the module: Structs Functions Constants Imports Struct Methods","breadcrumbs":"Move Basics » Module » Module declaration","id":"71","title":"Module declaration"},"72":{"body":"Module address can be specified as both: an address literal (does not require the @ prefix) or a named address specified in the Package Manifest . In the example below, both are identical because there's a book = \"0x0\" record in the [addresses] section of the Move.toml. module 0x0::address_literal { /* ... */ }\nmodule book::named_address { /* ... */ } Addresses section in the Move.toml: # Move.toml\n[addresses]\nbook = \"0x0\"","breadcrumbs":"Move Basics » Module » Address / Named address","id":"72","title":"Address / Named address"},"73":{"body":"Module members are declared inside the module body. To illustrate that, let's define a simple module with a struct, a function and a constant: module book::my_module_with_members { // import use book::my_module; // a constant const CONST: u8 = 0; // a struct public struct Struct {} // method alias public use fun function as Struct.struct_fun; // function fun function(_: &Struct) { /* function body */ }\n}","breadcrumbs":"Move Basics » Module » Module members","id":"73","title":"Module members"},"74":{"body":"Modules in the Move Reference.","breadcrumbs":"Move Basics » Module » Further reading","id":"74","title":"Further reading"},"75":{"body":"Comments are a way to add notes or document your code. They are ignored by the compiler and don't result in the Move bytecode. You can use comments to explain what your code does, to add notes to yourself or other developers, to temporarily remove a part of your code, or to generate documentation. There are three types of comments in Move: line comment, block comment, and doc comment.","breadcrumbs":"Move Basics » Comments » Comments","id":"75","title":"Comments"},"76":{"body":"module book::comments_line { fun some_function() { // this is a comment line }\n} You can use double slash // to comment out the rest of the line. Everything after // will be ignored by the compiler. module book::comments_line_2 { // let's add a note to everything! fun some_function_with_numbers() { let a = 10; // let b = 10 this line is commented and won't be executed let b = 5; // here comment is placed after code a + b; // result is 15, not 10! }\n}","breadcrumbs":"Move Basics » Comments » Line comment","id":"76","title":"Line comment"},"77":{"body":"Block comments are used to comment out a block of code. They start with /* and end with */. Everything between /* and */ will be ignored by the compiler. You can use block comments to comment out a single line or multiple lines. You can even use them to comment out a part of a line. module book::comments_block { fun /* you can comment everywhere */ go_wild() { /* here there everywhere */ let a = 10; let b = /* even here */ 10; /* and again */ a + b; } /* you can use it to remove certain expressions or definitions fun empty_commented_out() { } */\n} This example is a bit extreme, but it shows how you can use block comments to comment out a part of a line.","breadcrumbs":"Move Basics » Comments » Block comment","id":"77","title":"Block comment"},"78":{"body":"Documentation comments are special comments that are used to generate documentation for your code. They are similar to block comments, but they start with three slashes /// and are placed before the definition of the item they document. /// Module has documentation!\nmodule book::comments_doc { /// This is a 0x0 address constant! const AN_ADDRESS: address = @0x0; /// This is a struct! public struct AStruct { /// This is a field of a struct! a_field: u8, } /// This function does something! /// And it's documented! fun do_something() {}\n}","breadcrumbs":"Move Basics » Comments » Doc comment","id":"78","title":"Doc comment"},"79":{"body":"For simple values, Move has a number of built-in primitive types. They're the base that makes up all other types. The primitive types are: Booleans Unsigned Integers Address - covered in the next section However, before we get to the types, let's first look at how to declare and assign variables in Move.","breadcrumbs":"Move Basics » Primitive Types » Primitive Types","id":"79","title":"Primitive Types"},"8":{"body":"For troubleshooting the installation process, please refer to the Install Sui Guide.","breadcrumbs":"Before we begin » Install Sui » Troubleshooting","id":"8","title":"Troubleshooting"},"80":{"body":"Variables are declared using the let keyword. They are immutable by default, but can be made mutable using the let mut keyword. The syntax for the let mut statement is: let [: ] = ;\nlet mut [: ] = ; Where: - the name of the variable - the type of the variable, optional - the value to be assigned to the variable let x: bool = true;\nlet mut y: u8 = 42; A mutable variable can be reassigned using the = operator. y = 43; Variables can also be shadowed by re-declaring. let x: u8 = 42;\nlet x: u16 = 42;","breadcrumbs":"Move Basics » Primitive Types » Variables and assignment","id":"80","title":"Variables and assignment"},"81":{"body":"The bool type represents a boolean value - yes or no, true or false. It has two possible values: true and false which are keywords in Move. For booleans, there's no need to explicitly specify the type - the compiler can infer it from the value. let x = true;\nlet y = false; Booleans are often used to store flags and to control the flow of the program. Please, refer to the Control Flow section for more information.","breadcrumbs":"Move Basics » Primitive Types » Booleans","id":"81","title":"Booleans"},"82":{"body":"Move supports unsigned integers of various sizes: from 8-bit to 256-bit. The integer types are: u8 - 8-bit u16 - 16-bit u32 - 32-bit u64 - 64-bit u128 - 128-bit u256 - 256-bit let x: u8 = 42;\nlet y: u16 = 42;\n// ...\nlet z: u256 = 42; Unlike booleans, integer types need to be inferred. In most of the cases, the compiler will infer the type from the value, usually defaulting to u64. However, sometimes the compiler is unable to infer the type and will require an explicit type annotation. It can either be provided during assignment or by using a type suffix. // Both are equivalent\nlet x: u8 = 42;\nlet x = 42u8;","breadcrumbs":"Move Basics » Primitive Types » Integer Types","id":"82","title":"Integer Types"},"83":{"body":"Move supports the standard arithmetic operations for integers: addition, subtraction, multiplication, division, and remainder. The syntax for these operations is: Syntax Operation Aborts If + addition Result is too large for the integer type - subtraction Result is less than zero * multiplication Result is too large for the integer type % modular division The divisor is 0 / truncating division The divisor is 0 For more operations, including bitwise operations, please refer to the Move Reference . The type of the operands must match , otherwise, the compiler will raise an error. The result of the operation will be of the same type as the operands. To perform operations on different types, the operands need to be cast to the same type.","breadcrumbs":"Move Basics » Primitive Types » Operations","id":"83","title":"Operations"},"84":{"body":"Move supports explicit casting between integer types. The syntax for it is: as Note, that it may require parentheses around the expression to prevent ambiguity. let x: u8 = 42;\nlet y: u16 = x as u16;\nlet z = 2 * (x as u16); // ambiguous, requires parentheses A more complex example, preventing overflow: let x: u8 = 255;\nlet y: u8 = 255;\nlet z: u16 = (x as u16) + ((y as u16) * 2);","breadcrumbs":"Move Basics » Primitive Types » Casting with as","id":"84","title":"Casting with as"},"85":{"body":"Move does not support overflow / underflow, an operation that results in a value outside the range of the type will raise a runtime error. This is a safety feature to prevent unexpected behavior. let x = 255u8;\nlet y = 1u8; // This will raise an error\nlet z = x + y;","breadcrumbs":"Move Basics » Primitive Types » Overflow","id":"85","title":"Overflow"},"86":{"body":"Bool in the Move Reference. Integer in the Move Reference.","breadcrumbs":"Move Basics » Primitive Types » Further reading","id":"86","title":"Further reading"},"87":{"body":"To represent addresses , Move uses a special type called address. It is a 32 byte value that can be used to represent any address on the blockchain. Addresses are used in two syntax forms: hexadecimal addresses prefixed with 0x and named addresses. // address literal\nlet value: address = @0x1; // named address registered in Move.toml\nlet value = @std;\nlet other = @sui; An address literal starts with the @ symbol followed by a hexadecimal number or an identifier. The hexadecimal number is interpreted as a 32 byte value. The identifier is looked up in the Move.toml file and replaced with the corresponding address by the compiler. If the identifier is not found in the Move.toml file, the compiler will throw an error.","breadcrumbs":"Move Basics » Address Type » Address Type","id":"87","title":"Address Type"},"88":{"body":"Sui Framework offers a set of helper functions to work with addresses. Given that the address type is a 32 byte value, it can be converted to a u256 type and vice versa. It can also be converted to and from a vector type. Example: Convert an address to a u256 type and back. use sui::address; let addr_as_u256: u256 = address::to_u256(@0x1);\nlet addr = address::from_u256(addr_as_u256); Example: Convert an address to a vector type and back. use sui::address; let addr_as_u8: vector = address::to_bytes(@0x1);\nlet addr = address::from_bytes(addr_as_u8); Example: Convert an address into a string. use sui::address;\nuse std::string::String; let addr_as_string: String = address::to_string(@0x1);","breadcrumbs":"Move Basics » Address Type » Conversion","id":"88","title":"Conversion"},"89":{"body":"Address in the Move Reference.","breadcrumbs":"Move Basics » Address Type » Further reading","id":"89","title":"Further reading"},"9":{"body":"There are two most popular IDEs for Move development: VSCode and IntelliJ IDEA. Both of them provide basic features like syntax highlighting and error messages, though they differ in their additional features. Whatever IDE you choose, you'll need to use the terminal to run the Move CLI . IntelliJ Plugin does not support Move 2024 edition, some syntax won't get highlighted.","breadcrumbs":"Before we begin » Set up your IDE » Set up your IDE","id":"9","title":"Set up your IDE"},"90":{"body":"In programming languages expression is a unit of code which returns a value, in Move, almost everything is an expression, - with the sole exception of let statement which is a declaration. In this section, we cover the types of expressions and introduce the concept of scope. Expressions are sequenced with semicolons ;. If there's \"no expression\" after the semicolon, the compiler will insert a unit () - an empty expression.","breadcrumbs":"Move Basics » Expression » Expression","id":"90","title":"Expression"},"91":{"body":"In the Primitive Types section, we introduced the basic types of Move. And to illustrate them, we used literals. A literal is a notation for representing a fixed value in the source code. Literals are used to initialize variables and to pass arguments to functions. Move has the following literals: true and false for boolean values 0, 1, 123123 or other numeric for integer values 0x0, 0x1, 0x123 or other hexadecimal for integer values b\"bytes_vector\" for byte vector values x\"0A\" HEX literal for byte values let b = true; // true is a literal\nlet n = 1000; // 1000 is a literal\nlet h = 0x0A; // 0x0A is a literal\nlet v = b\"hello\"; // b'hello' is a byte vector literal\nlet x = x\"0A\"; // x'0A' is a byte vector literal\nlet c = vector[1, 2, 3]; // vector[] is a vector literal","breadcrumbs":"Move Basics » Expression » Literals","id":"91","title":"Literals"},"92":{"body":"Arithmetic, logical, and bitwise operators are used to perform operations on values. The result of an operation is a value, so operators are also expressions. let sum = 1 + 2; // 1 + 2 is an expression\nlet sum = (1 + 2); // the same expression with parentheses\nlet is_true = true && false; // true && false is an expression\nlet is_true = (true && false); // the same expression with parentheses","breadcrumbs":"Move Basics » Expression » Operators","id":"92","title":"Operators"},"93":{"body":"A block is a sequence of statements and expressions, and it returns the value of the last expression in the block. A block is written as a pair of curly braces {}. A block is an expression, so it can be used anywhere an expression is expected. // block with an empty expression, however, the compiler will\n// insert an empty expression automatically: `let none = { () }`\n// let none = {}; // block with let statements and an expression.\nlet sum = { let a = 1; let b = 2; a + b // last expression is the value of the block\n}; // block is an expression, so it can be used in an expression and\n// doesn't have to be assigned to a variable.\n{ let a = 1; let b = 2; a + b; // not returned - semicolon. // compiler automatically inserts an empty expression `()`\n};","breadcrumbs":"Move Basics » Expression » Blocks","id":"93","title":"Blocks"},"94":{"body":"We go into detail about functions in the Functions section. However, we already used function calls in the previous sections, so it's worth mentioning them here. A function call is an expression that calls a function and returns the value of the last expression in the function body. fun add(a: u8, b: u8): u8 { a + b\n} #[test]\nfun some_other() { let sum = add(1, 2); // add(1, 2) is an expression with type u8\n}","breadcrumbs":"Move Basics » Expression » Function Calls","id":"94","title":"Function Calls"},"95":{"body":"Control flow expressions are used to control the flow of the program. They are also expressions, so they return a value. We cover control flow expressions in the Control Flow section. Here's a very brief overview: // if is an expression, so it returns a value; if there are 2 branches,\n// the types of the branches must match.\nif (bool_expr) expr1 else expr2; // while is an expression, but it returns `()`.\nwhile (bool_expr) { expr; }; // loop is an expression, but returns `()` as well.\nloop { expr; break };","breadcrumbs":"Move Basics » Expression » Control Flow Expressions","id":"95","title":"Control Flow Expressions"},"96":{"body":"Move's type system shines when it comes to defining custom types. User defined types can be custom tailored to the specific needs of the application. Not just on the data level, but also in its behavior. In this section we introduce the struct definition and how to use it.","breadcrumbs":"Move Basics » Struct » Custom Types with Struct","id":"96","title":"Custom Types with Struct"},"97":{"body":"To define a custom type, you can use the struct keyword followed by the name of the type. After the name, you can define the fields of the struct. Each field is defined with the field_name: field_type syntax. Field definitions must be separated by commas. The fields can be of any type, including other structs. Move does not support recursive structs, meaning a struct cannot contain itself as a field. /// A struct representing an artist.\npublic struct Artist { /// The name of the artist. name: String,\n} /// A struct representing a music record.\npublic struct Record { /// The title of the record. title: String, /// The artist of the record. Uses the `Artist` type. artist: Artist, /// The year the record was released. year: u16, /// Whether the record is a debut album. is_debut: bool, /// The edition of the record. edition: Option,\n} In the example above, we define a Record struct with five fields. The title field is of type String, the artist field is of type Artist, the year field is of type u16, the is_debut field is of type bool, and the edition field is of type Option. The edition field is of type Option to represent that the edition is optional. Structs are private by default, meaning they cannot be imported and used outside of the module they are defined in. Their fields are also private and can't be accessed from outside the module. See visibility for more information on different visibility modifiers. Fields of a struct are private and can only be accessed by the module defining the struct. Reading and writing the fields of a struct in other modules is only possible if the module defining the struct provides public functions to access the fields.","breadcrumbs":"Move Basics » Struct » Struct","id":"97","title":"Struct"},"98":{"body":"We described how struct definition works. Now let's see how to initialize a struct and use it. A struct can be initialized using the struct_name { field1: value1, field2: value2, ... } syntax. The fields can be initialized in any order, and all of the fields must be set. let mut artist = Artist { name: b\"The Beatles\".to_string()\n}; In the example above, we create an instance of the Artist struct and set the name field to a string \"The Beatles\". To access the fields of a struct, you can use the . operator followed by the field name. // Access the `name` field of the `Artist` struct.\nlet artist_name = artist.name; // Access a field of the `Artist` struct.\nassert!(artist.name == string::utf8(b\"The Beatles\"), 0); // Mutate the `name` field of the `Artist` struct.\nartist.name = string::utf8(b\"Led Zeppelin\"); // Check that the `name` field has been mutated.\nassert!(artist.name == string::utf8(b\"Led Zeppelin\"), 1); Only module defining the struct can access its fields (both mutably and immutably). So the above code should be in the same module as the Artist struct.","breadcrumbs":"Move Basics » Struct » Create and use an instance","id":"98","title":"Create and use an instance"},"99":{"body":"Structs are non-discardable by default, meaning that the initiated struct value must be used: either stored or unpacked . Unpacking a struct means deconstructing it into its fields. This is done using the let keyword followed by the struct name and the field names. // Unpack the `Artist` struct and create a new variable `name`\n// with the value of the `name` field.\nlet Artist { name } = artist; In the example above we unpack the Artist struct and create a new variable name with the value of the name field. Because the variable is not used, the compiler will raise a warning. To suppress the warning, you can use the underscore _ to indicate that the variable is intentionally unused. // Unpack the `Artist` struct and ignore the `name` field.\nlet Artist { name: _ } = artist;","breadcrumbs":"Move Basics » Struct » Unpacking a struct","id":"99","title":"Unpacking a struct"}},"length":390,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"1":{"tf":1.0},"14":{"tf":2.23606797749979},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":1.7320508075688772},"355":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":24,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.0},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.449489742783178},"102":{"tf":1.4142135623730951},"103":{"tf":2.449489742783178},"104":{"tf":2.8284271247461903},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":3.1622776601683795},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":2.23606797749979},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":2.6457513110645907},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.3166247903554},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":3.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":31,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.23606797749979},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.6457513110645907},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":2.6457513110645907},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.6457513110645907},"271":{"tf":3.7416573867739413},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.0},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.0},"58":{"tf":2.0},"61":{"tf":3.872983346207417},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.4641016151377544},"88":{"tf":2.23606797749979},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.6457513110645907},"319":{"tf":1.7320508075688772},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"366":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.0}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":1.7320508075688772},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":1.7320508075688772},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.7320508075688772}}}},"t":{"df":14,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.58257569495584},"208":{"tf":2.449489742783178},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.0},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":3.872983346207417},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":19,"docs":{"110":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"19":{"tf":1.0},"200":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772},"9":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"350":{"tf":1.0},"351":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"41":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":1.7320508075688772}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.3166247903554},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"93":{"tf":3.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.0},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.449489742783178},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":24,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.23606797749979},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.4142135623730951},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.0},"269":{"tf":2.8284271247461903},"270":{"tf":1.4142135623730951},"271":{"tf":3.4641016151377544},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":2.8284271247461903},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":59,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.4142135623730951},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.23606797749979},"376":{"tf":1.7320508075688772},"377":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.0},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":3.0},"302":{"tf":1.0},"304":{"tf":1.7320508075688772},"336":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.23606797749979},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.3166247903554},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":2.6457513110645907},"76":{"tf":2.23606797749979},"77":{"tf":3.0},"78":{"tf":2.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":2.8284271247461903},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":23,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"65":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.4142135623730951},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":1.7320508075688772},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.23606797749979},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":8,"docs":{"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":2.23606797749979},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":2.6457513110645907},"261":{"tf":1.4142135623730951},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":7,"docs":{"137":{"tf":1.0},"149":{"tf":1.4142135623730951},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.0}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":29,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.605551275463989},"180":{"tf":2.6457513110645907},"181":{"tf":1.7320508075688772},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.4142135623730951},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.0},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.0},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.0},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":1.7320508075688772},"348":{"tf":2.23606797749979},"349":{"tf":1.7320508075688772},"350":{"tf":2.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.0},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.8284271247461903},"55":{"tf":3.0},"56":{"tf":2.23606797749979},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.23606797749979},"58":{"tf":2.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":1.7320508075688772},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.1622776601683795},"208":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"323":{"tf":2.0},"324":{"tf":3.605551275463989},"325":{"tf":1.7320508075688772},"326":{"tf":2.0},"327":{"tf":2.6457513110645907},"328":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":43,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.3166247903554},"108":{"tf":1.7320508075688772},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.6457513110645907},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.4142135623730951},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":34,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.6457513110645907},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":1.0},"288":{"tf":2.6457513110645907},"289":{"tf":1.7320508075688772},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":3.7416573867739413},"295":{"tf":2.23606797749979},"296":{"tf":1.7320508075688772},"297":{"tf":2.0},"298":{"tf":2.23606797749979},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.6457513110645907},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"68":{"tf":2.0}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":2.8284271247461903},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.23606797749979},"345":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":3.0},"274":{"tf":1.4142135623730951},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.449489742783178},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":2.6457513110645907},"332":{"tf":2.449489742783178},"333":{"tf":2.0},"335":{"tf":1.4142135623730951},"35":{"tf":2.0},"372":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"210":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":31,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.4142135623730951}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.4142135623730951},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":1.7320508075688772},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.6457513110645907}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":21,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":2.6457513110645907},"92":{"tf":2.23606797749979},"93":{"tf":3.3166247903554},"94":{"tf":1.7320508075688772},"95":{"tf":2.6457513110645907}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.0},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":2.8284271247461903},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"223":{"tf":1.0},"225":{"tf":2.0},"228":{"tf":1.0},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.449489742783178},"283":{"tf":3.4641016151377544},"284":{"tf":2.449489742783178},"285":{"tf":2.0},"286":{"tf":3.1622776601683795},"287":{"tf":3.0},"288":{"tf":3.0},"289":{"tf":2.449489742783178},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":3.3166247903554},"294":{"tf":4.358898943540674},"295":{"tf":2.23606797749979},"296":{"tf":2.0},"297":{"tf":2.0},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.449489742783178},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"140":{"tf":2.0},"141":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.0},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.23606797749979},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":32,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.23606797749979},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.4142135623730951},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":1.7320508075688772},"239":{"tf":3.0},"240":{"tf":1.0},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":122,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.3166247903554},"159":{"tf":3.0},"160":{"tf":2.23606797749979},"161":{"tf":2.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":3.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":4.0},"239":{"tf":3.872983346207417},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.6457513110645907},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.6457513110645907},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.4142135623730951},"191":{"tf":3.0},"192":{"tf":1.7320508075688772},"193":{"tf":2.8284271247461903},"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":1.7320508075688772},"263":{"tf":2.0},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.0},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":1.7320508075688772},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"43":{"tf":1.7320508075688772}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":61,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.449489742783178},"251":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":2.449489742783178},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772}},"e":{"a":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.0},"111":{"tf":2.0},"112":{"tf":2.23606797749979},"113":{"tf":3.4641016151377544},"114":{"tf":2.23606797749979},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.23606797749979},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"313":{"tf":1.0}},"i":{"df":16,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"5":{"tf":1.7320508075688772},"6":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.7320508075688772},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.4142135623730951},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.23606797749979},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":3,"docs":{"101":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.0},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":55,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.449489742783178},"231":{"tf":1.7320508075688772},"232":{"tf":2.0},"233":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":29,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.0},"209":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.4142135623730951},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"138":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":1.7320508075688772},"295":{"tf":1.0},"366":{"tf":2.6457513110645907},"367":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.0},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.4641016151377544}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":2.8284271247461903},"143":{"tf":2.6457513110645907},"144":{"tf":3.4641016151377544},"145":{"tf":3.7416573867739413},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.0},"7":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"18":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"56":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.605551275463989},"166":{"tf":2.23606797749979},"167":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.449489742783178},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.0},"354":{"tf":2.23606797749979},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":30,"docs":{"179":{"tf":1.0},"206":{"tf":2.449489742783178},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":17,"docs":{"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"169":{"tf":1.0},"171":{"tf":1.0},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.0},"83":{"tf":1.0}}}},"df":135,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.23606797749979},"111":{"tf":3.1622776601683795},"112":{"tf":2.8284271247461903},"113":{"tf":3.605551275463989},"114":{"tf":2.449489742783178},"116":{"tf":3.1622776601683795},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.23606797749979},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"71":{"tf":3.605551275463989},"72":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":146,"docs":{"0":{"tf":2.23606797749979},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.0},"101":{"tf":1.4142135623730951},"103":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"117":{"tf":1.0},"12":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.7320508075688772},"127":{"tf":1.0},"128":{"tf":2.0},"13":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"14":{"tf":2.449489742783178},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"152":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"159":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"167":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":2.23606797749979},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"188":{"tf":2.0},"189":{"tf":1.0},"19":{"tf":2.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.0},"207":{"tf":2.6457513110645907},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.0},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"97":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.4142135623730951},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.0},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.7416573867739413},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.4641016151377544},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.6457513110645907},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"309":{"tf":1.0},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"321":{"tf":1.4142135623730951},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":113,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.449489742783178},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":4.58257569495584},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.0},"219":{"tf":2.0},"220":{"tf":3.4641016151377544},"221":{"tf":2.8284271247461903},"223":{"tf":1.0},"225":{"tf":2.0},"226":{"tf":1.4142135623730951},"227":{"tf":3.0},"228":{"tf":2.449489742783178},"229":{"tf":2.449489742783178},"230":{"tf":1.4142135623730951},"231":{"tf":2.8284271247461903},"233":{"tf":1.7320508075688772},"236":{"tf":1.7320508075688772},"238":{"tf":4.58257569495584},"239":{"tf":4.69041575982343},"240":{"tf":2.449489742783178},"241":{"tf":1.7320508075688772},"242":{"tf":4.123105625617661},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":4.58257569495584},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.7320508075688772},"323":{"tf":2.8284271247461903},"324":{"tf":3.4641016151377544},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.1622776601683795},"363":{"tf":2.0},"364":{"tf":2.449489742783178},"368":{"tf":2.449489742783178},"370":{"tf":2.0},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.0},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":44,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":2.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.449489742783178},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":2.8284271247461903},"85":{"tf":1.0},"92":{"tf":2.23606797749979},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":2.8284271247461903},"129":{"tf":2.23606797749979},"130":{"tf":3.0},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.0},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.449489742783178},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.23606797749979},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.7320508075688772},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.4142135623730951}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.0},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.4142135623730951},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.4142135623730951},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":34,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":2.0},"218":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.0},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.449489742783178},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.0},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":2.8284271247461903},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.8284271247461903},"48":{"tf":2.449489742783178},"49":{"tf":2.0},"5":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":2.8284271247461903},"193":{"tf":1.0},"194":{"tf":3.3166247903554},"195":{"tf":2.6457513110645907},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":18,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.0},"225":{"tf":2.0},"226":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":16,"docs":{"105":{"tf":1.0},"151":{"tf":1.0},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.0},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.449489742783178},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.0},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"113":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.0},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":5,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":1.4142135623730951},"33":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":101,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.6457513110645907},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":4.123105625617661},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":3.3166247903554},"318":{"tf":1.7320508075688772},"319":{"tf":2.8284271247461903},"32":{"tf":3.3166247903554},"320":{"tf":1.7320508075688772},"321":{"tf":1.0},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":1.7320508075688772},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.4142135623730951},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"151":{"tf":1.0},"157":{"tf":1.4142135623730951},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"215":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":53,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.0},"199":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.0},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":1.4142135623730951},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.4142135623730951},"224":{"tf":1.0},"55":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.0},"258":{"tf":1.0},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.605551275463989},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"164":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.4142135623730951},"320":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":2.449489742783178},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.23606797749979},"173":{"tf":2.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":36,"docs":{"103":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.1622776601683795},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":3.605551275463989},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.7320508075688772},"369":{"tf":1.4142135623730951},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.449489742783178},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.4142135623730951},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.4142135623730951},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.4142135623730951},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"30":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":33,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":74,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":2.6457513110645907},"247":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":2.8284271247461903},"132":{"tf":2.8284271247461903},"133":{"tf":1.7320508075688772},"134":{"tf":1.7320508075688772},"135":{"tf":2.449489742783178},"136":{"tf":2.8284271247461903},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":90,"docs":{"100":{"tf":1.0},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":2.6457513110645907},"165":{"tf":3.3166247903554},"166":{"tf":2.449489742783178},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.0},"350":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":2.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":2.0},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":1.4142135623730951},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.8284271247461903}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.449489742783178}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":121,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":1.4142135623730951},"30":{"tf":2.8284271247461903},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.0},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.0},"320":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.23606797749979},"338":{"tf":1.7320508075688772},"339":{"tf":1.0},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.4142135623730951},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"34":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"112":{"tf":1.0},"124":{"tf":1.4142135623730951},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.3166247903554},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.4641016151377544},"200":{"tf":2.0},"201":{"tf":3.4641016151377544},"202":{"tf":3.1622776601683795},"203":{"tf":3.605551275463989},"204":{"tf":3.0},"205":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":5.0},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":21,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.0},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.4142135623730951},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.0},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":3.872983346207417},"261":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.0},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.6457513110645907},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.0},"42":{"tf":4.358898943540674},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.0},"66":{"tf":2.6457513110645907},"67":{"tf":2.23606797749979},"68":{"tf":4.242640687119285}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":2.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":155,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":1.7320508075688772},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.0},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.0},"193":{"tf":2.6457513110645907},"194":{"tf":4.47213595499958},"195":{"tf":3.1622776601683795},"197":{"tf":2.449489742783178},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.23606797749979},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.0},"286":{"tf":1.0},"287":{"tf":2.23606797749979},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.6457513110645907},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.23606797749979},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":2.6457513110645907},"83":{"tf":2.449489742783178},"84":{"tf":1.4142135623730951},"85":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":2.23606797749979},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":42,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.23606797749979},"250":{"tf":3.3166247903554},"251":{"tf":1.7320508075688772},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.7416573867739413},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.449489742783178}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":21,"docs":{"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.0},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":12,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":228,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.7320508075688772},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"137":{"tf":2.6457513110645907},"138":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.23606797749979},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.6457513110645907},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.23606797749979},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.23606797749979},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"124":{"tf":3.872983346207417},"125":{"tf":2.449489742783178},"126":{"tf":2.6457513110645907},"127":{"tf":1.0},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.605551275463989},"364":{"tf":1.7320508075688772},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.0},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.23606797749979},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":1.7320508075688772},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.4142135623730951},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":13,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":3.1622776601683795},"308":{"tf":2.0},"309":{"tf":1.7320508075688772},"310":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":9,"docs":{"15":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"breadcrumbs":{"root":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":1,"docs":{"51":{"tf":1.0}}},"df":0,"docs":{}},"1":{"5":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"3":{"6":{"2":{"9":{"9":{"7":{"4":{"5":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":58,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.4142135623730951},"141":{"tf":2.6457513110645907},"143":{"tf":2.449489742783178},"144":{"tf":2.0},"145":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"147":{"tf":2.23606797749979},"148":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.0},"161":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"260":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"349":{"tf":1.7320508075688772},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.4142135623730951},"380":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"73":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.0},"98":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{".":{".":{"0":{"0":{"0":{"2":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"1":{"df":2,"docs":{"33":{"tf":1.0},"61":{"tf":1.0}}},"2":{"df":2,"docs":{"33":{"tf":1.0},"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"df":1,"docs":{"284":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"1":{"df":1,"docs":{"344":{"tf":1.0}}},"9":{"1":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"5":{"5":{"5":{"0":{"6":{"a":{"d":{"8":{"1":{"4":{"9":{"2":{"0":{"a":{"d":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"3":{"2":{"0":{"4":{"5":{"df":0,"docs":{},"f":{"9":{"0":{"7":{"8":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"9":{"a":{"7":{"2":{"df":0,"docs":{},"f":{"4":{"c":{"df":0,"docs":{},"f":{"2":{"5":{"3":{"a":{"1":{"df":0,"docs":{},"e":{"6":{"2":{"7":{"4":{"1":{"5":{"7":{"3":{"8":{"0":{"a":{"1":{"df":7,"docs":{"33":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"36":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":3.872983346207417},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":7,"docs":{"18":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.23606797749979},"49":{"tf":1.0},"72":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"f":{"7":{"8":{"5":{"6":{"df":0,"docs":{},"e":{"1":{"3":{"b":{"2":{"7":{"df":0,"docs":{},"e":{"5":{"a":{"0":{"2":{"5":{"1":{"1":{"2":{"df":0,"docs":{},"f":{"3":{"6":{"1":{"3":{"7":{"0":{"df":0,"docs":{},"f":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"2":{"c":{"2":{"6":{"5":{"9":{"c":{"b":{"0":{"0":{"2":{"3":{"df":0,"docs":{},"f":{"1":{"df":0,"docs":{},"e":{"9":{"9":{"a":{"8":{"a":{"8":{"4":{"d":{"1":{"6":{"5":{"2":{"df":0,"docs":{},"f":{"3":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"116":{"tf":1.0},"119":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"51":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.0},"91":{"tf":1.0}}},"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":3,"docs":{"42":{"tf":1.7320508075688772},"43":{"tf":2.0},"44":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"<":{"0":{"df":0,"docs":{},"x":{"2":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"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":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"344":{"tf":1.0}}},"df":4,"docs":{"116":{"tf":1.0},"338":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"4":{"0":{"3":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}},"6":{"8":{"d":{".":{".":{"2":{"9":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"42":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":4,"docs":{"34":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"41":{"tf":1.0}},"e":{"a":{"1":{"3":{"0":{"3":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"6":{"5":{"df":0,"docs":{},"f":{"c":{"3":{"7":{"0":{"9":{"b":{"c":{"0":{"df":0,"docs":{},"f":{"b":{"7":{"0":{"a":{"3":{"0":{"3":{"5":{"df":0,"docs":{},"f":{"d":{"d":{"2":{"d":{"5":{"3":{"d":{"b":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"3":{"3":{"df":0,"docs":{},"e":{"0":{"2":{"6":{"a":{"5":{"0":{"a":{"7":{"4":{"2":{"c":{"df":0,"docs":{},"e":{"0":{"d":{"df":4,"docs":{"31":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":1,"docs":{"386":{"tf":1.0}}},"6":{"df":3,"docs":{"274":{"tf":1.4142135623730951},"386":{"tf":1.0},"61":{"tf":1.0}}},"7":{"4":{"9":{"7":{"3":{"c":{"4":{"df":0,"docs":{},"e":{"a":{"2":{"df":0,"docs":{},"e":{"7":{"8":{"d":{"c":{"4":{"0":{"9":{"df":0,"docs":{},"f":{"6":{"0":{"4":{"8":{"1":{"df":0,"docs":{},"e":{"2":{"3":{"7":{"6":{"1":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"6":{"8":{"a":{"4":{"8":{"1":{"5":{"6":{"d":{"df":0,"docs":{},"f":{"9":{"3":{"a":{"9":{"3":{"df":0,"docs":{},"f":{"b":{"c":{"c":{"df":0,"docs":{},"e":{"b":{"7":{"7":{"d":{"1":{"c":{"a":{"c":{"d":{"df":0,"docs":{},"f":{"6":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"386":{"tf":1.0}}},"a":{"1":{"1":{"c":{"df":7,"docs":{"148":{"tf":1.0},"238":{"tf":1.4142135623730951},"271":{"tf":1.0},"51":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"67":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":2,"docs":{"51":{"tf":1.0},"58":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"30":{"tf":1.4142135623730951},"47":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"87":{"tf":1.0}},"e":{"5":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"5":{"c":{"d":{"2":{"2":{"1":{"a":{"8":{"1":{"c":{"3":{"d":{"6":{"df":0,"docs":{},"e":{"2":{"2":{"b":{"9":{"df":0,"docs":{},"e":{"6":{"7":{"0":{"d":{"d":{"df":0,"docs":{},"f":{"9":{"9":{"0":{"0":{"4":{"d":{"7":{"1":{"d":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"f":{"7":{"6":{"9":{"b":{"0":{"3":{"1":{"2":{"b":{"6":{"8":{"c":{"7":{"c":{"4":{"8":{"7":{"2":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"d":{"df":0,"docs":{},"e":{"b":{"8":{"7":{"4":{"a":{"8":{"d":{"7":{"df":0,"docs":{},"e":{"a":{"d":{"3":{"2":{"8":{"df":0,"docs":{},"e":{"9":{"df":0,"docs":{},"f":{"2":{"d":{"d":{"2":{"a":{"d":{"8":{"d":{"2":{"5":{"3":{"8":{"3":{"a":{"b":{"4":{"0":{"7":{"8":{"1":{"a":{"5":{"df":0,"docs":{},"f":{"1":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"7":{"5":{"6":{"0":{"0":{"9":{"7":{"3":{"b":{"0":{"2":{"b":{"c":{"4":{"df":1,"docs":{"42":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":3,"docs":{"284":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{".":{"0":{"0":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{".":{"0":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"5":{"0":{"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"37":{"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":{"df":1,"docs":{"32":{"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":{"df":1,"docs":{"31":{"tf":1.0}}},"df":6,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"290":{"tf":1.0},"33":{"tf":1.0},"380":{"tf":1.0},"42":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.4142135623730951}},"u":{"3":{"2":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"204":{"tf":1.0}}},"2":{"4":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"4":{"0":{"4":{"4":{"0":{"0":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"6":{"2":{"8":{"0":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"^":{"9":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"143":{"tf":2.8284271247461903},"146":{"tf":2.449489742783178},"151":{"tf":1.0},"164":{"tf":1.4142135623730951},"175":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"1":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}},"2":{"1":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"3":{"1":{"2":{"3":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"136":{"tf":1.0}}},"5":{"5":{"8":{"0":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}},"6":{"df":1,"docs":{"82":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"8":{"4":{"4":{"6":{"7":{"4":{"4":{"0":{"7":{"3":{"7":{"0":{"9":{"5":{"5":{"1":{"6":{"1":{"5":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"2":{"2":{"8":{"0":{"0":{"df":1,"docs":{"44":{"tf":1.0}}},"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":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"285":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.4142135623730951},"149":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"186":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"23":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.0},"284":{"tf":1.4142135623730951},"296":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"31":{"tf":1.0},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"36":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"42":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"98":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"0":{"df":1,"docs":{"150":{"tf":1.0}}},"1":{"8":{"df":1,"docs":{"1":{"tf":1.0}}},"9":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"df":5,"docs":{"1":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0}}},"4":{".":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":17,"docs":{"1":{"tf":1.0},"14":{"tf":2.6457513110645907},"171":{"tf":1.0},"2":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"9":{"tf":1.0}}},"df":0,"docs":{}},"4":{"8":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":5,"docs":{"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"355":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"42":{"tf":2.0}}},"3":{"1":{"8":{"0":{"0":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"9":{"8":{"8":{"0":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":2.23606797749979}}},"4":{"df":2,"docs":{"272":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"5":{"5":{"df":1,"docs":{"84":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"6":{"df":2,"docs":{"342":{"tf":1.0},"82":{"tf":1.4142135623730951}},"k":{"b":{"df":1,"docs":{"368":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"161":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":24,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"130":{"tf":1.0},"146":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"204":{"tf":1.0},"277":{"tf":1.0},"296":{"tf":1.4142135623730951},"30":{"tf":1.0},"302":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"375":{"tf":2.0},"84":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"3":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"2":{"df":6,"docs":{"344":{"tf":1.0},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"82":{"tf":1.0},"87":{"tf":1.4142135623730951},"88":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"125":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"277":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.0},"91":{"tf":1.0}}},"4":{"0":{"df":2,"docs":{"124":{"tf":1.0},"125":{"tf":1.0}}},"1":{"1":{"df":1,"docs":{"34":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":5,"docs":{"287":{"tf":1.0},"345":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":2.0},"84":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"3":{"df":1,"docs":{"80":{"tf":1.0}}},"df":5,"docs":{"103":{"tf":1.0},"138":{"tf":1.0},"183":{"tf":1.0},"201":{"tf":1.4142135623730951},"31":{"tf":1.0}}},"5":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}},"df":8,"docs":{"136":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"147":{"tf":1.4142135623730951},"151":{"tf":1.0},"76":{"tf":1.0}}},"6":{"4":{"df":3,"docs":{"30":{"tf":1.0},"61":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"7":{"2":{"1":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"d":{"4":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"9":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"4":{"c":{"d":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"33":{"tf":1.0}},"s":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"3":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"v":{"8":{"df":0,"docs":{},"g":{"7":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"f":{"3":{"df":0,"docs":{},"s":{"a":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"c":{"5":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"a":{"4":{"1":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"w":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"7":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"d":{"a":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"m":{"4":{"7":{"df":0,"docs":{},"g":{"df":0,"docs":{},"y":{"b":{"3":{"3":{"df":0,"docs":{},"p":{"b":{"4":{"df":0,"docs":{},"q":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"2":{"df":0,"docs":{},"z":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"7":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"c":{"df":2,"docs":{"34":{"tf":1.4142135623730951},"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"5":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"9":{"df":0,"docs":{},"q":{"df":0,"docs":{},"v":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"7":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"36":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951}},"y":{"6":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"d":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":0,"docs":{},"j":{"2":{"df":0,"docs":{},"h":{"d":{"a":{"df":0,"docs":{},"j":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"f":{"df":0,"docs":{},"v":{"df":0,"docs":{},"z":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"7":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"34":{"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":{}}},"9":{"0":{"df":1,"docs":{"164":{"tf":1.0}}},"7":{"8":{"1":{"2":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"8":{"0":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"161":{"tf":1.4142135623730951},"187":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":2.449489742783178},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"28":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"a":{"1":{"df":1,"docs":{"47":{"tf":1.0}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":52,"docs":{"1":{"tf":1.0},"101":{"tf":2.8284271247461903},"102":{"tf":2.0},"103":{"tf":2.8284271247461903},"104":{"tf":3.0},"105":{"tf":2.23606797749979},"106":{"tf":1.4142135623730951},"107":{"tf":3.4641016151377544},"108":{"tf":2.23606797749979},"109":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"179":{"tf":2.6457513110645907},"180":{"tf":2.449489742783178},"181":{"tf":2.23606797749979},"182":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":3.3166247903554},"197":{"tf":1.0},"217":{"tf":1.0},"230":{"tf":3.0},"231":{"tf":2.0},"232":{"tf":2.23606797749979},"233":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":2.23606797749979},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"247":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"253":{"tf":1.0},"257":{"tf":2.0},"258":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.4142135623730951},"385":{"tf":3.4641016151377544},"69":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":24,"docs":{"137":{"tf":1.7320508075688772},"138":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":3.3166247903554},"155":{"tf":2.8284271247461903},"156":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":2.8284271247461903},"237":{"tf":1.7320508075688772},"294":{"tf":1.0},"314":{"tf":1.0},"332":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"366":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":3.4641016151377544},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"83":{"tf":1.0}}}},"v":{"df":24,"docs":{"129":{"tf":1.0},"154":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"201":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"308":{"tf":1.0},"328":{"tf":1.0},"349":{"tf":1.0},"373":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"387":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"366":{"tf":1.0}}}}},"c":{"c":{".":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"274":{"tf":1.0},"385":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":50,"docs":{"1":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.7320508075688772},"161":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.7320508075688772},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":2.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"319":{"tf":1.0},"331":{"tf":1.0},"384":{"tf":1.0},"66":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"284":{"tf":2.0},"295":{"tf":2.6457513110645907}}},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.6457513110645907}}}}}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"213":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}}},"df":32,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.7320508075688772},"220":{"tf":1.0},"221":{"tf":1.4142135623730951},"225":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.0},"258":{"tf":1.0},"269":{"tf":3.3166247903554},"270":{"tf":1.0},"271":{"tf":1.0},"30":{"tf":2.8284271247461903},"31":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.4641016151377544},"46":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":3.0},"64":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"110":{"tf":1.0},"264":{"tf":1.0},"42":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"t":{"df":4,"docs":{"213":{"tf":1.0},"250":{"tf":1.0},"300":{"tf":1.0},"47":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"319":{"tf":1.4142135623730951},"42":{"tf":1.0}}}},"v":{"df":4,"docs":{"0":{"tf":1.0},"30":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"31":{"tf":1.0},"323":{"tf":1.0},"364":{"tf":1.4142135623730951},"42":{"tf":2.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}},"d":{"(":{"1":{"df":2,"docs":{"158":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"a":{"df":3,"docs":{"158":{"tf":1.0},"381":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":35,"docs":{"112":{"tf":1.0},"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"184":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"258":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"284":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"360":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":2.8284271247461903},"44":{"tf":1.0},"45":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"289":{"tf":1.0},"326":{"tf":1.0},"331":{"tf":1.0},"83":{"tf":1.4142135623730951},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"136":{"tf":1.0},"175":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"250":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"355":{"tf":1.0}}}}}}},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":2,"docs":{"344":{"tf":1.0},"88":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"2":{"5":{"6":{"(":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"2":{"5":{"6":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"u":{"2":{"5":{"6":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"1":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.4142135623730951}}}}}},"df":65,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":2.0},"118":{"tf":1.0},"119":{"tf":2.0},"148":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"181":{"tf":1.0},"19":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":3.0},"242":{"tf":1.0},"247":{"tf":1.0},"249":{"tf":1.7320508075688772},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"257":{"tf":2.0},"260":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":2.8284271247461903},"271":{"tf":3.872983346207417},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.0},"335":{"tf":1.4142135623730951},"338":{"tf":2.0},"34":{"tf":1.7320508075688772},"344":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"373":{"tf":1.0},"386":{"tf":3.3166247903554},"39":{"tf":2.0},"41":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":2.0},"57":{"tf":2.23606797749979},"58":{"tf":2.23606797749979},"61":{"tf":4.123105625617661},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":3.1622776601683795},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"87":{"tf":3.7416573867739413},"88":{"tf":2.449489742783178},"89":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}}}}}},"df":14,"docs":{"115":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"192":{"tf":1.0},"235":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.0},"296":{"tf":1.0},"333":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"383":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"319":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"319":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"238":{"tf":3.3166247903554},"239":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":2.23606797749979},"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":2.6457513110645907},"319":{"tf":2.0},"363":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":97,"docs":{"142":{"tf":1.4142135623730951},"189":{"tf":1.0},"193":{"tf":1.0},"199":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"217":{"tf":1.0},"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"222":{"tf":1.0},"230":{"tf":1.0},"288":{"tf":1.0},"370":{"tf":1.0}}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"276":{"tf":1.0},"286":{"tf":1.4142135623730951},"77":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"32":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}},"df":3,"docs":{"161":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"350":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"68":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"63":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"224":{"tf":1.0},"323":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"226":{"tf":1.0}}}}}}}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"207":{"tf":1.0}}}},"l":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"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":2,"docs":{"273":{"tf":1.0},"63":{"tf":1.0}}}}}}}}},"i":{"a":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":2.0},"135":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"284":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0},"386":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.4142135623730951},"73":{"tf":1.0}},"s":{"df":9,"docs":{"165":{"tf":2.449489742783178},"166":{"tf":1.7320508075688772},"295":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"54":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0}}}},"c":{"df":8,"docs":{"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"220":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"e":{"'":{"df":1,"docs":{"218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":66,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"104":{"tf":2.0},"107":{"tf":1.7320508075688772},"110":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"124":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"204":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"256":{"tf":1.4142135623730951},"258":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"291":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"308":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"347":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"364":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"385":{"tf":2.449489742783178},"40":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":17,"docs":{"110":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"230":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"217":{"tf":1.0}},"n":{"df":8,"docs":{"1":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"22":{"tf":1.0},"254":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"38":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"144":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":3,"docs":{"114":{"tf":1.0},"217":{"tf":1.0},"84":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"290":{"tf":1.0},"37":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}}}},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"124":{"tf":1.0},"191":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"82":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":26,"docs":{"111":{"tf":1.0},"116":{"tf":1.7320508075688772},"136":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"190":{"tf":1.0},"192":{"tf":1.0},"210":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"242":{"tf":1.0},"245":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"293":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"132":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":2.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"319":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"285":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"138":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1":{"tf":1.0},"347":{"tf":1.4142135623730951}}},"p":{"df":2,"docs":{"277":{"tf":1.0},"319":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":6,"docs":{"384":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951},"61":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"319":{"tf":1.0}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1":{"tf":1.7320508075688772},"121":{"tf":1.0},"129":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"291":{"tf":2.0},"297":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.7320508075688772},"321":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.0},"96":{"tf":1.0}}},"df":6,"docs":{"153":{"tf":1.4142135623730951},"207":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":28,"docs":{"155":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"254":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"307":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.4142135623730951},"332":{"tf":1.0},"355":{"tf":1.0},"358":{"tf":1.0},"369":{"tf":2.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1":{"tf":1.4142135623730951},"105":{"tf":1.0},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"325":{"tf":1.0},"37":{"tf":1.0},"84":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"123":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"101":{"tf":1.0},"97":{"tf":3.0},"98":{"tf":2.6457513110645907},"99":{"tf":2.6457513110645907}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":6,"docs":{"118":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"12":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"!":{"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"319":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"186":{"tf":1.0},"187":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"148":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"f":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"164":{"tf":1.0},"165":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"i":{"df":1,"docs":{"141":{"tf":1.0}},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"0":{"df":1,"docs":{"147":{"tf":1.0}}},"1":{"df":1,"docs":{"147":{"tf":1.0}}},"5":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"a":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"b":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"1":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"1":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"318":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"166":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"&":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}},"1":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"158":{"tf":1.0},"201":{"tf":1.4142135623730951}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"308":{"tf":1.0},"349":{"tf":1.0}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"347":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"1":{"0":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":1,"docs":{"143":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"x":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"376":{"tf":2.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"141":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.0},"157":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":2.0}}}},"t":{"df":15,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":4.795831523312719},"208":{"tf":2.6457513110645907},"209":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"316":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"141":{"tf":2.0},"150":{"tf":1.0},"255":{"tf":1.0},"42":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"93":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"346":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":18,"docs":{"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"231":{"tf":1.0},"278":{"tf":1.7320508075688772},"294":{"tf":1.0},"298":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"326":{"tf":1.0},"327":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"282":{"tf":2.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.8284271247461903},"285":{"tf":2.6457513110645907},"286":{"tf":1.4142135623730951},"287":{"tf":2.23606797749979},"288":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.0},"368":{"tf":1.0}}},"k":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"107":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"389":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":2.0},"204":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"360":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":14,"docs":{"217":{"tf":1.0},"225":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":2.23606797749979},"317":{"tf":1.4142135623730951},"318":{"tf":2.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"389":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":16,"docs":{"115":{"tf":1.0},"131":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.7320508075688772},"177":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"32":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.4142135623730951},"41":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":26,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.7320508075688772},"236":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"4":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"165":{"tf":1.4142135623730951},"282":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"8":{"a":{"5":{"df":0,"docs":{},"j":{"6":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"x":{"2":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"3":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"6":{"6":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"8":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"b":{"\"":{"\\":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"284":{"tf":2.23606797749979},"286":{"tf":1.0},"295":{"tf":2.0}}}}}},"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},",":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.0},"359":{"tf":1.4142135623730951},"91":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"161":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"287":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"284":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"324":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"o":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"{":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}},".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"47":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"242":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"88":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{".":{"a":{"d":{"d":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"b":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"[":{"b":{"\"":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"299":{"tf":1.4142135623730951}}}}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"300":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"286":{"tf":1.0},"300":{"tf":4.0},"301":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"278":{"tf":1.0},"308":{"tf":1.7320508075688772},"31":{"tf":2.23606797749979},"37":{"tf":1.7320508075688772},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}},"e":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{">":{"'":{"df":1,"docs":{"308":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"308":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"243":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":12,"docs":{"13":{"tf":1.0},"193":{"tf":1.0},"229":{"tf":1.4142135623730951},"275":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"291":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"70":{"tf":1.0},"79":{"tf":1.0}}},"i":{"c":{"df":150,"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.4142135623730951},"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.4142135623730951},"118":{"tf":1.7320508075688772},"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},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"259":{"tf":1.4142135623730951},"26":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"69":{"tf":2.23606797749979},"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},"9":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"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}}},"df":0,"docs":{}}}},"c":{"df":13,"docs":{"118":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":2.0},"350":{"tf":1.4142135623730951},"351":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"u":{"6":{"4":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"347":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"348":{"tf":1.4142135623730951}}}}}}}},"u":{"8":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"x":{"\"":{"0":{"0":{"df":1,"docs":{"349":{"tf":1.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"1":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":3,"docs":{"347":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"118":{"tf":1.0},"166":{"tf":1.7320508075688772},"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"344":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":16,"docs":{"107":{"tf":1.4142135623730951},"136":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"176":{"tf":2.8284271247461903},"179":{"tf":2.23606797749979},"257":{"tf":1.0},"381":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"47":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"98":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"341":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":13,"docs":{"183":{"tf":1.0},"207":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"286":{"tf":1.7320508075688772},"294":{"tf":1.0},"49":{"tf":1.0}}}}},"df":10,"docs":{"142":{"tf":1.0},"151":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":26,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.0},"2":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"288":{"tf":1.0},"3":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.7320508075688772},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"145":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"308":{"tf":1.0},"322":{"tf":1.0},"373":{"tf":1.0},"85":{"tf":1.0},"96":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"230":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"206":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"172":{"tf":1.0},"197":{"tf":1.0}}}},"w":{"df":11,"docs":{"140":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"239":{"tf":1.4142135623730951},"3":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":1.4142135623730951},"7":{"tf":1.0},"72":{"tf":1.0}}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"293":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"157":{"tf":1.0},"280":{"tf":1.0},"362":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"1":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.0},"288":{"tf":1.0},"373":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.4142135623730951},"220":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"352":{"tf":1.0},"386":{"tf":1.0},"71":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"40":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"369":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"3":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.0},"351":{"tf":1.4142135623730951},"4":{"tf":2.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.4142135623730951}}},"df":1,"docs":{"7":{"tf":1.0}}},"t":{"df":7,"docs":{"118":{"tf":1.0},"31":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0},"82":{"tf":2.8284271247461903}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"83":{"tf":1.0},"92":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"y":{"8":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"b":{"b":{"df":0,"docs":{},"q":{"a":{"6":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"w":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"8":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"326":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"45":{"tf":1.4142135623730951},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.7320508075688772},"68":{"tf":1.0},"69":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1":{"tf":1.0},"131":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":2.0},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"176":{"tf":3.4641016151377544},"254":{"tf":1.0},"35":{"tf":1.0},"369":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":2.449489742783178},"78":{"tf":1.0},"93":{"tf":3.1622776601683795}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"64":{"tf":1.0}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"383":{"tf":1.0}}}},"b":{"df":5,"docs":{"210":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"159":{"tf":1.4142135623730951},"186":{"tf":1.0},"271":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{":":{":":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"324":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"_":{"2":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"379":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"114":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"379":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"332":{"tf":1.0}}}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"356":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"164":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{":":{":":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"158":{"tf":1.0},"160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"184":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.4142135623730951}},"e":{":":{":":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"112":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"113":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"113":{"tf":1.0},"114":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"112":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"317":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"113":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"148":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"264":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"376":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"201":{"tf":1.0},"204":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"129":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"`":{"df":1,"docs":{"276":{"tf":1.0}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":15,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"101":{"tf":1.0},"118":{"tf":1.0},"14":{"tf":1.0},"160":{"tf":1.0},"171":{"tf":1.0},"202":{"tf":1.0},"276":{"tf":1.7320508075688772},"317":{"tf":1.0},"357":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"388":{"tf":1.4142135623730951},"389":{"tf":2.0},"72":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"l":{">":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"108":{"tf":1.0},"124":{"tf":1.0},"147":{"tf":1.0},"156":{"tf":1.4142135623730951},"181":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":2.23606797749979},"247":{"tf":1.0},"285":{"tf":2.0},"295":{"tf":1.0},"376":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"86":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":11,"docs":{"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"177":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"79":{"tf":1.0},"81":{"tf":2.23606797749979},"82":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":5,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0}}}}}},"`":{"df":1,"docs":{"130":{"tf":1.0}}},"df":14,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":1.7320508075688772},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.7320508075688772},"295":{"tf":1.0},"299":{"tf":2.23606797749979},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.0},"360":{"tf":2.6457513110645907},"387":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":22,"docs":{"1":{"tf":1.7320508075688772},"114":{"tf":1.0},"115":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"272":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"370":{"tf":1.0},"72":{"tf":1.4142135623730951},"82":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"138":{"tf":1.0},"273":{"tf":1.0}}}}},"df":1,"docs":{"283":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.4142135623730951},"191":{"tf":1.0},"299":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"141":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.6457513110645907},"146":{"tf":1.7320508075688772},"28":{"tf":1.0},"362":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"95":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}}},"o":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"32":{"tf":2.23606797749979},"33":{"tf":1.4142135623730951},"38":{"tf":1.0},"42":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"22":{"tf":2.6457513110645907},"23":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"29":{"tf":2.449489742783178},"298":{"tf":1.0},"32":{"tf":1.7320508075688772},"325":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"58":{"tf":1.0},"7":{"tf":1.7320508075688772}}},"df":0,"docs":{},"t":{"df":17,"docs":{"104":{"tf":1.0},"124":{"tf":1.0},"131":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"155":{"tf":1.0},"16":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"67":{"tf":1.7320508075688772},"79":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"308":{"tf":1.0}}}},"y":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"253":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.4142135623730951},"256":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.7320508075688772},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":20,"docs":{"132":{"tf":3.0},"134":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"137":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"249":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":2.449489742783178},"345":{"tf":1.0},"347":{"tf":2.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"61":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"91":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"132":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"213":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"a":{"d":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"238":{"tf":1.0},"239":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":65,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.0},"173":{"tf":1.0},"175":{"tf":1.0},"185":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"260":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"313":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"347":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.7320508075688772},"362":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":1.0},"42":{"tf":3.3166247903554},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"47":{"tf":1.0},"48":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"87":{"tf":1.0},"94":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"154":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"237":{"tf":1.4142135623730951},"347":{"tf":1.0},"373":{"tf":2.0},"375":{"tf":2.23606797749979},"376":{"tf":1.4142135623730951}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":21,"docs":{"121":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"249":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"331":{"tf":1.0},"362":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"337":{"tf":1.0},"341":{"tf":1.7320508075688772},"351":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"121":{"tf":1.0},"185":{"tf":1.0},"213":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.449489742783178},"269":{"tf":3.1622776601683795},"270":{"tf":2.0},"271":{"tf":3.7416573867739413},"28":{"tf":1.0},"287":{"tf":1.4142135623730951},"319":{"tf":1.4142135623730951},"382":{"tf":1.0}}}},"c":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"269":{"tf":1.0},"382":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"188":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"185":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}},"df":6,"docs":{"183":{"tf":2.0},"184":{"tf":3.1622776601683795},"185":{"tf":2.449489742783178},"186":{"tf":2.0},"187":{"tf":2.449489742783178},"188":{"tf":2.449489742783178}}},"df":1,"docs":{"207":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"297":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"258":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":2.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"300":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":46,"docs":{"131":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":2.0},"252":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"328":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"61":{"tf":1.0},"67":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":3,"docs":{"164":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.7320508075688772}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"334":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":1,"docs":{"113":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"319":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"22":{"tf":1.0}}},"df":7,"docs":{"176":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"239":{"tf":1.0},"242":{"tf":1.0},"288":{"tf":1.0},"387":{"tf":2.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"102":{"tf":1.0},"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"203":{"tf":1.0},"253":{"tf":1.4142135623730951},"264":{"tf":1.0},"267":{"tf":1.0},"291":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"366":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.0},"295":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":2.0},"45":{"tf":1.0},"48":{"tf":1.4142135623730951},"53":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"210":{"tf":1.7320508075688772},"224":{"tf":2.0},"225":{"tf":1.0}}}}}}},"n":{"c":{"df":2,"docs":{"1":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":36,"docs":{"1":{"tf":1.0},"14":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":2.0},"165":{"tf":1.0},"174":{"tf":1.0},"186":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"225":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"258":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"284":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"34":{"tf":1.0},"352":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":2.0},"362":{"tf":3.1622776601683795},"364":{"tf":1.4142135623730951},"366":{"tf":1.0},"37":{"tf":2.0},"39":{"tf":1.0},"42":{"tf":2.0},"65":{"tf":1.0},"68":{"tf":2.6457513110645907}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"150":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"101":{"tf":1.4142135623730951},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"118":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"18":{"tf":1.0},"185":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"22":{"tf":1.0},"229":{"tf":2.0},"230":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"266":{"tf":1.0},"267":{"tf":1.0},"275":{"tf":1.0},"321":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":2.0},"46":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":16,"docs":{"111":{"tf":2.0},"112":{"tf":1.4142135623730951},"113":{"tf":2.449489742783178},"114":{"tf":1.0},"138":{"tf":2.23606797749979},"220":{"tf":1.0},"251":{"tf":1.4142135623730951},"258":{"tf":1.0},"284":{"tf":3.4641016151377544},"285":{"tf":1.7320508075688772},"286":{"tf":2.0},"287":{"tf":1.4142135623730951},"288":{"tf":2.449489742783178},"295":{"tf":2.6457513110645907},"30":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}},".":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"284":{"tf":2.23606797749979},"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":2.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"114":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"177":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":27,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"197":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":3.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"284":{"tf":2.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"30":{"tf":1.0},"300":{"tf":1.0},"31":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"323":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"209":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"228":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"6":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"317":{"tf":2.0},"324":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"135":{"tf":1.0},"217":{"tf":1.0}}}}},"k":{"df":1,"docs":{"387":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"324":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"180":{"tf":1.0},"295":{"tf":1.0}}},"r":{"df":3,"docs":{"129":{"tf":1.0},"207":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":16,"docs":{"15":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"354":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.0},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1":{"tf":1.0},"15":{"tf":1.7320508075688772},"30":{"tf":2.0},"31":{"tf":2.6457513110645907},"32":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"274":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"274":{"tf":3.1622776601683795},"335":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"180":{"tf":1.0},"210":{"tf":1.0}}}}}},"o":{"d":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"151":{"tf":1.0}}}},"df":0,"docs":{}},"df":65,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"140":{"tf":2.0},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"154":{"tf":2.0},"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.7320508075688772},"195":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.7320508075688772},"22":{"tf":1.0},"24":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":2.0},"286":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"340":{"tf":1.7320508075688772},"347":{"tf":1.0},"349":{"tf":1.0},"354":{"tf":1.4142135623730951},"359":{"tf":1.0},"363":{"tf":1.7320508075688772},"373":{"tf":1.7320508075688772},"375":{"tf":2.449489742783178},"376":{"tf":1.7320508075688772},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"57":{"tf":1.4142135623730951},"67":{"tf":1.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}},":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"d":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}}}},"df":9,"docs":{"116":{"tf":1.0},"184":{"tf":1.0},"194":{"tf":3.1622776601683795},"31":{"tf":3.1622776601683795},"32":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"37":{"tf":1.0},"42":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.4142135623730951},"117":{"tf":1.0},"123":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":2.449489742783178},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":1.7320508075688772},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":2.6457513110645907},"299":{"tf":3.1622776601683795},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.0},"336":{"tf":3.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"294":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"294":{"tf":1.0},"368":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"139":{"tf":1.0},"183":{"tf":1.0},"204":{"tf":1.0},"218":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0},"96":{"tf":1.0}}},"m":{"a":{"df":4,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"97":{"tf":1.0}},"n":{"d":{"df":22,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"202":{"tf":1.4142135623730951},"23":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.7320508075688772},"31":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.7320508075688772},"354":{"tf":1.0},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":2.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"67":{"tf":3.4641016151377544},"68":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"19":{"tf":2.0},"20":{"tf":1.0},"22":{"tf":1.0},"75":{"tf":3.0},"76":{"tf":2.6457513110645907},"77":{"tf":3.3166247903554},"78":{"tf":2.449489742783178}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"11":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"274":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"328":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"295":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.7320508075688772},"389":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"158":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"296":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"192":{"tf":1.0},"279":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"220":{"tf":1.0}}}},"t":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":39,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"19":{"tf":1.0},"192":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"22":{"tf":3.0},"23":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"53":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"207":{"tf":1.0},"217":{"tf":1.0},"46":{"tf":1.0}}},"x":{"df":13,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"40":{"tf":1.0},"44":{"tf":1.0},"84":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"320":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"0":{"tf":1.0},"206":{"tf":1.0},"351":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}}}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":44,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"172":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.0},"211":{"tf":1.0},"217":{"tf":1.0},"22":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":2.23606797749979},"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.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"240":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"308":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"224":{"tf":1.7320508075688772},"225":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"141":{"tf":2.0},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"155":{"tf":1.7320508075688772},"203":{"tf":1.0},"376":{"tf":2.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":6,"docs":{"151":{"tf":2.0},"239":{"tf":4.123105625617661},"242":{"tf":3.3166247903554},"246":{"tf":2.6457513110645907},"30":{"tf":1.0},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"319":{"tf":1.0},"364":{"tf":2.449489742783178},"366":{"tf":1.0}}}},"v":{"1":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":2.0},"165":{"tf":1.4142135623730951},"224":{"tf":1.0},"385":{"tf":1.0},"55":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"239":{"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":9,"docs":{"223":{"tf":2.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"384":{"tf":1.0}}}},"t":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"107":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"153":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"224":{"tf":1.0},"231":{"tf":1.0},"257":{"tf":1.0},"295":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"160":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.4142135623730951},"279":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":2.449489742783178},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"154":{"tf":1.0},"156":{"tf":2.449489742783178},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"221":{"tf":1.0},"236":{"tf":1.0},"380":{"tf":2.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}}}}},"df":17,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"20":{"tf":1.0},"203":{"tf":1.0},"271":{"tf":1.4142135623730951},"314":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"78":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"df":5,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"260":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"313":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"164":{"tf":1.0},"198":{"tf":1.0},"251":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"115":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"124":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"137":{"tf":1.0},"159":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":3.605551275463989},"194":{"tf":1.0},"20":{"tf":1.4142135623730951},"22":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"253":{"tf":1.0},"260":{"tf":1.4142135623730951},"279":{"tf":1.0},"283":{"tf":1.0},"299":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.4142135623730951},"388":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"71":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"191":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"136":{"tf":1.0},"16":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"260":{"tf":3.0},"261":{"tf":2.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"306":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"335":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"140":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"229":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":2.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":21,"docs":{"1":{"tf":1.7320508075688772},"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"268":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"374":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":5,"docs":{"135":{"tf":1.4142135623730951},"155":{"tf":1.0},"163":{"tf":1.0},"206":{"tf":1.0},"334":{"tf":1.0}}},"t":{"df":13,"docs":{"137":{"tf":1.0},"149":{"tf":1.7320508075688772},"152":{"tf":1.0},"159":{"tf":1.4142135623730951},"269":{"tf":1.0},"377":{"tf":1.7320508075688772},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"240":{"tf":1.0},"335":{"tf":1.0},"88":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"344":{"tf":1.0},"359":{"tf":1.0},"88":{"tf":2.23606797749979}}}}}}},"p":{"df":0,"docs":{},"i":{"df":30,"docs":{"1":{"tf":1.0},"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"105":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"148":{"tf":1.0},"177":{"tf":1.7320508075688772},"179":{"tf":3.872983346207417},"180":{"tf":3.0},"181":{"tf":2.23606797749979},"182":{"tf":1.0},"195":{"tf":2.23606797749979},"207":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"269":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"347":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.7320508075688772},"39":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"177":{"tf":1.7320508075688772},"179":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"231":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"224":{"tf":1.0},"335":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"269":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"15":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":10,"docs":{"144":{"tf":1.0},"151":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"296":{"tf":1.0},"32":{"tf":1.0},"34":{"tf":1.7320508075688772},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"68":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"358":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"260":{"tf":1.0},"323":{"tf":1.0},"358":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"323":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"154":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":26,"docs":{"101":{"tf":1.0},"110":{"tf":1.0},"141":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"230":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"243":{"tf":1.4142135623730951},"257":{"tf":1.0},"259":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":80,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"111":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"135":{"tf":2.0},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"16":{"tf":2.23606797749979},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"17":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":1.7320508075688772},"240":{"tf":1.0},"242":{"tf":2.23606797749979},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"307":{"tf":2.449489742783178},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"34":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":2.23606797749979},"371":{"tf":2.0},"376":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.6457513110645907},"43":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"68":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.7320508075688772}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"242":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"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":{},"y":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"112":{"tf":1.0},"113":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"253":{"tf":1.0},"325":{"tf":2.23606797749979},"326":{"tf":1.7320508075688772},"330":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"199":{"tf":1.0},"200":{"tf":1.0},"207":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"213":{"tf":1.0},"63":{"tf":1.4142135623730951}},"i":{"df":2,"docs":{"118":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"261":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"d":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"263":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"238":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":16,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"265":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"332":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"113":{"tf":1.0},"71":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":15,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"166":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":2.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"53":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"63":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"b":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"&":{"4":{"2":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"345":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"345":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":19,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"232":{"tf":1.0},"273":{"tf":1.0},"287":{"tf":2.23606797749979},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"10":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"a":{"df":43,"docs":{"117":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"243":{"tf":1.0},"269":{"tf":1.0},"275":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"285":{"tf":1.0},"287":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"351":{"tf":1.0},"364":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"46":{"tf":1.0},"68":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"326":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"132":{"tf":1.0}}}},"df":1,"docs":{"388":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"142":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"173":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"373":{"tf":1.0}}},"t":{"df":1,"docs":{"97":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"258":{"tf":1.0},"289":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":16,"docs":{"102":{"tf":1.0},"135":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":2.0},"188":{"tf":1.0},"347":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":2.23606797749979},"70":{"tf":1.0},"71":{"tf":1.7320508075688772},"73":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":7,"docs":{"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"346":{"tf":1.7320508075688772},"347":{"tf":1.7320508075688772},"348":{"tf":2.449489742783178},"349":{"tf":2.0},"350":{"tf":2.23606797749979}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"258":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"229":{"tf":1.0},"259":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":1.0},"133":{"tf":1.0},"137":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"164":{"tf":1.0},"168":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"256":{"tf":1.0},"288":{"tf":1.0},"30":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":83,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"163":{"tf":1.4142135623730951},"165":{"tf":2.0},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"169":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.4142135623730951},"181":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"203":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"218":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.4142135623730951},"291":{"tf":1.0},"294":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"307":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.7320508075688772},"342":{"tf":1.0},"358":{"tf":1.7320508075688772},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"366":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"73":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"101":{"tf":1.0},"103":{"tf":1.0},"134":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"217":{"tf":1.0},"231":{"tf":1.4142135623730951},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":9,"docs":{"239":{"tf":1.4142135623730951},"242":{"tf":3.0},"249":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.449489742783178},"28":{"tf":1.0},"286":{"tf":2.0},"68":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"c":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"191":{"tf":1.0},"194":{"tf":1.0},"22":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.0},"32":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"110":{"tf":1.0},"115":{"tf":3.1622776601683795},"117":{"tf":1.0},"18":{"tf":1.0},"193":{"tf":1.0},"202":{"tf":1.4142135623730951},"22":{"tf":2.0},"223":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.7320508075688772},"32":{"tf":2.23606797749979},"33":{"tf":1.0},"334":{"tf":1.4142135623730951},"338":{"tf":1.4142135623730951},"34":{"tf":1.0},"348":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"42":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.7320508075688772},"54":{"tf":3.0},"55":{"tf":3.0},"56":{"tf":2.449489742783178},"59":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"65":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"179":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"*":{"&":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":3,"docs":{"250":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"206":{"tf":1.0},"256":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.0},"384":{"tf":1.4142135623730951},"51":{"tf":1.0},"53":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"118":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"323":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"342":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1":{"tf":1.4142135623730951},"179":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"231":{"tf":1.0},"287":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}},"r":{"df":1,"docs":{"219":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}}}}},"df":6,"docs":{"1":{"tf":1.0},"126":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"251":{"tf":1.0},"300":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"161":{"tf":1.0},"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"101":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"267":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"223":{"tf":1.0},"273":{"tf":1.0},"283":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"283":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0}}}}}}}}}}},"v":{"df":5,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"51":{"tf":1.0},"56":{"tf":2.449489742783178},"58":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"208":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.4142135623730951},"4":{"tf":1.0},"49":{"tf":1.0},"75":{"tf":1.0},"9":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"285":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.0}}},"i":{"b":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"d":{"9":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"7":{"6":{"df":0,"docs":{},"u":{"df":0,"docs":{},"v":{"4":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"1":{"df":0,"docs":{},"q":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"c":{"b":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"22":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"210":{"tf":1.0},"341":{"tf":1.0}}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":40,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"123":{"tf":1.0},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.4142135623730951},"194":{"tf":2.0},"203":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"216":{"tf":1.0},"223":{"tf":1.0},"257":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"295":{"tf":2.0},"296":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.0},"323":{"tf":1.0},"347":{"tf":1.4142135623730951},"352":{"tf":1.0},"375":{"tf":2.0},"44":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951}}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"213":{"tf":2.0},"214":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"34":{"tf":2.23606797749979},"36":{"tf":1.7320508075688772},"42":{"tf":3.4641016151377544},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"68":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.7320508075688772},"179":{"tf":1.0},"207":{"tf":3.4641016151377544},"208":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"218":{"tf":1.0},"316":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"293":{"tf":1.0},"294":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"121":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.4142135623730951},"260":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"115":{"tf":1.0},"15":{"tf":1.0},"17":{"tf":1.7320508075688772},"19":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"48":{"tf":2.449489742783178},"54":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"266":{"tf":1.0},"316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.4142135623730951},"173":{"tf":1.0},"207":{"tf":1.4142135623730951},"208":{"tf":1.0},"231":{"tf":1.0},"308":{"tf":1.0},"363":{"tf":1.0},"385":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}},"i":{"df":3,"docs":{"271":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"a":{"d":{"d":{"df":1,"docs":{"324":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{">":{"(":{"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"327":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"329":{"tf":1.4142135623730951}}}},"df":12,"docs":{"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"324":{"tf":3.872983346207417},"325":{"tf":2.0},"326":{"tf":2.23606797749979},"327":{"tf":3.0},"328":{"tf":1.7320508075688772},"329":{"tf":1.7320508075688772},"330":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"216":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"206":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"83":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}}}},"o":{"_":{"a":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"159":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"375":{"tf":1.0},"78":{"tf":1.0}}}}}}}}},"c":{"df":3,"docs":{"64":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"19":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"352":{"tf":1.0},"46":{"tf":1.0},"75":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}}}}},"df":1,"docs":{"30":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":5,"docs":{"179":{"tf":1.7320508075688772},"295":{"tf":1.0},"30":{"tf":1.0},"49":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}}},"f":{":":{":":{"a":{"d":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"295":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":12,"docs":{"107":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.4142135623730951},"188":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"75":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"364":{"tf":1.0},"99":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"71":{"tf":1.0}}}}}},"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"t":{"df":2,"docs":{"328":{"tf":1.0},"358":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"224":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"28":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{">":{"(":{"_":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":44,"docs":{"103":{"tf":1.7320508075688772},"104":{"tf":2.23606797749979},"107":{"tf":3.605551275463989},"108":{"tf":2.23606797749979},"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":2.23606797749979},"179":{"tf":1.7320508075688772},"180":{"tf":2.8284271247461903},"191":{"tf":1.4142135623730951},"195":{"tf":2.8284271247461903},"230":{"tf":1.0},"231":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"313":{"tf":1.7320508075688772},"317":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"362":{"tf":1.0},"385":{"tf":1.4142135623730951}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"126":{"tf":1.7320508075688772},"195":{"tf":1.0},"231":{"tf":1.0}},"e":{"<":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.0}}}},"t":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"e":{"df":8,"docs":{"151":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"285":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"2":{"df":0,"docs":{},"v":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"0":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"9":{"df":0,"docs":{},"o":{"c":{"c":{"df":0,"docs":{},"q":{"9":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"m":{"df":1,"docs":{"42":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"a":{"7":{"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"e":{"b":{"a":{"df":0,"docs":{},"j":{"3":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"q":{"1":{"c":{"df":1,"docs":{"42":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"207":{"tf":1.0},"277":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":14,"docs":{"151":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"286":{"tf":1.0},"32":{"tf":1.0},"347":{"tf":1.0},"38":{"tf":1.0},"49":{"tf":1.0},"82":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":37,"docs":{"1":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"252":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":3.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":1.4142135623730951},"288":{"tf":2.8284271247461903},"289":{"tf":2.23606797749979},"290":{"tf":1.7320508075688772},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":3.872983346207417},"295":{"tf":2.6457513110645907},"296":{"tf":2.0},"297":{"tf":2.23606797749979},"298":{"tf":2.6457513110645907},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.23606797749979},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"385":{"tf":1.0}},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"235":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":24,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":1.0},"220":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"278":{"tf":1.4142135623730951},"298":{"tf":1.0},"348":{"tf":1.0},"350":{"tf":1.0},"374":{"tf":1.0},"39":{"tf":1.0},"54":{"tf":1.0},"67":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"140":{"tf":1.7320508075688772},"145":{"tf":2.0},"147":{"tf":2.0}}}}},"s":{"df":1,"docs":{"213":{"tf":1.0}},"i":{"df":5,"docs":{"1":{"tf":1.0},"213":{"tf":1.0},"324":{"tf":1.0},"341":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"156":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.4142135623730951}}}}}}},"c":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"14":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":2.8284271247461903},"354":{"tf":1.0},"358":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"12":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"4":{"df":0,"docs":{},"z":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"j":{"5":{"b":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"4":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"k":{"3":{"9":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"44":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"156":{"tf":1.0},"389":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"297":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":2.0},"42":{"tf":1.4142135623730951},"68":{"tf":2.23606797749979}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"133":{"tf":1.0},"322":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":3,"docs":{"266":{"tf":1.0},"331":{"tf":1.0},"368":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"9":{"1":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"2":{"df":0,"docs":{},"h":{"c":{"3":{"df":0,"docs":{},"q":{"c":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"9":{"df":0,"docs":{},"u":{"2":{"3":{"df":0,"docs":{},"x":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"d":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"e":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":2,"docs":{"34":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"j":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"6":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"1":{"df":0,"docs":{},"h":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"6":{"df":0,"docs":{},"h":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"8":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.6457513110645907},"125":{"tf":2.0},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"161":{"tf":1.0},"179":{"tf":1.0},"279":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"360":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":2.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"331":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}},"df":10,"docs":{"150":{"tf":1.0},"269":{"tf":1.0},"279":{"tf":1.0},"331":{"tf":2.0},"332":{"tf":3.0},"335":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"372":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":19,"docs":{"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":1.0},"136":{"tf":1.0},"159":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"210":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"287":{"tf":1.4142135623730951},"300":{"tf":1.0},"342":{"tf":1.0},"35":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.7320508075688772}}},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":9,"docs":{"1":{"tf":2.0},"208":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"244":{"tf":1.0},"316":{"tf":1.0},"385":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"264":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"191":{"tf":1.0}}}}},"o":{"d":{"df":8,"docs":{"131":{"tf":1.0},"138":{"tf":1.0},"337":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":2.449489742783178},"345":{"tf":2.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"d":{"df":8,"docs":{"125":{"tf":1.0},"132":{"tf":1.0},"136":{"tf":1.4142135623730951},"172":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"77":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"149":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"253":{"tf":1.0},"256":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"326":{"tf":1.0},"366":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"a":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"b":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}},"df":2,"docs":{"156":{"tf":1.4142135623730951},"374":{"tf":2.0}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"319":{"tf":1.0},"376":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}}}}}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"1":{"tf":1.4142135623730951},"121":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0}}}},"s":{"df":3,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"107":{"tf":1.4142135623730951},"183":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"113":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":3,"docs":{"168":{"tf":1.0},"274":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.7320508075688772},"224":{"tf":1.0},"23":{"tf":1.0},"267":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"386":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":0,"docs":{},"m":{"df":1,"docs":{"260":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":8,"docs":{"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":3.3166247903554},"274":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"295":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"299":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":23,"docs":{"107":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"156":{"tf":2.6457513110645907},"157":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"271":{"tf":1.0},"29":{"tf":1.4142135623730951},"313":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.0},"373":{"tf":2.23606797749979},"374":{"tf":1.4142135623730951},"375":{"tf":1.7320508075688772},"376":{"tf":2.0},"380":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"218":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":5,"docs":{"193":{"tf":1.0},"266":{"tf":1.0},"293":{"tf":1.0},"316":{"tf":1.0},"373":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"207":{"tf":1.0},"208":{"tf":1.0},"259":{"tf":1.0},"69":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"207":{"tf":1.0}}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"143":{"tf":1.0}}}},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":9,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"146":{"tf":1.0},"200":{"tf":1.0},"279":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"325":{"tf":1.0},"77":{"tf":1.4142135623730951}},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"269":{"tf":1.4142135623730951},"331":{"tf":3.0},"332":{"tf":2.8284271247461903},"333":{"tf":2.449489742783178},"335":{"tf":1.4142135623730951},"35":{"tf":2.23606797749979},"372":{"tf":2.0},"42":{"tf":1.0},"68":{"tf":2.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"19":{"tf":1.0},"29":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"207":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"212":{"tf":1.0},"229":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}},"p":{"df":0,"docs":{},"l":{"df":84,"docs":{"107":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"129":{"tf":1.7320508075688772},"14":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"179":{"tf":1.4142135623730951},"183":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"218":{"tf":1.0},"22":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"246":{"tf":1.7320508075688772},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"313":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":1.7320508075688772},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.7320508075688772},"67":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"77":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}},"e":{"d":{"df":1,"docs":{"366":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"104":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"236":{"tf":1.0},"247":{"tf":1.0},"261":{"tf":1.0},"90":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":3,"docs":{"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"22":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"238":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":34,"docs":{"131":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.4142135623730951},"173":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"23":{"tf":1.0},"260":{"tf":2.0},"274":{"tf":1.0},"34":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"384":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"296":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"352":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"128":{"tf":1.0},"156":{"tf":1.0},"254":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"58":{"tf":1.0},"65":{"tf":1.0}},"s":{"_":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"284":{"tf":1.0},"294":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":1.0},"145":{"tf":2.8284271247461903},"146":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"155":{"tf":1.0},"239":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"293":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"137":{"tf":1.0},"144":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"279":{"tf":1.0},"307":{"tf":1.4142135623730951},"363":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.7320508075688772}},"e":{"(":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"289":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"13":{"tf":1.0},"389":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"104":{"tf":2.0},"107":{"tf":1.0},"140":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"24":{"tf":1.0},"250":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":11,"docs":{"120":{"tf":1.0},"126":{"tf":1.4142135623730951},"179":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"319":{"tf":1.0},"322":{"tf":1.0},"339":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"179":{"tf":1.4142135623730951},"207":{"tf":1.0},"66":{"tf":1.0},"81":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"223":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"271":{"tf":1.0},"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"119":{"tf":1.7320508075688772},"151":{"tf":1.0},"165":{"tf":1.0},"338":{"tf":2.0},"358":{"tf":1.7320508075688772},"361":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"s":{"df":4,"docs":{"263":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":2.8284271247461903}}}},"r":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":1,"docs":{"95":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":22,"docs":{"1":{"tf":1.0},"141":{"tf":3.605551275463989},"143":{"tf":2.23606797749979},"144":{"tf":1.4142135623730951},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"159":{"tf":1.7320508075688772},"161":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"197":{"tf":1.0},"319":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"90":{"tf":3.0},"91":{"tf":1.0},"92":{"tf":2.449489742783178},"93":{"tf":3.4641016151377544},"94":{"tf":2.0},"95":{"tf":3.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.0},"308":{"tf":1.0},"324":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"10":{"tf":1.7320508075688772},"11":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"351":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"115":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"207":{"tf":1.0},"264":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":5,"docs":{"129":{"tf":1.4142135623730951},"271":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"f":{"a":{"c":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"224":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"213":{"tf":1.0},"218":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"295":{"tf":1.0}},"o":{"df":1,"docs":{"258":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"137":{"tf":1.0},"153":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"203":{"tf":3.0},"23":{"tf":1.0},"257":{"tf":2.449489742783178},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"373":{"tf":1.0},"67":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":11,"docs":{"136":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"285":{"tf":1.0},"344":{"tf":1.0},"349":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.0},"92":{"tf":1.7320508075688772}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"223":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"384":{"tf":1.0}}}},"u":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"293":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":29,"docs":{"1":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"18":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"204":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.0},"250":{"tf":1.4142135623730951},"259":{"tf":1.0},"265":{"tf":1.4142135623730951},"295":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"316":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"44":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"179":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"115":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"123":{"tf":1.0},"285":{"tf":1.0}}}},"g":{"c":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"5":{"b":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"c":{"6":{"2":{"c":{"df":0,"docs":{},"q":{"3":{"df":0,"docs":{},"v":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"2":{"df":0,"docs":{},"i":{"d":{"5":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"7":{"df":0,"docs":{},"j":{"df":0,"docs":{},"r":{"9":{"a":{"df":0,"docs":{},"q":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":2,"docs":{"103":{"tf":1.0},"98":{"tf":1.0}}},"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"283":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"300":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"97":{"tf":1.0}}}}}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":2.0},"156":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"231":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"252":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":2.8284271247461903},"283":{"tf":3.605551275463989},"284":{"tf":2.6457513110645907},"285":{"tf":2.449489742783178},"286":{"tf":3.4641016151377544},"287":{"tf":3.3166247903554},"288":{"tf":3.1622776601683795},"289":{"tf":3.0},"290":{"tf":2.0},"291":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"293":{"tf":3.605551275463989},"294":{"tf":4.47213595499958},"295":{"tf":2.6457513110645907},"296":{"tf":2.23606797749979},"297":{"tf":2.23606797749979},"298":{"tf":2.0},"299":{"tf":2.449489742783178},"300":{"tf":2.449489742783178},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":2.8284271247461903},"324":{"tf":1.7320508075688772},"326":{"tf":2.6457513110645907},"327":{"tf":2.6457513110645907},"328":{"tf":2.23606797749979},"33":{"tf":1.0},"333":{"tf":1.4142135623730951},"335":{"tf":2.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"350":{"tf":1.7320508075688772},"363":{"tf":1.0},"364":{"tf":1.7320508075688772},"368":{"tf":1.0},"37":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":2.0},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"382":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":4.0},"98":{"tf":3.1622776601683795},"99":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":38,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"134":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":2.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"249":{"tf":1.0},"257":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"344":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"48":{"tf":1.4142135623730951},"51":{"tf":1.0},"71":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"32":{"tf":1.0}}}},"d":{"df":3,"docs":{"0":{"tf":1.0},"39":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"360":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":30,"docs":{"1":{"tf":1.4142135623730951},"111":{"tf":1.0},"16":{"tf":1.0},"164":{"tf":1.0},"192":{"tf":2.6457513110645907},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"218":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.0},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"69":{"tf":1.0},"79":{"tf":1.0}}}}},"t":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"97":{"tf":1.0}}}},"x":{"df":8,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"61":{"tf":1.0},"91":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"38":{"tf":1.0},"43":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1":{"tf":1.0},"216":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.0},"63":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":15,"docs":{"140":{"tf":2.449489742783178},"141":{"tf":1.4142135623730951},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"69":{"tf":1.0},"81":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"28":{"tf":1.4142135623730951},"299":{"tf":1.0},"42":{"tf":1.0}},"s":{"df":4,"docs":{"193":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"69":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"16":{"tf":1.7320508075688772},"21":{"tf":2.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"71":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":51,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.7320508075688772},"166":{"tf":1.0},"170":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"313":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"354":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"87":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"c":{"df":1,"docs":{"363":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"361":{"tf":1.0}}}}},"v":{"df":2,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":1.0}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"134":{"tf":1.0},"341":{"tf":1.7320508075688772},"342":{"tf":2.449489742783178},"351":{"tf":1.0},"38":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0}}}},"df":3,"docs":{"197":{"tf":1.0},"67":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"189":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"315":{"tf":1.0}}}},"df":3,"docs":{"202":{"tf":1.0},"274":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"216":{"tf":1.0},"230":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"121":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"300":{"tf":1.0}}}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"308":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"327":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"294":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"249":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":4,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"260":{"tf":1.0},"262":{"tf":1.0},"263":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"115":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}}}}},"df":35,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"275":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"322":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":2.449489742783178},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"340":{"tf":1.4142135623730951},"343":{"tf":1.0},"351":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"324":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}},"z":{"df":4,"docs":{"236":{"tf":1.0},"239":{"tf":2.449489742783178},"240":{"tf":2.0},"242":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}},"df":2,"docs":{"240":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"255":{"tf":1.7320508075688772},"263":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"250":{"tf":1.4142135623730951},"260":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"354":{"tf":1.0},"356":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"321":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"319":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"282":{"tf":1.0}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"213":{"tf":1.0},"219":{"tf":2.0},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.0},"258":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"z":{"2":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"7":{"7":{"df":0,"docs":{},"m":{"df":0,"docs":{},"f":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"5":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"7":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"8":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"j":{"a":{"7":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"8":{"c":{"3":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"13":{"tf":1.0},"188":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"341":{"tf":1.0},"359":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":2,"docs":{"133":{"tf":1.0},"373":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"324":{"tf":1.0},"329":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"183":{"tf":1.0}}},"(":{"_":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":123,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.449489742783178},"114":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":2.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":2.6457513110645907},"158":{"tf":3.605551275463989},"159":{"tf":3.3166247903554},"160":{"tf":2.6457513110645907},"161":{"tf":2.23606797749979},"162":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":1.0},"166":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":3.0},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"191":{"tf":2.449489742783178},"192":{"tf":2.449489742783178},"193":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":3.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.7320508075688772},"236":{"tf":1.4142135623730951},"237":{"tf":2.0},"238":{"tf":4.123105625617661},"239":{"tf":4.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.0},"242":{"tf":2.8284271247461903},"243":{"tf":1.0},"244":{"tf":1.0},"250":{"tf":1.7320508075688772},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":3.1622776601683795},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":2.8284271247461903},"274":{"tf":1.7320508075688772},"286":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"325":{"tf":1.0},"332":{"tf":2.0},"337":{"tf":1.0},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"369":{"tf":1.4142135623730951},"373":{"tf":2.0},"374":{"tf":1.7320508075688772},"376":{"tf":1.7320508075688772},"381":{"tf":2.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"65":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"71":{"tf":1.4142135623730951},"73":{"tf":2.0},"78":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":2.8284271247461903},"97":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"172":{"tf":1.0},"224":{"tf":1.0},"238":{"tf":1.0},"275":{"tf":1.0},"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":105,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"132":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.23606797749979},"165":{"tf":3.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":1.7320508075688772},"171":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"201":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951},"204":{"tf":2.0},"22":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":2.0},"239":{"tf":2.23606797749979},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"257":{"tf":2.6457513110645907},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"284":{"tf":1.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.7320508075688772},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"355":{"tf":1.7320508075688772},"356":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.4142135623730951},"362":{"tf":2.0},"363":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"383":{"tf":2.449489742783178},"47":{"tf":1.4142135623730951},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"94":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"210":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"g":{"a":{"df":14,"docs":{"142":{"tf":1.0},"144":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":2.8284271247461903},"33":{"tf":2.23606797749979},"34":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.4142135623730951}}}},"o":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"238":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"115":{"tf":1.0},"128":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":1.7320508075688772},"191":{"tf":3.3166247903554},"192":{"tf":2.0},"193":{"tf":3.1622776601683795},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"196":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.0},"250":{"tf":2.0},"263":{"tf":2.23606797749979},"283":{"tf":1.0},"285":{"tf":1.0},"293":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":2.0},"75":{"tf":1.0},"78":{"tf":1.0}}}}},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"_":{"b":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"161":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":5,"docs":{"136":{"tf":1.0},"180":{"tf":1.0},"198":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.7320508075688772}}}}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"4":{"8":{"2":{"d":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"b":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"x":{"df":0,"docs":{},"g":{"df":0,"docs":{},"j":{"df":0,"docs":{},"m":{"2":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":1,"docs":{"42":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.7320508075688772}}}},"t":{"df":10,"docs":{"115":{"tf":1.7320508075688772},"121":{"tf":1.0},"22":{"tf":1.4142135623730951},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"df":3,"docs":{"0":{"tf":1.0},"13":{"tf":2.0},"388":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"22":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":13,"docs":{"1":{"tf":1.0},"104":{"tf":1.0},"118":{"tf":1.0},"148":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.4142135623730951},"187":{"tf":1.0},"197":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}},"n":{"df":10,"docs":{"125":{"tf":1.0},"129":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"266":{"tf":1.0},"283":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"263":{"tf":1.0},"325":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"384":{"tf":1.7320508075688772},"385":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":7,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.0},"236":{"tf":1.0},"276":{"tf":1.0},"40":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":1,"docs":{"173":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"238":{"tf":1.0}}}},"o":{"d":{"df":9,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"374":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"c":{"d":{"df":0,"docs":{},"v":{"6":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"j":{"df":0,"docs":{},"g":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"5":{"8":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"d":{"a":{"df":0,"docs":{},"q":{"1":{"df":0,"docs":{},"j":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":2,"docs":{"32":{"tf":1.0},"34":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"217":{"tf":1.0},"221":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"279":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"141":{"tf":1.0},"147":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"324":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":8,"docs":{"1":{"tf":1.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"158":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"334":{"tf":1.0},"70":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"207":{"tf":1.0},"249":{"tf":1.0},"254":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.7320508075688772},"309":{"tf":1.0},"313":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":17,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"157":{"tf":1.0},"206":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"45":{"tf":1.4142135623730951},"8":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"383":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"258":{"tf":1.4142135623730951},"28":{"tf":1.0}},"i":{"df":2,"docs":{"204":{"tf":1.0},"347":{"tf":1.0}}},"l":{"df":14,"docs":{"105":{"tf":1.0},"107":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"180":{"tf":1.0},"207":{"tf":1.0},"231":{"tf":1.0},"286":{"tf":1.0},"297":{"tf":1.0},"348":{"tf":1.0},"373":{"tf":2.0},"374":{"tf":2.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"187":{"tf":1.0},"22":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"283":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"118":{"tf":1.4142135623730951},"213":{"tf":1.0},"260":{"tf":1.0},"283":{"tf":1.0},"68":{"tf":1.0}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"295":{"tf":1.0},"299":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"295":{"tf":1.0}}}}}},"df":5,"docs":{"284":{"tf":3.4641016151377544},"286":{"tf":2.23606797749979},"287":{"tf":1.0},"295":{"tf":2.23606797749979},"299":{"tf":2.449489742783178}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"91":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":2.23606797749979},"166":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"19":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":4,"docs":{"19":{"tf":1.0},"20":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"17":{"tf":1.0},"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"16":{"tf":2.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":2.449489742783178},"23":{"tf":2.0},"47":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":34,"docs":{"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0}}}},"p":{"df":7,"docs":{"118":{"tf":1.0},"142":{"tf":1.0},"204":{"tf":1.0},"297":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"47":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"20":{"tf":1.0},"88":{"tf":1.0}}}}}},"n":{"c":{"df":9,"docs":{"133":{"tf":1.0},"187":{"tf":1.0},"241":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"318":{"tf":1.4142135623730951},"331":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"'":{"df":3,"docs":{"294":{"tf":1.0},"317":{"tf":1.0},"95":{"tf":1.0}}},"df":23,"docs":{"0":{"tf":1.0},"104":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.6457513110645907},"194":{"tf":1.0},"200":{"tf":1.0},"217":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":2.0},"243":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"345":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"164":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.0}}}}}}},"df":2,"docs":{"165":{"tf":1.4142135623730951},"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"164":{"tf":3.4641016151377544},"165":{"tf":3.3166247903554},"166":{"tf":3.0},"220":{"tf":1.7320508075688772},"324":{"tf":1.7320508075688772},"382":{"tf":1.0},"383":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"291":{"tf":1.0},"300":{"tf":1.0}},"i":{"df":1,"docs":{"220":{"tf":1.0}}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"61":{"tf":1.0},"87":{"tf":1.7320508075688772},"91":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"91":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":5,"docs":{"110":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"352":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"296":{"tf":1.0},"297":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":4,"docs":{"10":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0},"9":{"tf":1.4142135623730951}}}}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"207":{"tf":1.0},"230":{"tf":1.0},"323":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"134":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"260":{"tf":1.0},"306":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"197":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"105":{"tf":2.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"22":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"7":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"w":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"3":{"8":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"3":{"b":{"df":0,"docs":{},"t":{"4":{"b":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"a":{"b":{"d":{"df":0,"docs":{},"f":{"5":{"df":0,"docs":{},"g":{"b":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"g":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"i":{".":{"df":1,"docs":{"283":{"tf":1.0}}},"d":{"'":{"df":1,"docs":{"260":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"239":{"tf":1.0},"242":{"tf":1.0},"251":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":64,"docs":{"10":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"231":{"tf":2.0},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"246":{"tf":1.4142135623730951},"249":{"tf":2.8284271247461903},"250":{"tf":1.0},"251":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.4142135623730951},"254":{"tf":2.8284271247461903},"255":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"263":{"tf":1.7320508075688772},"264":{"tf":2.449489742783178},"269":{"tf":2.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.7320508075688772},"284":{"tf":2.449489742783178},"285":{"tf":1.0},"286":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":2.0},"335":{"tf":1.0},"34":{"tf":2.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":2.8284271247461903},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"9":{"tf":2.23606797749979}},"e":{"a":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.0}},"l":{"df":2,"docs":{"207":{"tf":1.0},"219":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"145":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"72":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":14,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"213":{"tf":1.7320508075688772},"22":{"tf":1.0},"249":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"32":{"tf":1.0},"47":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"68":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}}}},"s":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"107":{"tf":2.449489742783178},"126":{"tf":1.0},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"22":{"tf":1.0},"253":{"tf":1.0},"385":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"107":{"tf":1.7320508075688772}}}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"145":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"257":{"tf":1.0},"285":{"tf":1.0},"373":{"tf":1.0},"73":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"328":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1":{"tf":1.0},"144":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"252":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"161":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.7320508075688772},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":3.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.7320508075688772},"34":{"tf":1.0},"49":{"tf":1.0},"80":{"tf":1.0},"98":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":29,"docs":{"107":{"tf":1.0},"118":{"tf":1.4142135623730951},"131":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.4142135623730951},"186":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"220":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.6457513110645907},"337":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"347":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"374":{"tf":1.0}}}}}}},"i":{"c":{"df":4,"docs":{"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"120":{"tf":1.0},"128":{"tf":1.0},"179":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"339":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":63,"docs":{"104":{"tf":1.0},"110":{"tf":2.449489742783178},"111":{"tf":2.449489742783178},"112":{"tf":2.6457513110645907},"113":{"tf":3.7416573867739413},"114":{"tf":2.449489742783178},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.7320508075688772},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":2.0},"166":{"tf":1.0},"170":{"tf":1.0},"172":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.0},"192":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.7320508075688772},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"243":{"tf":1.0},"257":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0},"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"333":{"tf":1.0},"339":{"tf":2.0},"51":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"185":{"tf":1.0},"218":{"tf":1.0},"251":{"tf":1.0},"358":{"tf":1.0},"58":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":3,"docs":{"14":{"tf":1.0},"210":{"tf":1.0},"373":{"tf":1.0}}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"179":{"tf":1.0},"279":{"tf":1.0}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"253":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":25,"docs":{"108":{"tf":1.4142135623730951},"114":{"tf":1.0},"124":{"tf":1.0},"16":{"tf":1.0},"181":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"208":{"tf":1.0},"22":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.4142135623730951},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"68":{"tf":1.0},"83":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"156":{"tf":1.0},"308":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"250":{"tf":1.0},"262":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"23":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"193":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"125":{"tf":1.0},"138":{"tf":1.0},"250":{"tf":1.0},"28":{"tf":1.4142135623730951},"295":{"tf":1.0},"299":{"tf":1.0},"331":{"tf":1.4142135623730951},"342":{"tf":1.0},"360":{"tf":1.0}}}},"i":{"c":{"df":6,"docs":{"137":{"tf":1.0},"179":{"tf":1.0},"185":{"tf":1.0},"326":{"tf":1.0},"374":{"tf":1.4142135623730951},"99":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":2,"docs":{"113":{"tf":1.0},"138":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"197":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"207":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"228":{"tf":1.0},"308":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":4,"docs":{"238":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0}}}}}},"df":7,"docs":{"238":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":2.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"313":{"tf":1.0}},"i":{"df":17,"docs":{"126":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"302":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"91":{"tf":1.0},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"195":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"297":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"141":{"tf":1.0},"274":{"tf":1.0},"33":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"138":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"243":{"tf":1.0},"385":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"15":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"4":{"tf":1.0},"5":{"tf":2.23606797749979},"6":{"tf":2.23606797749979},"7":{"tf":1.7320508075688772},"8":{"tf":1.7320508075688772}}},"n":{"c":{"df":21,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.7320508075688772},"111":{"tf":1.0},"135":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"210":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.4142135623730951},"307":{"tf":2.6457513110645907},"313":{"tf":1.0},"332":{"tf":1.0},"347":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":2.23606797749979}}},"w":{"df":1,"docs":{"307":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"193":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":2.0},"310":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":11,"docs":{"116":{"tf":1.4142135623730951},"129":{"tf":1.0},"137":{"tf":1.0},"144":{"tf":1.0},"207":{"tf":1.0},"324":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.7320508075688772},"55":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":12,"docs":{"108":{"tf":1.0},"154":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.7320508075688772},"79":{"tf":1.0},"82":{"tf":2.23606797749979},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.4142135623730951}},"r":{"df":3,"docs":{"21":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":2,"docs":{"11":{"tf":2.0},"9":{"tf":1.4142135623730951}}}}}},"n":{"d":{"df":5,"docs":{"0":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"99":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"121":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"223":{"tf":1.0},"26":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"334":{"tf":1.0},"336":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"40":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.0},"213":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"287":{"tf":1.0}}}}},"f":{"a":{"c":{"df":2,"docs":{"15":{"tf":1.0},"323":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":17,"docs":{"130":{"tf":1.0},"164":{"tf":1.0},"169":{"tf":2.449489742783178},"204":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":2.0},"262":{"tf":1.0},"283":{"tf":1.4142135623730951},"287":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"301":{"tf":1.0},"303":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":16,"docs":{"101":{"tf":1.0},"123":{"tf":1.0},"145":{"tf":1.0},"171":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"297":{"tf":1.0},"324":{"tf":1.0},"355":{"tf":1.0},"58":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}},"t":{"df":8,"docs":{"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":6,"docs":{"225":{"tf":1.0},"228":{"tf":1.4142135623730951},"243":{"tf":1.0},"34":{"tf":1.0},"384":{"tf":1.4142135623730951},"68":{"tf":1.0}}}}}}},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"350":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"376":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"125":{"tf":1.0},"299":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"147":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"349":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"29":{"tf":1.0},"324":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"'":{"df":14,"docs":{"1":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"183":{"tf":1.0},"20":{"tf":1.0},"213":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"78":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":18,"docs":{"148":{"tf":2.449489742783178},"149":{"tf":1.0},"151":{"tf":1.0},"207":{"tf":1.0},"220":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":3.0},"278":{"tf":1.0},"28":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"332":{"tf":3.0},"40":{"tf":1.0},"43":{"tf":3.1622776601683795},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"47":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"332":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":2.449489742783178},"348":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":9,"docs":{"113":{"tf":1.4142135623730951},"185":{"tf":1.0},"187":{"tf":1.0},"207":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"294":{"tf":1.4142135623730951},"55":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"j":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"11":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"324":{"tf":1.0},"369":{"tf":1.4142135623730951}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"38":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"293":{"tf":1.0}}}}}}}}},"k":{"df":1,"docs":{"302":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":4,"docs":{"252":{"tf":1.4142135623730951},"295":{"tf":1.0},"332":{"tf":1.0},"364":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"252":{"tf":1.0},"347":{"tf":1.0}}}},"y":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":3,"docs":{"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":56,"docs":{"103":{"tf":1.0},"104":{"tf":2.0},"115":{"tf":1.0},"179":{"tf":1.0},"230":{"tf":2.8284271247461903},"231":{"tf":2.0},"232":{"tf":2.449489742783178},"233":{"tf":1.4142135623730951},"234":{"tf":1.0},"238":{"tf":2.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"250":{"tf":1.0},"257":{"tf":3.0},"264":{"tf":1.7320508075688772},"268":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":3.0},"28":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"295":{"tf":2.23606797749979},"30":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":2.23606797749979},"304":{"tf":1.0},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":2.0},"328":{"tf":1.0},"332":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":2.23606797749979},"54":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":24,"docs":{"103":{"tf":1.0},"111":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.4142135623730951},"141":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"170":{"tf":1.4142135623730951},"186":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.4142135623730951},"353":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"71":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"33":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"183":{"tf":1.0},"253":{"tf":1.0},"320":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"361":{"tf":1.0}}}}}}}},"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"b":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"126":{"tf":1.0},"132":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"32":{"tf":1.0},"323":{"tf":1.0},"342":{"tf":1.0},"373":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"346":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"142":{"tf":1.4142135623730951},"18":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}}}}}},"l":{"a":{"b":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"207":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":2.8284271247461903},"10":{"tf":1.0},"107":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"123":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":2.449489742783178},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"22":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"341":{"tf":1.0},"352":{"tf":1.4142135623730951},"387":{"tf":1.0},"47":{"tf":1.0},"53":{"tf":1.0},"69":{"tf":2.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":5,"docs":{"220":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"83":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"125":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":12,"docs":{"125":{"tf":1.0},"147":{"tf":1.4142135623730951},"159":{"tf":1.0},"220":{"tf":1.0},"244":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"187":{"tf":1.0},"227":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"115":{"tf":1.0},"236":{"tf":1.0},"250":{"tf":1.0},"291":{"tf":1.0},"38":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"272":{"tf":1.0},"295":{"tf":1.0},"33":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"315":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.7320508075688772},"342":{"tf":1.0}}}}}}},"df":3,"docs":{"16":{"tf":1.0},"209":{"tf":1.0},"387":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":12,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":1.0},"157":{"tf":1.0},"311":{"tf":1.0},"389":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0}}}},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}},"n":{"df":1,"docs":{"348":{"tf":2.0}},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":10,"docs":{"125":{"tf":1.0},"128":{"tf":1.0},"136":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"342":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0}},"i":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"113":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"83":{"tf":1.0}}}},"t":{"'":{"df":23,"docs":{"129":{"tf":1.0},"141":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"271":{"tf":1.4142135623730951},"285":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"41":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"79":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"149":{"tf":1.4142135623730951},"313":{"tf":1.0},"71":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":16,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"158":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"217":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"256":{"tf":1.0},"297":{"tf":1.4142135623730951},"324":{"tf":1.0},"342":{"tf":1.0},"352":{"tf":1.0},"96":{"tf":1.0}},"}":{")":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"315":{"tf":1.0},"334":{"tf":1.0},"339":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"b":{"df":0,"docs":{},"o":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":20,"docs":{"138":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"218":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"287":{"tf":1.0},"290":{"tf":2.0},"295":{"tf":1.0},"366":{"tf":3.0},"367":{"tf":1.7320508075688772},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":9,"docs":{"144":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"20":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.23606797749979},"77":{"tf":2.0}}},"k":{"df":4,"docs":{"152":{"tf":1.4142135623730951},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"50":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"t":{"df":2,"docs":{"305":{"tf":1.4142135623730951},"336":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"28":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"0":{"df":0,"docs":{},"x":{"2":{"0":{"df":0,"docs":{},"e":{"0":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"1":{"6":{"d":{"df":0,"docs":{},"e":{"8":{"a":{"7":{"2":{"8":{"a":{"b":{"2":{"5":{"df":0,"docs":{},"e":{"2":{"2":{"8":{"8":{"1":{"6":{"b":{"9":{"0":{"5":{"9":{"b":{"4":{"5":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"a":{"4":{"9":{"c":{"8":{"a":{"d":{"3":{"8":{"4":{"df":0,"docs":{},"e":{"0":{"4":{"4":{"5":{"8":{"0":{"b":{"2":{"d":{"3":{"df":0,"docs":{},"e":{"5":{"5":{"3":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"43":{"tf":1.7320508075688772},"44":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":27,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"244":{"tf":1.0},"26":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":3.1622776601683795},"280":{"tf":1.4142135623730951},"284":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"328":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"331":{"tf":1.0},"335":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"124":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"284":{"tf":1.0},"72":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":3.605551275463989}}}},"t":{"df":0,"docs":{},"l":{"df":5,"docs":{"296":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"a":{"d":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"115":{"tf":2.0},"165":{"tf":1.0},"178":{"tf":1.0},"361":{"tf":1.4142135623730951},"48":{"tf":1.0},"54":{"tf":1.7320508075688772},"59":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"t":{"df":5,"docs":{"115":{"tf":1.0},"158":{"tf":1.0},"29":{"tf":1.0},"331":{"tf":1.0},"61":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"218":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"210":{"tf":1.0},"253":{"tf":1.0},"264":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.0},"373":{"tf":1.4142135623730951},"92":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":9,"docs":{"1":{"tf":1.0},"143":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"379":{"tf":1.0},"61":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.4142135623730951},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"284":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.0},"129":{"tf":1.0},"145":{"tf":1.0},"183":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.7320508075688772},"29":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"206":{"tf":1.0}}}}},"p":{"df":8,"docs":{"140":{"tf":1.7320508075688772},"142":{"tf":3.0},"143":{"tf":2.8284271247461903},"144":{"tf":3.605551275463989},"145":{"tf":3.872983346207417},"146":{"tf":2.449489742783178},"348":{"tf":1.0},"95":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"187":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"207":{"tf":1.0}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"t":{"df":2,"docs":{"373":{"tf":1.0},"389":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"220":{"tf":1.0}}}},"w":{"df":1,"docs":{"297":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":1,"docs":{"16":{"tf":1.0}}},"v":{"df":0,"docs":{},"l":{"df":1,"docs":{"324":{"tf":1.0}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":3,"docs":{"4":{"tf":1.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"141":{"tf":1.0},"155":{"tf":2.0}}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"149":{"tf":1.0},"153":{"tf":1.7320508075688772},"165":{"tf":1.0},"170":{"tf":1.0},"258":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"68":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"176":{"tf":1.0},"235":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"295":{"tf":1.0},"331":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"226":{"tf":1.0},"237":{"tf":1.0},"274":{"tf":1.0},"324":{"tf":1.0},"352":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":25,"docs":{"129":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"185":{"tf":1.0},"194":{"tf":1.0},"217":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.4142135623730951},"295":{"tf":1.0},"323":{"tf":1.4142135623730951},"347":{"tf":1.0},"356":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"79":{"tf":1.0}}}},"n":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"164":{"tf":1.0}}}}}}},"df":2,"docs":{"164":{"tf":2.0},"166":{"tf":1.4142135623730951}},"g":{"df":22,"docs":{"1":{"tf":1.0},"15":{"tf":1.0},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"264":{"tf":1.0},"28":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"319":{"tf":1.0},"325":{"tf":1.0},"5":{"tf":1.0},"53":{"tf":1.4142135623730951},"6":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"189":{"tf":1.0},"210":{"tf":1.0},"264":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"329":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":18,"docs":{"115":{"tf":1.0},"18":{"tf":1.7320508075688772},"24":{"tf":1.0},"25":{"tf":1.0},"334":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"72":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":3,"docs":{"117":{"tf":1.0},"125":{"tf":1.0},"213":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"260":{"tf":1.0},"313":{"tf":1.4142135623730951},"323":{"tf":1.0},"327":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"3":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":6,"docs":{"220":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"342":{"tf":1.4142135623730951}}},"r":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":9,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"30":{"tf":1.0},"385":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":6,"docs":{"13":{"tf":1.0},"218":{"tf":2.23606797749979},"220":{"tf":1.0},"224":{"tf":1.0},"255":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"192":{"tf":1.0},"236":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.0},"71":{"tf":1.0},"83":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"219":{"tf":1.0}}}}},"h":{":":{":":{"a":{"d":{"d":{"(":{"1":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"160":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"132":{"tf":1.0},"193":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"x":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772}}}}}}}},"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"129":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"177":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"342":{"tf":1.0},"358":{"tf":1.0},"97":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"121":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"266":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"153":{"tf":1.0},"207":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"246":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"112":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.7320508075688772},"22":{"tf":1.0},"70":{"tf":1.4142135623730951},"73":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"180":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"104":{"tf":1.0},"145":{"tf":1.0},"190":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"254":{"tf":1.0},"94":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"22":{"tf":1.0},"239":{"tf":3.1622776601683795},"242":{"tf":1.4142135623730951},"342":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"9":{"tf":1.0}},"e":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"c":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":14,"docs":{"18":{"tf":1.0},"193":{"tf":2.0},"278":{"tf":1.0},"295":{"tf":2.0},"321":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"327":{"tf":1.0},"328":{"tf":2.23606797749979},"333":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"48":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"287":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.7320508075688772},"155":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":33,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"163":{"tf":2.23606797749979},"164":{"tf":3.0},"165":{"tf":3.872983346207417},"166":{"tf":2.6457513110645907},"167":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"253":{"tf":1.0},"284":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"300":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":2.449489742783178},"336":{"tf":2.23606797749979},"349":{"tf":1.0},"358":{"tf":2.6457513110645907},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.7320508075688772},"383":{"tf":2.449489742783178},"71":{"tf":1.0},"73":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":1.0},"186":{"tf":1.4142135623730951},"187":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"129":{"tf":2.449489742783178},"138":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"129":{"tf":2.23606797749979}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"14":{"tf":1.0},"271":{"tf":1.4142135623730951},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"354":{"tf":2.6457513110645907},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"272":{"tf":1.0},"274":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"n":{"d":{"df":3,"docs":{"1":{"tf":1.0},"204":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"238":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"238":{"tf":1.0},"240":{"tf":1.0},"308":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"208":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"363":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1":{"tf":1.0},"129":{"tf":1.4142135623730951},"319":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":5,"docs":{"32":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"34":{"tf":2.0},"37":{"tf":1.0},"42":{"tf":2.449489742783178}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"x":{"df":2,"docs":{"194":{"tf":1.0},"213":{"tf":1.0}}}},"o":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"114":{"tf":1.0}},"e":{"df":8,"docs":{"118":{"tf":1.0},"12":{"tf":1.4142135623730951},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"56":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951}},"l":{"df":36,"docs":{"179":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"217":{"tf":1.7320508075688772},"218":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"230":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.4142135623730951},"69":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"213":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0}},"i":{"df":18,"docs":{"158":{"tf":1.0},"168":{"tf":2.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"188":{"tf":2.0},"197":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"284":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"110":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"365":{"tf":1.4142135623730951},"83":{"tf":1.0}}}},"df":136,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":2.6457513110645907},"111":{"tf":3.4641016151377544},"112":{"tf":3.0},"113":{"tf":3.7416573867739413},"114":{"tf":2.6457513110645907},"115":{"tf":1.0},"116":{"tf":3.4641016151377544},"117":{"tf":1.0},"118":{"tf":2.23606797749979},"120":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.7320508075688772},"15":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"158":{"tf":2.449489742783178},"160":{"tf":2.23606797749979},"164":{"tf":2.0},"165":{"tf":2.6457513110645907},"166":{"tf":2.449489742783178},"168":{"tf":2.6457513110645907},"169":{"tf":2.8284271247461903},"170":{"tf":2.23606797749979},"171":{"tf":2.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":3.3166247903554},"197":{"tf":1.0},"198":{"tf":2.0},"20":{"tf":2.6457513110645907},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.4142135623730951},"210":{"tf":1.0},"22":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"233":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"238":{"tf":2.0},"243":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":3.1622776601683795},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.4641016151377544},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"285":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":2.23606797749979},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"307":{"tf":2.6457513110645907},"308":{"tf":1.4142135623730951},"310":{"tf":1.0},"313":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"318":{"tf":1.0},"324":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":2.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.4142135623730951},"343":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":2.0},"36":{"tf":1.0},"361":{"tf":2.0},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":2.0},"376":{"tf":2.23606797749979},"379":{"tf":2.449489742783178},"384":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":3.0},"71":{"tf":3.872983346207417},"72":{"tf":2.0},"73":{"tf":2.6457513110645907},"74":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"97":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951}},"e":{"'":{"df":3,"docs":{"148":{"tf":1.0},"166":{"tf":1.4142135623730951},"267":{"tf":1.0}}},"_":{"a":{"df":2,"docs":{"374":{"tf":1.0},"375":{"tf":1.0}}},"b":{":":{":":{"df":0,"docs":{},"g":{"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":{"(":{"1":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"2":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"3":{"df":3,"docs":{"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"198":{"tf":1.7320508075688772},"317":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"111":{"tf":1.0},"113":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"387":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":55,"docs":{"1":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"161":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"259":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"274":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"289":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"309":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"68":{"tf":1.4142135623730951},"71":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"'":{"df":5,"docs":{"107":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"350":{"tf":1.0},"96":{"tf":1.0}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":9,"docs":{"115":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"48":{"tf":1.7320508075688772},"51":{"tf":1.0},"72":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"42":{"tf":1.0},"67":{"tf":1.0}},"l":{"(":{"0":{"df":0,"docs":{},"x":{"a":{"a":{"a":{":":{":":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":214,"docs":{"0":{"tf":2.6457513110645907},"1":{"tf":4.47213595499958},"10":{"tf":2.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"12":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"124":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.23606797749979},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"14":{"tf":2.8284271247461903},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"161":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.7320508075688772},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"201":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"207":{"tf":2.8284271247461903},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":2.449489742783178},"229":{"tf":1.0},"23":{"tf":2.6457513110645907},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":2.6457513110645907},"238":{"tf":1.4142135623730951},"24":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.7320508075688772},"26":{"tf":1.0},"27":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"307":{"tf":2.23606797749979},"310":{"tf":1.0},"323":{"tf":1.0},"331":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"350":{"tf":1.0},"352":{"tf":2.23606797749979},"353":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"356":{"tf":1.7320508075688772},"357":{"tf":1.7320508075688772},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"373":{"tf":1.0},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":2.449489742783178},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"47":{"tf":1.7320508075688772},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.4142135623730951},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"75":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"87":{"tf":1.4142135623730951},"88":{"tf":1.0},"89":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0},"99":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":7,"docs":{"121":{"tf":1.0},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"59":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"l":{"df":27,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"142":{"tf":1.4142135623730951},"161":{"tf":1.7320508075688772},"165":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.7320508075688772},"218":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"329":{"tf":1.4142135623730951},"334":{"tf":1.0},"347":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"51":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"83":{"tf":1.4142135623730951}},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"x":{"df":1,"docs":{"204":{"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":1,"docs":{"271":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"284":{"tf":3.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":18,"docs":{"161":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"188":{"tf":1.0},"237":{"tf":1.7320508075688772},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.0},"299":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"80":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":6,"docs":{"186":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":58,"docs":{"125":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"161":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"166":{"tf":1.0},"186":{"tf":1.7320508075688772},"188":{"tf":1.0},"193":{"tf":1.4142135623730951},"231":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"294":{"tf":1.7320508075688772},"295":{"tf":1.7320508075688772},"299":{"tf":1.7320508075688772},"300":{"tf":1.7320508075688772},"302":{"tf":1.7320508075688772},"308":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.4142135623730951},"332":{"tf":1.0},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.7320508075688772},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":3.872983346207417},"360":{"tf":1.7320508075688772},"362":{"tf":2.0},"363":{"tf":1.0},"80":{"tf":2.0},"98":{"tf":1.0}}}},"y":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"41":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"361":{"tf":1.0},"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"51":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}},"l":{"a":{"b":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"132":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"n":{"a":{"6":{"8":{"df":0,"docs":{},"o":{"a":{"8":{"df":0,"docs":{},"g":{"a":{"b":{"/":{"c":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"+":{"2":{"4":{"0":{"df":0,"docs":{},"w":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"8":{"df":0,"docs":{},"u":{"0":{"df":0,"docs":{},"p":{"+":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"4":{"df":0,"docs":{},"v":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"u":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":68,"docs":{"101":{"tf":2.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":2.23606797749979},"115":{"tf":1.0},"116":{"tf":1.0},"119":{"tf":1.0},"129":{"tf":2.449489742783178},"137":{"tf":1.4142135623730951},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"156":{"tf":1.0},"159":{"tf":1.7320508075688772},"16":{"tf":1.7320508075688772},"160":{"tf":1.0},"161":{"tf":2.449489742783178},"165":{"tf":2.0},"18":{"tf":1.7320508075688772},"19":{"tf":2.449489742783178},"193":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"23":{"tf":1.0},"231":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":2.6457513110645907},"276":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":3.4641016151377544},"284":{"tf":1.0},"285":{"tf":2.6457513110645907},"286":{"tf":1.0},"287":{"tf":3.605551275463989},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"294":{"tf":3.0},"295":{"tf":1.7320508075688772},"296":{"tf":1.0},"300":{"tf":1.0},"313":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"338":{"tf":1.0},"350":{"tf":1.4142135623730951},"355":{"tf":1.0},"373":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"382":{"tf":1.0},"383":{"tf":1.0},"42":{"tf":1.7320508075688772},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"71":{"tf":2.23606797749979},"72":{"tf":1.7320508075688772},"80":{"tf":1.0},"87":{"tf":1.4142135623730951},"97":{"tf":2.0},"98":{"tf":2.449489742783178},"99":{"tf":3.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":25,"docs":{"108":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.0},"133":{"tf":1.0},"181":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"247":{"tf":1.0},"262":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"324":{"tf":1.0},"331":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"359":{"tf":1.0},"386":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"179":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"285":{"tf":1.0}}}}}},"df":3,"docs":{"288":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"129":{"tf":1.0},"135":{"tf":1.0},"141":{"tf":1.0},"17":{"tf":1.0},"22":{"tf":1.0},"294":{"tf":1.0},"333":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":55,"docs":{"1":{"tf":1.0},"107":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"124":{"tf":1.4142135623730951},"126":{"tf":1.0},"128":{"tf":1.4142135623730951},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"151":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"180":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"218":{"tf":1.0},"225":{"tf":1.4142135623730951},"228":{"tf":1.0},"252":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"312":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"49":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"328":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"224":{"tf":1.0}}},"df":20,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"213":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"32":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":2.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"201":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.4142135623730951},"263":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"362":{"tf":1.0}}}}},"w":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":2,"docs":{"269":{"tf":1.0},"271":{"tf":1.0}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"28":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"8":{">":{"(":{"1":{"0":{"df":1,"docs":{"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"307":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"df":1,"docs":{"192":{"tf":1.0}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"192":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"135":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"150":{"tf":1.0},"16":{"tf":2.8284271247461903},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"191":{"tf":2.0},"192":{"tf":1.4142135623730951},"207":{"tf":1.0},"210":{"tf":1.0},"231":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"250":{"tf":1.7320508075688772},"26":{"tf":1.0},"262":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"271":{"tf":2.449489742783178},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"324":{"tf":1.0},"327":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":2.449489742783178},"45":{"tf":1.0},"47":{"tf":1.7320508075688772},"58":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"t":{"df":19,"docs":{"146":{"tf":1.0},"185":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.7320508075688772},"233":{"tf":1.7320508075688772},"236":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"281":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"309":{"tf":1.0},"311":{"tf":1.7320508075688772},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"39":{"tf":1.0},"79":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"_":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"195":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"224":{"tf":1.0},"226":{"tf":1.0},"30":{"tf":1.4142135623730951},"333":{"tf":1.7320508075688772}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"107":{"tf":1.7320508075688772},"126":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}},"df":10,"docs":{"126":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"208":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"295":{"tf":1.0},"300":{"tf":1.0},"317":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":6,"docs":{"128":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"137":{"tf":1.0},"232":{"tf":1.0},"53":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"116":{"tf":1.0},"135":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"358":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":11,"docs":{"153":{"tf":1.0},"16":{"tf":1.0},"185":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"28":{"tf":1.0},"333":{"tf":1.0},"58":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":1.0},"84":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"w":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"185":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"286":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"319":{"tf":1.0},"355":{"tf":1.0},"375":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":24,"docs":{"125":{"tf":1.0},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"179":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.0},"231":{"tf":1.0},"260":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"309":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.7320508075688772},"372":{"tf":1.7320508075688772},"66":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"345":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"191":{"tf":1.0},"91":{"tf":1.0}}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":6,"docs":{"213":{"tf":2.449489742783178},"223":{"tf":1.0},"239":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"323":{"tf":1.0}}},":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"251":{"tf":1.0},"286":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":17,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"264":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":128,"docs":{"1":{"tf":1.4142135623730951},"153":{"tf":1.0},"206":{"tf":2.8284271247461903},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":4.898979485566356},"214":{"tf":2.23606797749979},"215":{"tf":1.7320508075688772},"216":{"tf":2.0},"217":{"tf":2.0},"218":{"tf":2.23606797749979},"219":{"tf":2.23606797749979},"220":{"tf":3.7416573867739413},"221":{"tf":3.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.7320508075688772},"227":{"tf":3.4641016151377544},"228":{"tf":2.6457513110645907},"229":{"tf":2.8284271247461903},"230":{"tf":1.7320508075688772},"231":{"tf":3.1622776601683795},"232":{"tf":1.0},"233":{"tf":2.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":4.69041575982343},"239":{"tf":4.795831523312719},"240":{"tf":2.6457513110645907},"241":{"tf":2.0},"242":{"tf":4.358898943540674},"243":{"tf":1.4142135623730951},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"246":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":2.23606797749979},"251":{"tf":1.4142135623730951},"252":{"tf":2.23606797749979},"253":{"tf":2.0},"254":{"tf":1.7320508075688772},"255":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":2.6457513110645907},"270":{"tf":1.4142135623730951},"271":{"tf":2.449489742783178},"274":{"tf":2.6457513110645907},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":3.0},"283":{"tf":2.449489742783178},"284":{"tf":2.8284271247461903},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":2.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":2.6457513110645907},"294":{"tf":4.69041575982343},"295":{"tf":2.8284271247461903},"296":{"tf":2.23606797749979},"297":{"tf":1.7320508075688772},"298":{"tf":1.7320508075688772},"301":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":2.6457513110645907},"318":{"tf":1.0},"319":{"tf":2.449489742783178},"320":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":2.0},"323":{"tf":2.8284271247461903},"324":{"tf":3.605551275463989},"325":{"tf":2.0},"326":{"tf":3.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":2.6457513110645907},"34":{"tf":2.0},"36":{"tf":3.3166247903554},"363":{"tf":2.23606797749979},"364":{"tf":2.449489742783178},"368":{"tf":2.6457513110645907},"370":{"tf":2.23606797749979},"371":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"385":{"tf":2.0},"386":{"tf":2.0},"39":{"tf":1.7320508075688772},"42":{"tf":4.898979485566356},"43":{"tf":3.1622776601683795},"44":{"tf":2.6457513110645907},"45":{"tf":1.0},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"66":{"tf":2.23606797749979},"67":{"tf":2.0},"68":{"tf":2.6457513110645907},"69":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979},"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":1,"docs":{"257":{"tf":4.69041575982343}}},"t":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"336":{"tf":1.0}},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"31":{"tf":1.0},"36":{"tf":1.4142135623730951},"42":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"263":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"d":{"df":1,"docs":{"146":{"tf":1.4142135623730951}}},"df":1,"docs":{"387":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"114":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"256":{"tf":1.0},"275":{"tf":1.0},"298":{"tf":1.4142135623730951},"300":{"tf":1.0},"314":{"tf":1.0},"88":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}}},"k":{"df":2,"docs":{"107":{"tf":1.0},"23":{"tf":1.0}}},"l":{"d":{"df":2,"docs":{"278":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"141":{"tf":1.0},"294":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0}}}}},"n":{"c":{"df":24,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"183":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.7320508075688772},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"302":{"tf":1.0},"309":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"317":{"tf":1.0},"375":{"tf":1.0},"42":{"tf":1.0},"49":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"265":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":47,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"119":{"tf":1.0},"141":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"175":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"253":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"286":{"tf":1.0},"294":{"tf":1.0},"3":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.0},"324":{"tf":1.0},"342":{"tf":1.0},"368":{"tf":1.0},"384":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"65":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"313":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"12":{"tf":1.0},"207":{"tf":1.0},"253":{"tf":1.0},"268":{"tf":1.4142135623730951},"287":{"tf":1.0},"291":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"83":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":40,"docs":{"117":{"tf":1.0},"118":{"tf":2.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.7320508075688772},"133":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"144":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.4142135623730951},"198":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.7320508075688772},"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"287":{"tf":1.0},"298":{"tf":1.0},"335":{"tf":1.0},"360":{"tf":2.6457513110645907},"374":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"66":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":3.0},"85":{"tf":1.0},"92":{"tf":2.449489742783178},"98":{"tf":1.0}}}},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"349":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"e":{"(":{"b":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"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":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.7320508075688772},"137":{"tf":1.0}}}}},"t":{"df":1,"docs":{"118":{"tf":1.0}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"6":{"4":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"108":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":3.1622776601683795},"129":{"tf":2.449489742783178},"130":{"tf":3.3166247903554},"137":{"tf":1.0},"141":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"265":{"tf":1.0},"308":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":2.23606797749979},"368":{"tf":1.0},"48":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":10,"docs":{"1":{"tf":1.0},"192":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"369":{"tf":1.0},"67":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"200":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0},"70":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"177":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.4142135623730951},"210":{"tf":1.0},"341":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"286":{"tf":2.6457513110645907},"295":{"tf":1.0},"297":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.0},"28":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":5,"docs":{"137":{"tf":1.0},"141":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"83":{"tf":1.0}}}}}}}},"w":{"df":6,"docs":{"265":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":2.8284271247461903},"314":{"tf":2.449489742783178},"315":{"tf":2.23606797749979},"317":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"130":{"tf":1.0},"149":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.4142135623730951},"20":{"tf":1.0},"218":{"tf":1.0},"230":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":2.0},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"158":{"tf":1.0},"168":{"tf":1.0},"23":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":12,"docs":{"143":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.7320508075688772},"221":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"374":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"55":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"104":{"tf":1.7320508075688772},"118":{"tf":1.0},"206":{"tf":1.0},"236":{"tf":1.4142135623730951},"352":{"tf":1.0},"366":{"tf":1.0},"95":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"28":{"tf":1.0}}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":20,"docs":{"173":{"tf":2.23606797749979},"175":{"tf":1.0},"176":{"tf":2.449489742783178},"217":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"225":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.4142135623730951},"230":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":2.449489742783178},"240":{"tf":1.7320508075688772},"258":{"tf":1.0},"271":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"363":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"217":{"tf":1.0}}},"(":{"df":1,"docs":{"207":{"tf":1.0}}},"df":32,"docs":{"148":{"tf":1.0},"172":{"tf":1.7320508075688772},"173":{"tf":2.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"216":{"tf":1.4142135623730951},"217":{"tf":2.449489742783178},"218":{"tf":1.4142135623730951},"220":{"tf":2.0},"221":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"28":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.7320508075688772},"44":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":37,"docs":{"172":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"185":{"tf":2.0},"187":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"216":{"tf":2.0},"217":{"tf":2.23606797749979},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"284":{"tf":1.4142135623730951},"307":{"tf":1.0},"310":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"327":{"tf":1.0},"68":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"110":{"tf":1.7320508075688772},"111":{"tf":2.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":3.605551275463989},"116":{"tf":2.6457513110645907},"121":{"tf":1.0},"15":{"tf":2.0},"150":{"tf":1.0},"151":{"tf":1.0},"16":{"tf":2.23606797749979},"160":{"tf":1.0},"168":{"tf":1.0},"171":{"tf":3.0},"18":{"tf":2.23606797749979},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.0},"21":{"tf":1.7320508075688772},"22":{"tf":2.0},"23":{"tf":1.7320508075688772},"235":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":2.0},"266":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"32":{"tf":2.23606797749979},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":2.449489742783178},"363":{"tf":1.0},"364":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.449489742783178},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":3.1622776601683795},"48":{"tf":2.8284271247461903},"49":{"tf":2.449489742783178},"5":{"tf":1.0},"50":{"tf":1.7320508075688772},"51":{"tf":2.23606797749979},"53":{"tf":2.449489742783178},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.7320508075688772},"6":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"7":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"a":{"d":{"d":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"42":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":0,"docs":{},"x":{"4":{"6":{"8":{"d":{"a":{"a":{"3":{"3":{"d":{"df":0,"docs":{},"f":{"c":{"b":{"3":{"df":0,"docs":{},"e":{"1":{"7":{"1":{"6":{"2":{"b":{"b":{"c":{"8":{"9":{"2":{"8":{"df":0,"docs":{},"f":{"6":{"df":0,"docs":{},"e":{"c":{"7":{"3":{"7":{"4":{"4":{"b":{"b":{"0":{"8":{"d":{"8":{"3":{"8":{"d":{"1":{"b":{"6":{"df":0,"docs":{},"e":{"b":{"9":{"4":{"df":0,"docs":{},"e":{"a":{"c":{"9":{"9":{"2":{"6":{"9":{"b":{"2":{"9":{"df":0,"docs":{},"f":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"171":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"36":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":3,"docs":{"231":{"tf":1.0},"287":{"tf":1.0},"307":{"tf":1.0}}}},"d":{"df":1,"docs":{"61":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"236":{"tf":1.0},"24":{"tf":1.0},"4":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{},"r":{"1":{"df":1,"docs":{"192":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"192":{"tf":2.0}}},"<":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"192":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"u":{"8":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"_":{"1":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"3":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":10,"docs":{"141":{"tf":1.0},"192":{"tf":3.3166247903554},"278":{"tf":2.23606797749979},"280":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"342":{"tf":1.0},"54":{"tf":1.0},"93":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"384":{"tf":1.4142135623730951}}}}}},"m":{"df":1,"docs":{"319":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":14,"docs":{"128":{"tf":1.0},"191":{"tf":2.0},"192":{"tf":3.0},"193":{"tf":1.0},"194":{"tf":3.4641016151377544},"195":{"tf":2.8284271247461903},"262":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"302":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"42":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"220":{"tf":1.4142135623730951},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"284":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"159":{"tf":1.0},"84":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":1,"docs":{"154":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"38":{"tf":1.0}}},"t":{"df":19,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"150":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"246":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.4142135623730951},"291":{"tf":1.0},"32":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.4142135623730951},"68":{"tf":1.0},"71":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.4142135623730951}},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"219":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"141":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"224":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":25,"docs":{"105":{"tf":1.0},"137":{"tf":1.4142135623730951},"144":{"tf":1.0},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.23606797749979},"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"187":{"tf":2.0},"20":{"tf":1.0},"23":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.7320508075688772},"260":{"tf":1.7320508075688772},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"284":{"tf":1.0},"307":{"tf":1.0},"332":{"tf":1.7320508075688772},"43":{"tf":1.4142135623730951},"67":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"183":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"30":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":20,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"160":{"tf":2.23606797749979},"22":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.0},"225":{"tf":2.449489742783178},"226":{"tf":1.7320508075688772},"227":{"tf":1.0},"228":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"32":{"tf":1.0},"328":{"tf":2.0},"384":{"tf":1.0},"54":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":20,"docs":{"105":{"tf":1.0},"151":{"tf":1.4142135623730951},"185":{"tf":1.0},"199":{"tf":1.0},"253":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"287":{"tf":1.0},"306":{"tf":2.0},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"315":{"tf":1.0},"364":{"tf":1.4142135623730951},"373":{"tf":1.0}}}}}}},"y":{"df":2,"docs":{"66":{"tf":1.0},"68":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.7320508075688772}}}}}}}},"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":1,"docs":{"347":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"349":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"347":{"tf":1.4142135623730951},"348":{"tf":1.0}}}},"r":{"df":3,"docs":{"290":{"tf":1.0},"313":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"175":{"tf":1.0},"236":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"287":{"tf":1.0},"319":{"tf":1.4142135623730951},"332":{"tf":1.0},"374":{"tf":1.0},"42":{"tf":1.4142135623730951},"83":{"tf":1.0},"92":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.4142135623730951},"221":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"389":{"tf":1.0}}}}}}},"f":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"194":{"tf":2.6457513110645907},"302":{"tf":1.0},"327":{"tf":1.4142135623730951},"331":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"270":{"tf":1.0}}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":18,"docs":{"114":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"19":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.4142135623730951},"21":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"238":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"355":{"tf":1.0},"366":{"tf":1.0},"376":{"tf":1.0},"48":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1":{"tf":1.0},"351":{"tf":1.0}}}}}}},"y":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}}}},"df":3,"docs":{"183":{"tf":1.0},"273":{"tf":1.0},"291":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"14":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"293":{"tf":1.0},"326":{"tf":1.0},"388":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"11":{"tf":1.0},"9":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":2.23606797749979}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":6,"docs":{"142":{"tf":1.0},"145":{"tf":1.0},"237":{"tf":1.0},"254":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"45":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"328":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"21":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"217":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":16,"docs":{"1":{"tf":1.0},"114":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.4142135623730951},"323":{"tf":1.0},"374":{"tf":1.4142135623730951},"38":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"81":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"209":{"tf":1.0}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1":{"tf":2.0},"105":{"tf":1.0},"193":{"tf":1.0},"297":{"tf":1.0},"315":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":20,"docs":{"113":{"tf":1.0},"129":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"220":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"291":{"tf":1.0},"307":{"tf":1.0},"347":{"tf":1.0},"362":{"tf":2.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"260":{"tf":1.0}}}}}}},"df":3,"docs":{"14":{"tf":1.0},"17":{"tf":1.0},"250":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":9,"docs":{"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"256":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"383":{"tf":1.0},"61":{"tf":1.4142135623730951},"72":{"tf":1.0},"87":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"362":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"df":3,"docs":{"206":{"tf":1.0},"270":{"tf":1.0},"41":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"2":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"128":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":8,"docs":{"128":{"tf":1.0},"190":{"tf":1.0},"210":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"265":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"198":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.4142135623730951},"224":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.0},"286":{"tf":1.4142135623730951},"294":{"tf":1.0},"366":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"326":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":17,"docs":{"101":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"207":{"tf":1.0},"239":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"s":{"df":1,"docs":{"276":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"43":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":10,"docs":{"148":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.0},"183":{"tf":1.0},"289":{"tf":1.0},"296":{"tf":1.4142135623730951},"33":{"tf":1.0},"332":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":17,"docs":{"128":{"tf":1.0},"180":{"tf":1.0},"281":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"348":{"tf":1.0},"79":{"tf":2.23606797749979},"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},"91":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"206":{"tf":1.0},"207":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"146":{"tf":1.0},"15":{"tf":1.0},"33":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"151":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"362":{"tf":1.0},"376":{"tf":1.0},"63":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":4,"docs":{"238":{"tf":1.0},"260":{"tf":1.0},"270":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"218":{"tf":1.0},"373":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"2":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"151":{"tf":1.0},"20":{"tf":1.4142135623730951},"202":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.7320508075688772},"226":{"tf":1.0},"228":{"tf":1.0},"264":{"tf":1.0},"346":{"tf":1.0},"8":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"148":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":27,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"107":{"tf":1.0},"123":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.0},"16":{"tf":1.4142135623730951},"163":{"tf":1.0},"197":{"tf":1.4142135623730951},"207":{"tf":2.23606797749979},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"275":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"306":{"tf":1.0},"341":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"81":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":97,"docs":{"1":{"tf":2.23606797749979},"209":{"tf":1.0},"259":{"tf":2.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"0":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":3,"docs":{"1":{"tf":1.4142135623730951},"295":{"tf":1.0},"54":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":4,"docs":{"253":{"tf":2.0},"306":{"tf":1.0},"310":{"tf":1.0},"327":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"104":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"286":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"185":{"tf":1.0},"207":{"tf":2.0},"208":{"tf":1.0},"213":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.0},"319":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"287":{"tf":1.0},"288":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"356":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"269":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}},"i":{"d":{"df":47,"docs":{"11":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"121":{"tf":1.0},"125":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.0},"15":{"tf":1.0},"165":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"236":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.0},"293":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"366":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"82":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"b":{"df":5,"docs":{"1":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"168":{"tf":1.0},"171":{"tf":1.0},"288":{"tf":1.4142135623730951},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":3,"docs":{"256":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0}},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"257":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.0}}}},"_":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":102,"docs":{"107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"158":{"tf":1.4142135623730951},"164":{"tf":2.23606797749979},"165":{"tf":3.3166247903554},"166":{"tf":1.7320508075688772},"168":{"tf":1.0},"170":{"tf":2.8284271247461903},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.7320508075688772},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"204":{"tf":2.23606797749979},"219":{"tf":1.0},"22":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"238":{"tf":2.6457513110645907},"239":{"tf":2.8284271247461903},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"256":{"tf":1.7320508075688772},"257":{"tf":4.358898943540674},"258":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"269":{"tf":2.449489742783178},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"295":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"317":{"tf":1.7320508075688772},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"344":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.4142135623730951},"358":{"tf":1.0},"360":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":3.3166247903554},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.6457513110645907},"381":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":2.23606797749979},"387":{"tf":2.0},"73":{"tf":1.4142135623730951},"78":{"tf":1.0},"97":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"361":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":32,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"238":{"tf":1.4142135623730951},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.4142135623730951},"30":{"tf":1.0},"31":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":2.6457513110645907},"317":{"tf":3.4641016151377544},"318":{"tf":2.0},"319":{"tf":3.1622776601683795},"32":{"tf":3.4641016151377544},"320":{"tf":2.0},"321":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"41":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.4142135623730951},"49":{"tf":2.0},"53":{"tf":1.0},"67":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"318":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"388":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"148":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"188":{"tf":1.0},"224":{"tf":1.0},"332":{"tf":2.0},"67":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":4,"docs":{"33":{"tf":1.0},"369":{"tf":1.7320508075688772},"42":{"tf":1.0},"66":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":7,"docs":{"204":{"tf":1.0},"21":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0},"386":{"tf":1.0},"4":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1":{"tf":1.0}}}},"t":{"df":10,"docs":{"135":{"tf":1.0},"188":{"tf":1.0},"218":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"284":{"tf":1.0}}}}},"q":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"31":{"tf":1.0},"32":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.4142135623730951}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"104":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"225":{"tf":1.4142135623730951},"228":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"284":{"tf":1.0}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}},"s":{"df":4,"docs":{"179":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":5,"docs":{"172":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"85":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"253":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"151":{"tf":1.0}}}},"w":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"143":{"tf":1.4142135623730951}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"219":{"tf":1.0},"347":{"tf":1.0},"44":{"tf":1.0}}}},"df":0,"docs":{}},"df":49,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"106":{"tf":1.4142135623730951},"109":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"151":{"tf":1.0},"157":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"215":{"tf":1.4142135623730951},"218":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"248":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":2.0},"293":{"tf":1.0},"317":{"tf":1.0},"330":{"tf":1.4142135623730951},"335":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.0},"44":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"97":{"tf":1.0}},"m":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"193":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"218":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"355":{"tf":1.0},"80":{"tf":1.0}}}}}}}},"b":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"286":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"237":{"tf":1.7320508075688772},"238":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":7,"docs":{"163":{"tf":1.0},"254":{"tf":1.0},"313":{"tf":1.4142135623730951},"315":{"tf":1.0},"359":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"329":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"238":{"tf":3.605551275463989},"240":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"113":{"tf":1.0},"229":{"tf":1.0},"271":{"tf":1.0},"293":{"tf":1.0},"4":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":8,"docs":{"101":{"tf":1.0},"129":{"tf":1.0},"156":{"tf":1.0},"193":{"tf":1.0},"260":{"tf":1.0},"302":{"tf":1.7320508075688772},"72":{"tf":1.0},"97":{"tf":2.8284271247461903}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"97":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"187":{"tf":1.7320508075688772}},"e":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"187":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"295":{"tf":1.0}}},"df":0,"docs":{}}}},"df":2,"docs":{"1":{"tf":1.0},"80":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":56,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":2.23606797749979},"186":{"tf":2.0},"187":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":3.0},"238":{"tf":1.0},"239":{"tf":2.449489742783178},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"247":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.4142135623730951},"274":{"tf":2.0},"288":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"299":{"tf":1.0},"326":{"tf":1.0},"344":{"tf":1.0},"352":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"46":{"tf":1.4142135623730951},"50":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"115":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"42":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"129":{"tf":1.0},"18":{"tf":1.0},"42":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"20":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"312":{"tf":1.0},"58":{"tf":1.0}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"224":{"tf":1.0},"242":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"180":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.0},"387":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"1":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0}}}}}}}}}},"x":{"df":5,"docs":{"243":{"tf":1.0},"245":{"tf":1.0},"256":{"tf":1.0},"295":{"tf":1.0},"385":{"tf":1.0}}}},"df":6,"docs":{"115":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"285":{"tf":1.0},"297":{"tf":1.0},"333":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"4":{"tf":1.0},"53":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1":{"tf":1.0}}}},"i":{"df":1,"docs":{"273":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"347":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":2,"docs":{"286":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":4,"docs":{"105":{"tf":1.0},"204":{"tf":1.0},"288":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":19,"docs":{"125":{"tf":1.7320508075688772},"145":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.7320508075688772},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.4142135623730951},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.4142135623730951},"335":{"tf":1.4142135623730951},"362":{"tf":3.1622776601683795},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"114":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"140":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":7,"docs":{"22":{"tf":1.0},"23":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"328":{"tf":1.0},"41":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":1,"docs":{"213":{"tf":1.4142135623730951}}}},"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":6,"docs":{"0":{"tf":1.0},"122":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"388":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":23,"docs":{"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"131":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"207":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"254":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"349":{"tf":1.0},"61":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.4142135623730951},"91":{"tf":1.0},"97":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"330":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"31":{"tf":2.23606797749979},"388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":55,"docs":{"105":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"141":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"218":{"tf":1.0},"22":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"245":{"tf":1.0},"250":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"287":{"tf":1.0},"289":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.4142135623730951},"315":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"346":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"46":{"tf":1.0},"7":{"tf":1.0},"72":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"210":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"274":{"tf":1.0},"386":{"tf":2.0},"61":{"tf":2.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":3,"docs":{"114":{"tf":1.7320508075688772},"224":{"tf":1.0},"55":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":8,"docs":{"179":{"tf":1.4142135623730951},"180":{"tf":1.0},"206":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"218":{"tf":1.0},"268":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"225":{"tf":1.0},"257":{"tf":1.0},"284":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.0},"294":{"tf":1.0},"332":{"tf":1.0},"76":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":2.449489742783178},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"288":{"tf":1.0},"329":{"tf":1.0},"366":{"tf":1.4142135623730951},"385":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":22,"docs":{"107":{"tf":1.0},"137":{"tf":1.0},"141":{"tf":1.0},"158":{"tf":1.4142135623730951},"161":{"tf":1.0},"198":{"tf":1.0},"23":{"tf":1.0},"279":{"tf":1.4142135623730951},"313":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"369":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":2.0},"85":{"tf":1.0},"92":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"183":{"tf":1.0},"364":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"159":{"tf":1.0}}}}}}},"df":44,"docs":{"125":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.7320508075688772},"147":{"tf":3.7416573867739413},"151":{"tf":1.7320508075688772},"154":{"tf":1.0},"158":{"tf":1.7320508075688772},"159":{"tf":1.7320508075688772},"161":{"tf":2.6457513110645907},"164":{"tf":1.4142135623730951},"174":{"tf":2.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"90":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":2.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"158":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"110":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}},"v":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"115":{"tf":1.0}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"322":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":8,"docs":{"13":{"tf":1.0},"145":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"28":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"240":{"tf":1.0},"288":{"tf":1.0},"319":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"387":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":4,"docs":{"273":{"tf":1.0},"291":{"tf":1.0},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"197":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":9,"docs":{"218":{"tf":1.0},"227":{"tf":1.0},"265":{"tf":1.0},"284":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"374":{"tf":1.7320508075688772},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772}}}},"n":{"df":21,"docs":{"13":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":2.23606797749979},"22":{"tf":1.7320508075688772},"23":{"tf":2.6457513110645907},"264":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"31":{"tf":2.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"354":{"tf":1.0},"42":{"tf":1.0},"47":{"tf":1.4142135623730951},"9":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"16":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"173":{"tf":1.0},"197":{"tf":1.0},"384":{"tf":1.0},"85":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"t":{"df":4,"docs":{"128":{"tf":1.0},"137":{"tf":1.0},"389":{"tf":1.0},"7":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1":{"tf":1.7320508075688772},"128":{"tf":1.0},"137":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"387":{"tf":1.0}},"r":{"df":1,"docs":{"298":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"132":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"85":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"32":{"tf":1.0}}}},"m":{"df":4,"docs":{"1":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"387":{"tf":1.7320508075688772}},"e":{"df":52,"docs":{"110":{"tf":1.0},"111":{"tf":2.0},"112":{"tf":1.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"141":{"tf":1.0},"158":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"218":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"240":{"tf":1.0},"250":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.4142135623730951},"323":{"tf":1.0},"324":{"tf":1.4142135623730951},"334":{"tf":1.0},"342":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.0},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"373":{"tf":1.0},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.7320508075688772},"55":{"tf":1.0},"58":{"tf":1.0},"83":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"30":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"17":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":11,"docs":{"144":{"tf":1.0},"156":{"tf":1.0},"183":{"tf":1.0},"218":{"tf":1.4142135623730951},"224":{"tf":1.0},"253":{"tf":1.0},"273":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"274":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"67":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"30":{"tf":1.0},"342":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"172":{"tf":2.6457513110645907},"173":{"tf":2.23606797749979},"174":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.8284271247461903},"177":{"tf":1.7320508075688772},"178":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"284":{"tf":1.0},"358":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"1":{"df":1,"docs":{"192":{"tf":1.0}}},"2":{"df":1,"docs":{"192":{"tf":1.0}}},"df":6,"docs":{"131":{"tf":1.0},"192":{"tf":2.8284271247461903},"218":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"2":{"5":{"6":{"df":0,"docs":{},"k":{"1":{"df":2,"docs":{"30":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"r":{"1":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"204":{"tf":2.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":62,"docs":{"101":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"123":{"tf":1.0},"139":{"tf":1.0},"183":{"tf":1.0},"206":{"tf":1.0},"213":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"297":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"365":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"39":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"79":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":1.0},"240":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":25,"docs":{"101":{"tf":1.0},"141":{"tf":1.0},"16":{"tf":1.4142135623730951},"165":{"tf":1.0},"17":{"tf":1.0},"186":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"326":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"m":{"df":1,"docs":{"28":{"tf":1.0}}},"n":{"df":1,"docs":{"143":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"342":{"tf":1.0},"346":{"tf":1.0}}},"l":{"df":3,"docs":{"218":{"tf":1.0},"220":{"tf":1.0},"276":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"175":{"tf":1.0},"237":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"141":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"n":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"a":{"c":{"c":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":9,"docs":{"220":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.4142135623730951},"331":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"238":{"tf":2.6457513110645907},"240":{"tf":1.0},"260":{"tf":1.7320508075688772},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"317":{"tf":1.0},"33":{"tf":1.7320508075688772},"333":{"tf":1.4142135623730951},"36":{"tf":1.7320508075688772},"42":{"tf":3.605551275463989},"63":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":2,"docs":{"118":{"tf":1.0},"323":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"t":{"df":5,"docs":{"238":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"40":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":17,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"20":{"tf":1.0},"252":{"tf":1.0},"273":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"134":{"tf":1.0},"159":{"tf":1.0},"176":{"tf":1.0},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"228":{"tf":1.0},"342":{"tf":2.0},"344":{"tf":1.0},"345":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"166":{"tf":1.4142135623730951},"337":{"tf":1.0},"341":{"tf":2.0},"342":{"tf":1.7320508075688772},"351":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"1":{"tf":1.0}}}}},"v":{"df":3,"docs":{"148":{"tf":1.0},"271":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"10":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}},"t":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"3":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"&":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"1":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"279":{"tf":1.0}}},"2":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":40,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.4142135623730951},"151":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"277":{"tf":3.3166247903554},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"287":{"tf":1.0},"290":{"tf":1.0},"299":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.0},"326":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"49":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"270":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1":{"tf":1.0},"206":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"h":{"a":{"2":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"_":{"2":{"5":{"6":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"80":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"176":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"10":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}},"df":2,"docs":{"242":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}},"df":18,"docs":{"193":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"218":{"tf":3.3166247903554},"221":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":3.7416573867739413},"258":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.4142135623730951},"28":{"tf":1.0},"299":{"tf":1.0},"363":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951}}}},"z":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"96":{"tf":1.0}}}},"p":{"df":1,"docs":{"151":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"148":{"tf":2.0},"149":{"tf":1.0},"264":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"155":{"tf":1.0}}},"r":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"df":11,"docs":{"16":{"tf":1.0},"185":{"tf":1.7320508075688772},"242":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"344":{"tf":1.0},"39":{"tf":1.0},"44":{"tf":1.0},"77":{"tf":1.0}},"n":{"df":3,"docs":{"183":{"tf":1.0},"307":{"tf":1.0},"45":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"185":{"tf":1.4142135623730951},"186":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"260":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"319":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":2.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"42":{"tf":1.0},"64":{"tf":1.0}}}}}},"df":4,"docs":{"16":{"tf":1.4142135623730951},"260":{"tf":1.0},"274":{"tf":1.0},"66":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"207":{"tf":1.0},"217":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"123":{"tf":1.0},"163":{"tf":1.0},"165":{"tf":1.0},"23":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"21":{"tf":1.0},"284":{"tf":1.0},"333":{"tf":1.0},"345":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":26,"docs":{"10":{"tf":1.0},"111":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"238":{"tf":1.0},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"300":{"tf":1.0},"304":{"tf":1.0},"317":{"tf":1.4142135623730951},"319":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"73":{"tf":1.0},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"225":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"271":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"224":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":39,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"115":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":2.0},"218":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"23":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"347":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"67":{"tf":1.0},"71":{"tf":1.4142135623730951},"77":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"290":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"61":{"tf":1.0},"82":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"259":{"tf":1.0}}}},"p":{"df":5,"docs":{"145":{"tf":1.0},"146":{"tf":2.6457513110645907},"2":{"tf":1.0},"253":{"tf":1.0},"30":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"177":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"319":{"tf":1.0},"389":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"326":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":2.8284271247461903},"207":{"tf":1.4142135623730951},"217":{"tf":1.0},"218":{"tf":1.0},"271":{"tf":1.0},"47":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"159":{"tf":1.0},"379":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"349":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":2,"docs":{"148":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"288":{"tf":1.0},"297":{"tf":1.0}}}},"v":{"df":1,"docs":{"151":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"261":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"76":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"145":{"tf":1.0},"313":{"tf":1.0},"78":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"252":{"tf":1.0},"323":{"tf":1.0},"55":{"tf":1.0},"82":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"231":{"tf":1.0},"305":{"tf":1.0},"365":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"259":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"10":{"tf":1.0},"12":{"tf":1.0},"122":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"202":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"32":{"tf":1.0},"340":{"tf":1.7320508075688772},"359":{"tf":1.0},"388":{"tf":1.0},"48":{"tf":2.0},"71":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"28":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":3,"docs":{"220":{"tf":1.0},"265":{"tf":1.0},"307":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"156":{"tf":1.0},"231":{"tf":1.0},"236":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":2.0},"245":{"tf":1.0},"253":{"tf":1.0},"309":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"33":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.0},"386":{"tf":1.0},"63":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":24,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"206":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"334":{"tf":1.4142135623730951},"341":{"tf":1.0},"363":{"tf":1.0},"386":{"tf":1.4142135623730951},"42":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"96":{"tf":1.0}},"i":{"df":18,"docs":{"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"30":{"tf":1.0},"300":{"tf":1.0},"32":{"tf":1.7320508075688772},"353":{"tf":1.4142135623730951},"360":{"tf":1.0},"38":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"57":{"tf":1.0},"66":{"tf":1.0},"72":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"164":{"tf":1.0}}}},"n":{"d":{"df":5,"docs":{"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"224":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"g":{"a":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"206":{"tf":1.0},"282":{"tf":1.0},"347":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"42":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"124":{"tf":1.0},"299":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"366":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"29":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.7320508075688772}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":39,"docs":{"108":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"117":{"tf":2.23606797749979},"118":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.4142135623730951},"133":{"tf":1.0},"135":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.7320508075688772},"197":{"tf":1.0},"207":{"tf":2.0},"22":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"279":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"334":{"tf":1.0},"339":{"tf":1.0},"341":{"tf":1.0},"350":{"tf":1.0},"359":{"tf":1.4142135623730951},"369":{"tf":1.0},"386":{"tf":1.0},"61":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"1":{"tf":1.0},"137":{"tf":1.0},"146":{"tf":1.0},"149":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"207":{"tf":1.0},"243":{"tf":1.0},"260":{"tf":1.4142135623730951},"273":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"328":{"tf":1.0},"335":{"tf":1.4142135623730951},"45":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":22,"docs":{"1":{"tf":1.0},"121":{"tf":1.0},"216":{"tf":1.4142135623730951},"218":{"tf":2.0},"219":{"tf":2.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"236":{"tf":1.7320508075688772},"239":{"tf":1.7320508075688772},"241":{"tf":1.0},"242":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"319":{"tf":1.0},"34":{"tf":1.0},"363":{"tf":1.4142135623730951},"65":{"tf":1.0},"68":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":17,"docs":{"113":{"tf":1.0},"140":{"tf":2.0},"141":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"146":{"tf":2.0},"147":{"tf":2.23606797749979},"159":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"235":{"tf":1.0},"347":{"tf":1.0},"80":{"tf":1.0},"90":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}}},"i":{"c":{"df":5,"docs":{"148":{"tf":1.0},"312":{"tf":1.0},"323":{"tf":1.0},"346":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":4,"docs":{"32":{"tf":1.0},"34":{"tf":1.4142135623730951},"42":{"tf":1.0},"68":{"tf":1.4142135623730951}}}},"y":{"df":2,"docs":{"237":{"tf":1.0},"386":{"tf":1.0}}}},"d":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"118":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"118":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"b":{"\"":{"df":0,"docs":{},"x":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"3":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"118":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":5,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"235":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":12,"docs":{"129":{"tf":1.0},"22":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"324":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"88":{"tf":1.0}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"135":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":5,"docs":{"116":{"tf":1.0},"118":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"118":{"tf":1.0},"197":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"198":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"124":{"tf":1.0},"235":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"116":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"338":{"tf":1.7320508075688772},"386":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.0},"87":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"128":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"/":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"344":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"134":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"210":{"tf":1.0},"222":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"30":{"tf":1.0},"311":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.4142135623730951}},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"389":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":11,"docs":{"126":{"tf":1.0},"165":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"334":{"tf":1.0},"376":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"246":{"tf":2.0},"308":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":35,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"121":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.7320508075688772},"211":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"233":{"tf":1.0},"235":{"tf":2.0},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.4142135623730951},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"286":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":1.7320508075688772},"368":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":2,"docs":{"43":{"tf":1.4142135623730951},"44":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{">":{"(":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"257":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":1.0},"141":{"tf":1.0},"148":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.0},"220":{"tf":1.0},"230":{"tf":1.4142135623730951},"233":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":2.0},"245":{"tf":2.23606797749979},"246":{"tf":2.8284271247461903},"247":{"tf":2.23606797749979},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":3.1622776601683795},"258":{"tf":2.0},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":2.0},"284":{"tf":2.0},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.6457513110645907},"295":{"tf":2.23606797749979},"298":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.23606797749979},"303":{"tf":1.0},"304":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.4142135623730951},"331":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.7320508075688772},"364":{"tf":1.4142135623730951},"38":{"tf":1.0},"385":{"tf":1.7320508075688772},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"71":{"tf":1.0},"81":{"tf":1.0},"99":{"tf":1.0}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"136":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"0":{"df":1,"docs":{"136":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"198":{"tf":1.0},"207":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":3,"docs":{"136":{"tf":1.0},"198":{"tf":1.7320508075688772},"359":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"b":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"135":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"98":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"135":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},">":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":1,"docs":{"302":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":47,"docs":{"108":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"129":{"tf":2.8284271247461903},"131":{"tf":3.1622776601683795},"132":{"tf":3.1622776601683795},"133":{"tf":2.23606797749979},"134":{"tf":2.0},"135":{"tf":2.8284271247461903},"136":{"tf":3.0},"137":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.7320508075688772},"181":{"tf":1.0},"193":{"tf":1.4142135623730951},"198":{"tf":2.6457513110645907},"22":{"tf":1.7320508075688772},"23":{"tf":1.7320508075688772},"231":{"tf":1.4142135623730951},"239":{"tf":2.0},"242":{"tf":1.0},"247":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.7320508075688772},"317":{"tf":1.4142135623730951},"323":{"tf":1.7320508075688772},"324":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":2.0},"345":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"364":{"tf":1.0},"43":{"tf":1.0},"61":{"tf":1.0},"66":{"tf":1.0},"88":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}},"u":{"c":{"df":1,"docs":{"354":{"tf":1.0}},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":91,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"104":{"tf":2.23606797749979},"105":{"tf":1.7320508075688772},"107":{"tf":3.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"148":{"tf":1.0},"163":{"tf":2.23606797749979},"164":{"tf":2.8284271247461903},"165":{"tf":3.4641016151377544},"166":{"tf":2.6457513110645907},"167":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"184":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.7320508075688772},"195":{"tf":2.0},"198":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":2.8284271247461903},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"257":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"287":{"tf":1.7320508075688772},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":2.0},"300":{"tf":2.0},"302":{"tf":2.23606797749979},"307":{"tf":2.8284271247461903},"308":{"tf":1.7320508075688772},"309":{"tf":1.4142135623730951},"313":{"tf":1.0},"317":{"tf":1.7320508075688772},"323":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"350":{"tf":2.0},"355":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":2.449489742783178},"383":{"tf":2.23606797749979},"385":{"tf":2.23606797749979},"47":{"tf":1.4142135623730951},"71":{"tf":1.7320508075688772},"73":{"tf":2.23606797749979},"78":{"tf":1.7320508075688772},"96":{"tf":2.0},"97":{"tf":4.242640687119285},"98":{"tf":3.3166247903554},"99":{"tf":3.1622776601683795}},"u":{"df":0,"docs":{},"r":{"df":18,"docs":{"15":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"197":{"tf":1.0},"213":{"tf":1.4142135623730951},"220":{"tf":1.0},"24":{"tf":1.4142135623730951},"280":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"296":{"tf":1.0},"31":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"341":{"tf":1.0},"351":{"tf":1.0},"48":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":2.6457513110645907}}}}}},"u":{"b":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"42":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"115":{"tf":1.0},"121":{"tf":1.0},"51":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"176":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"226":{"tf":1.0},"227":{"tf":1.0},"238":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.4142135623730951},"325":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"207":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"136":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"183":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"153":{"tf":1.0},"224":{"tf":1.0},"67":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"153":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"16":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"42":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":17,"docs":{"105":{"tf":1.0},"142":{"tf":1.0},"177":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"207":{"tf":1.0},"22":{"tf":1.4142135623730951},"252":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"286":{"tf":1.0},"319":{"tf":1.0},"333":{"tf":1.0},"342":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"269":{"tf":1.0},"382":{"tf":1.0},"82":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"300":{"tf":1.0}}}}}}},"i":{":":{":":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"335":{"tf":1.0},"88":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"300":{"tf":1.0},"336":{"tf":1.0}}}},"c":{"df":5,"docs":{"337":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"274":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"116":{"tf":1.4142135623730951},"315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"324":{"tf":1.0},"327":{"tf":1.0},"335":{"tf":1.0}}}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"283":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"294":{"tf":1.0},"295":{"tf":1.0},"335":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":5,"docs":{"269":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"362":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"b":{"a":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"301":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"303":{"tf":1.0},"336":{"tf":1.0}}}},"df":3,"docs":{"249":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"317":{"tf":1.0},"324":{"tf":1.0},"335":{"tf":1.0}},"e":{":":{":":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"317":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":2,"docs":{"148":{"tf":1.0},"332":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"302":{"tf":1.4142135623730951},"336":{"tf":1.0}},"e":{":":{":":{"df":0,"docs":{},"t":{"df":1,"docs":{"360":{"tf":1.0}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"284":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":6,"docs":{"233":{"tf":1.0},"235":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"i":{"df":1,"docs":{"257":{"tf":1.0}}},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"250":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"335":{"tf":1.0},"339":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"360":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"336":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":130,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":2.0},"116":{"tf":2.0},"117":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":2.23606797749979},"16":{"tf":1.7320508075688772},"202":{"tf":1.7320508075688772},"206":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":2.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":2.0},"26":{"tf":1.7320508075688772},"260":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"29":{"tf":2.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"3":{"tf":2.0},"30":{"tf":3.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"31":{"tf":3.1622776601683795},"313":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"32":{"tf":3.1622776601683795},"320":{"tf":1.7320508075688772},"322":{"tf":1.4142135623730951},"324":{"tf":1.7320508075688772},"326":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"331":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":2.6457513110645907},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":2.0},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.7320508075688772},"343":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":2.6457513110645907},"44":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"46":{"tf":2.0},"47":{"tf":1.4142135623730951},"5":{"tf":1.7320508075688772},"51":{"tf":1.0},"54":{"tf":1.7320508075688772},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.7320508075688772},"61":{"tf":2.0},"63":{"tf":1.4142135623730951},"64":{"tf":2.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}},"t":{"df":5,"docs":{"210":{"tf":1.0},"211":{"tf":1.0},"216":{"tf":1.0},"280":{"tf":1.0},"331":{"tf":1.0}}}},"m":{"df":6,"docs":{"158":{"tf":1.7320508075688772},"160":{"tf":1.0},"201":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":12,"docs":{"208":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"34":{"tf":1.0},"351":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":2.8284271247461903}}},"y":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"308":{"tf":1.0}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"308":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"308":{"tf":2.0}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":24,"docs":{"103":{"tf":1.0},"163":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"299":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.0},"328":{"tf":1.0},"342":{"tf":1.0},"344":{"tf":1.0},"360":{"tf":1.4142135623730951},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"137":{"tf":1.0},"15":{"tf":1.0},"194":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.4142135623730951},"7":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"185":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"10":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"112":{"tf":1.0},"124":{"tf":1.7320508075688772},"13":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.7320508075688772},"165":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.4142135623730951},"195":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"299":{"tf":1.0},"328":{"tf":1.7320508075688772},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":27,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"107":{"tf":1.0},"179":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"279":{"tf":1.0},"306":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"350":{"tf":1.0},"386":{"tf":1.7320508075688772},"61":{"tf":1.0},"7":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":6,"docs":{"115":{"tf":1.0},"302":{"tf":3.4641016151377544},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"336":{"tf":1.0},"59":{"tf":1.0}},"e":{".":{"a":{"d":{"d":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"b":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"[":{"@":{"0":{"df":0,"docs":{},"x":{"a":{"1":{"1":{"c":{"df":1,"docs":{"302":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"a":{"df":1,"docs":{"175":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":1,"docs":{"175":{"tf":1.0}}}},"df":1,"docs":{"175":{"tf":1.0}}}}}}}}}}}},"df":27,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.7320508075688772},"185":{"tf":1.0},"187":{"tf":1.0},"201":{"tf":1.0},"203":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"250":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"31":{"tf":1.0},"314":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"347":{"tf":1.0},"355":{"tf":1.0},"374":{"tf":1.0},"43":{"tf":1.0}},"n":{"df":3,"docs":{"187":{"tf":1.0},"242":{"tf":1.0},"308":{"tf":1.0}}},"s":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"k":{"df":7,"docs":{"222":{"tf":1.0},"236":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"362":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"213":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1":{"tf":1.0}}}},"x":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"151":{"tf":1.0}}}},"df":20,"docs":{"191":{"tf":2.6457513110645907},"192":{"tf":2.449489742783178},"193":{"tf":1.4142135623730951},"194":{"tf":2.0},"195":{"tf":2.23606797749979},"197":{"tf":1.0},"198":{"tf":1.0},"237":{"tf":2.23606797749979},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"257":{"tf":1.7320508075688772},"307":{"tf":2.6457513110645907},"308":{"tf":2.8284271247461903},"314":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.7320508075688772},"344":{"tf":1.0},"360":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1":{"tf":1.4142135623730951}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"201":{"tf":1.0},"203":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"20":{"tf":1.0},"324":{"tf":1.4142135623730951},"328":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"286":{"tf":1.0},"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"376":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1":{"tf":1.4142135623730951},"256":{"tf":1.0},"384":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"16":{"tf":1.4142135623730951},"42":{"tf":1.0},"9":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":1,"docs":{"158":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"165":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"145":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"2":{"0":{"2":{"4":{"df":1,"docs":{"188":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"284":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"1":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"203":{"tf":1.0}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"191":{"tf":1.0},"192":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"20":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"23":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"166":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":1,"docs":{"141":{"tf":1.0}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"107":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"144":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"164":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"204":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"198":{"tf":1.0},"20":{"tf":1.4142135623730951},"204":{"tf":2.449489742783178},"23":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"194":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"147":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"192":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"143":{"tf":1.0}}}}}}},"df":47,"docs":{"107":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.0},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":2.0},"158":{"tf":1.7320508075688772},"16":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"188":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":3.605551275463989},"200":{"tf":2.449489742783178},"201":{"tf":3.7416573867739413},"202":{"tf":3.4641016151377544},"203":{"tf":3.872983346207417},"204":{"tf":3.1622776601683795},"205":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"23":{"tf":5.0990195135927845},"24":{"tf":1.0},"26":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0},"42":{"tf":1.0},"48":{"tf":2.23606797749979},"56":{"tf":1.0},"58":{"tf":1.4142135623730951},"94":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"31":{"tf":1.0}}}}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"206":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":22,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"282":{"tf":1.0},"288":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"326":{"tf":1.0},"329":{"tf":1.0},"364":{"tf":1.0},"383":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"90":{"tf":1.0}}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"315":{"tf":1.0}}}}}}},"y":{"'":{"df":0,"docs":{},"r":{"df":9,"docs":{"158":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":1.0},"294":{"tf":1.0},"334":{"tf":1.0},"362":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"16":{"tf":1.0},"28":{"tf":1.0}}},"k":{"df":1,"docs":{"207":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"285":{"tf":1.0},"324":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"107":{"tf":1.0},"9":{"tf":1.0}},"t":{"df":1,"docs":{"1":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":8,"docs":{"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"236":{"tf":1.0},"376":{"tf":1.0},"44":{"tf":1.0},"67":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":10,"docs":{"173":{"tf":1.0},"220":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":1.0},"260":{"tf":1.0},"284":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"366":{"tf":1.0},"40":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"101":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0}}}}}}}},"w":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.0}}}}},"u":{"df":3,"docs":{"231":{"tf":1.0},"238":{"tf":1.0},"282":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"df":25,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"148":{"tf":1.0},"183":{"tf":1.0},"230":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":3.0},"276":{"tf":1.0},"287":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":2.0},"311":{"tf":1.0},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.0},"324":{"tf":1.4142135623730951},"335":{"tf":1.0},"342":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}},"df":4,"docs":{"260":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"33":{"tf":1.0},"362":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}},"o":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"135":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}},"d":{"df":2,"docs":{"209":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"28":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":8,"docs":{"27":{"tf":1.4142135623730951},"28":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":2.0},"43":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"166":{"tf":1.0},"26":{"tf":1.0},"28":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"28":{"tf":2.8284271247461903},"42":{"tf":1.0},"43":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"117":{"tf":1.0},"188":{"tf":1.0},"203":{"tf":1.0},"284":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"207":{"tf":1.4142135623730951},"268":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"51":{"tf":1.0},"59":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"143":{"tf":1.0}}},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"117":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0},"354":{"tf":2.23606797749979},"53":{"tf":1.0}}}},"p":{"df":5,"docs":{"166":{"tf":1.0},"230":{"tf":1.0},"244":{"tf":1.0},"280":{"tf":1.0},"342":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"2":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"32":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"23":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"243":{"tf":1.0},"32":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"207":{"tf":1.0}}},"k":{"df":4,"docs":{"213":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"331":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"213":{"tf":1.0}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":60,"docs":{"1":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"142":{"tf":1.0},"153":{"tf":2.449489742783178},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"158":{"tf":1.0},"168":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":2.0},"224":{"tf":1.7320508075688772},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"238":{"tf":2.0},"242":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"260":{"tf":4.123105625617661},"261":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.7320508075688772},"290":{"tf":1.0},"32":{"tf":2.6457513110645907},"33":{"tf":2.23606797749979},"331":{"tf":1.0},"333":{"tf":1.7320508075688772},"335":{"tf":1.0},"34":{"tf":2.8284271247461903},"35":{"tf":1.0},"36":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.6457513110645907},"369":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"372":{"tf":1.4142135623730951},"373":{"tf":2.23606797749979},"376":{"tf":1.0},"384":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":2.23606797749979},"41":{"tf":1.0},"42":{"tf":4.47213595499958},"43":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"66":{"tf":3.0},"67":{"tf":2.449489742783178},"68":{"tf":4.47213595499958}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"239":{"tf":1.0}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}}}},"df":2,"docs":{"239":{"tf":1.4142135623730951},"240":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"148":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"324":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"317":{"tf":1.0},"324":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"b":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"242":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":1,"docs":{"241":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":3,"docs":{"238":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"a":{"df":0,"docs":{},"p":{"(":{"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"257":{"tf":1.0}}},"b":{"df":1,"docs":{"257":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":1,"docs":{"257":{"tf":1.4142135623730951}},"s":{"(":{"df":0,"docs":{},"k":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"(":{"c":{"df":1,"docs":{"242":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":36,"docs":{"1":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"210":{"tf":2.449489742783178},"211":{"tf":1.0},"213":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"225":{"tf":1.0},"236":{"tf":1.7320508075688772},"238":{"tf":3.1622776601683795},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":2.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"317":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":2.449489742783178},"67":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.4142135623730951},"42":{"tf":1.0},"67":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"67":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"320":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"213":{"tf":1.0},"227":{"tf":1.0},"231":{"tf":1.0},"258":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"375":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"271":{"tf":1.0},"373":{"tf":1.0},"376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"21":{"tf":1.0},"313":{"tf":1.0},"342":{"tf":1.0},"349":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"375":{"tf":1.0}},"i":{"df":1,"docs":{"218":{"tf":1.4142135623730951}}}}},"df":8,"docs":{"156":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.0},"257":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":1.0},"355":{"tf":1.0}},"v":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":23,"docs":{"125":{"tf":1.0},"130":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"192":{"tf":2.449489742783178},"217":{"tf":1.0},"238":{"tf":1.0},"285":{"tf":1.0},"325":{"tf":1.0},"345":{"tf":1.0},"349":{"tf":1.0},"376":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"91":{"tf":1.7320508075688772},"92":{"tf":1.7320508075688772}}},"n":{"c":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}}},"y":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"171":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"137":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"250":{"tf":1.0}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"161":{"tf":2.23606797749979},"355":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"145":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"183":{"tf":1.0},"186":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":27,"docs":{"114":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"158":{"tf":1.4142135623730951},"192":{"tf":2.0},"194":{"tf":1.0},"230":{"tf":1.0},"239":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.4142135623730951},"284":{"tf":1.0},"287":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0},"338":{"tf":1.0},"369":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"81":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.0}}}},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"250":{"tf":1.0},"251":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"250":{"tf":1.0},"260":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":23,"docs":{"231":{"tf":1.0},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.4142135623730951},"255":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":3.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0},"324":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":2.0}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{"df":1,"docs":{"103":{"tf":1.0}}},"2":{"df":1,"docs":{"103":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"198":{"tf":1.4142135623730951}},"e":{".":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"198":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"198":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"198":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},":":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"198":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":157,"docs":{"1":{"tf":1.0},"101":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.0},"109":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"120":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":2.449489742783178},"126":{"tf":2.0},"128":{"tf":2.449489742783178},"129":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"131":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"141":{"tf":1.0},"142":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":1.4142135623730951},"165":{"tf":1.0},"177":{"tf":2.23606797749979},"179":{"tf":2.6457513110645907},"180":{"tf":1.7320508075688772},"181":{"tf":2.0},"182":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":2.23606797749979},"190":{"tf":2.23606797749979},"191":{"tf":3.4641016151377544},"192":{"tf":4.123105625617661},"193":{"tf":2.6457513110645907},"194":{"tf":4.58257569495584},"195":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"213":{"tf":2.449489742783178},"214":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"22":{"tf":1.4142135623730951},"223":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":2.449489742783178},"234":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":2.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"251":{"tf":1.0},"254":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"269":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.4142135623730951},"285":{"tf":2.23606797749979},"286":{"tf":1.0},"287":{"tf":2.449489742783178},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.7320508075688772},"300":{"tf":2.0},"302":{"tf":2.0},"304":{"tf":1.7320508075688772},"307":{"tf":2.449489742783178},"308":{"tf":2.8284271247461903},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.7320508075688772},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"319":{"tf":1.0},"320":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":2.0},"327":{"tf":2.0},"328":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.7320508075688772},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":2.0},"336":{"tf":2.449489742783178},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.4142135623730951},"348":{"tf":2.0},"349":{"tf":1.0},"350":{"tf":1.0},"358":{"tf":1.7320508075688772},"359":{"tf":2.0},"360":{"tf":1.7320508075688772},"361":{"tf":2.23606797749979},"384":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"47":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772},"82":{"tf":3.0},"83":{"tf":2.6457513110645907},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":2.23606797749979},"97":{"tf":3.1622776601683795}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.4142135623730951},"247":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":3,"docs":{"19":{"tf":1.0},"218":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"df":6,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":2.449489742783178},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"2":{"5":{"6":{"df":2,"docs":{"82":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"2":{"df":3,"docs":{"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"6":{"4":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":2.449489742783178},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":2.23606797749979},"184":{"tf":1.0},"194":{"tf":1.0},"20":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":2.0},"260":{"tf":1.7320508075688772},"262":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"28":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"295":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0},"308":{"tf":2.0},"314":{"tf":1.0},"319":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"355":{"tf":1.4142135623730951},"358":{"tf":1.0},"363":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.7320508075688772},"376":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"382":{"tf":1.4142135623730951},"383":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"344":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":22,"docs":{"107":{"tf":1.4142135623730951},"124":{"tf":1.0},"143":{"tf":1.4142135623730951},"147":{"tf":1.0},"161":{"tf":1.0},"164":{"tf":2.0},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"191":{"tf":1.4142135623730951},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"73":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.4142135623730951},"82":{"tf":1.7320508075688772},"84":{"tf":1.7320508075688772},"94":{"tf":2.0}}},">":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"192":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"192":{"tf":2.8284271247461903}},"i":{"d":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"c":{"df":1,"docs":{"288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":43,"docs":{"231":{"tf":2.0},"232":{"tf":1.0},"238":{"tf":1.7320508075688772},"239":{"tf":1.0},"243":{"tf":1.0},"246":{"tf":1.7320508075688772},"249":{"tf":2.6457513110645907},"250":{"tf":3.605551275463989},"251":{"tf":2.23606797749979},"252":{"tf":2.23606797749979},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.4142135623730951},"262":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"28":{"tf":1.0},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"286":{"tf":1.7320508075688772},"288":{"tf":3.872983346207417},"294":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"300":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"308":{"tf":1.0},"317":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.4142135623730951},"385":{"tf":1.0}}},"df":1,"docs":{"323":{"tf":1.7320508075688772}}},"l":{"df":0,"docs":{},"e":{"b":{"1":{"2":{"8":{"df":1,"docs":{"342":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"271":{"tf":1.0},"319":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"20":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"128":{"tf":1.0}}}}},"r":{"df":5,"docs":{"21":{"tf":1.0},"22":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"42":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"71":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"1":{"tf":1.0},"156":{"tf":1.0},"172":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0},"322":{"tf":1.0},"352":{"tf":1.0},"362":{"tf":1.0},"373":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"85":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":24,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"19":{"tf":1.4142135623730951},"207":{"tf":1.7320508075688772},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"216":{"tf":1.0},"231":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"263":{"tf":2.23606797749979},"277":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"31":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"39":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.0},"71":{"tf":1.0}}}},"t":{"df":8,"docs":{"1":{"tf":1.0},"158":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.0},"23":{"tf":1.0},"342":{"tf":1.0},"70":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"x":{"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"251":{"tf":1.0},"274":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"k":{"df":5,"docs":{"147":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"82":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":15,"docs":{"101":{"tf":1.0},"107":{"tf":1.7320508075688772},"161":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"231":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.4142135623730951},"300":{"tf":1.0},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"99":{"tf":2.6457513110645907}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"247":{"tf":1.0},"342":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"142":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"286":{"tf":1.0},"347":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"99":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":20,"docs":{"151":{"tf":1.4142135623730951},"156":{"tf":1.0},"193":{"tf":1.4142135623730951},"213":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"335":{"tf":1.0},"354":{"tf":1.4142135623730951},"363":{"tf":1.0},"68":{"tf":1.4142135623730951},"7":{"tf":1.0}},"e":{"(":{"a":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"<":{"df":0,"docs":{},"t":{">":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"193":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":25,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.4142135623730951},"194":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"28":{"tf":1.0},"287":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":2.23606797749979},"31":{"tf":1.4142135623730951},"326":{"tf":1.0},"342":{"tf":1.0},"43":{"tf":1.0},"79":{"tf":1.0},"87":{"tf":1.0},"9":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":13,"docs":{"151":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"271":{"tf":1.0},"291":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.0},"362":{"tf":2.6457513110645907},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"65":{"tf":1.0}},"e":{"c":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"33":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"213":{"tf":1.0},"264":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"149":{"tf":1.0},"313":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"115":{"tf":1.0},"30":{"tf":1.0},"326":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"s":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"324":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"258":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1":{"tf":1.0},"257":{"tf":1.0},"276":{"tf":1.0},"284":{"tf":1.4142135623730951},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951}}}},"d":{"df":1,"docs":{"194":{"tf":1.7320508075688772}}},"df":241,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"107":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":1.7320508075688772},"113":{"tf":2.8284271247461903},"114":{"tf":1.4142135623730951},"116":{"tf":2.6457513110645907},"120":{"tf":1.0},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"132":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"145":{"tf":2.0},"146":{"tf":1.7320508075688772},"147":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.7320508075688772},"151":{"tf":2.0},"153":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":2.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"179":{"tf":1.0},"18":{"tf":1.0},"183":{"tf":2.0},"184":{"tf":2.449489742783178},"185":{"tf":1.0},"186":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"20":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"210":{"tf":1.0},"213":{"tf":2.6457513110645907},"214":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"229":{"tf":2.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979},"239":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":2.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":2.23606797749979},"254":{"tf":2.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"271":{"tf":2.0},"273":{"tf":2.23606797749979},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.4142135623730951},"284":{"tf":2.0},"285":{"tf":1.0},"286":{"tf":1.4142135623730951},"287":{"tf":2.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":2.449489742783178},"298":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.4142135623730951},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":1.7320508075688772},"303":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.7320508075688772},"309":{"tf":1.0},"310":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":1.0},"319":{"tf":2.0},"32":{"tf":2.23606797749979},"323":{"tf":1.0},"324":{"tf":2.0},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"33":{"tf":1.0},"331":{"tf":1.4142135623730951},"332":{"tf":2.0},"335":{"tf":1.4142135623730951},"339":{"tf":1.0},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"344":{"tf":1.7320508075688772},"345":{"tf":1.0},"347":{"tf":1.4142135623730951},"349":{"tf":1.0},"35":{"tf":1.0},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"358":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.4142135623730951},"362":{"tf":2.23606797749979},"363":{"tf":1.7320508075688772},"364":{"tf":1.7320508075688772},"368":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.7320508075688772},"385":{"tf":1.7320508075688772},"386":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":2.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"54":{"tf":1.4142135623730951},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"59":{"tf":2.0},"6":{"tf":1.7320508075688772},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":2.0},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":2.23606797749979},"78":{"tf":1.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.0},"9":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":2.23606797749979},"99":{"tf":2.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"145":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"129":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"193":{"tf":1.0}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"193":{"tf":1.7320508075688772}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"154":{"tf":2.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":21,"docs":{"129":{"tf":2.449489742783178},"141":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"193":{"tf":2.23606797749979},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":3.0},"278":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"63":{"tf":1.0},"96":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"142":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"254":{"tf":1.0},"317":{"tf":1.0},"48":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"82":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"8":{"df":5,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"359":{"tf":1.0}}},"df":5,"docs":{"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"137":{"tf":2.8284271247461903},"138":{"tf":1.7320508075688772}}},"i":{"df":0,"docs":{},"l":{"df":9,"docs":{"16":{"tf":1.0},"204":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"337":{"tf":1.4142135623730951},"376":{"tf":1.0},"42":{"tf":1.0}}}}}},"v":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"125":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"4":{"0":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"[":{"0":{"df":1,"docs":{"360":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":16,"docs":{"124":{"tf":1.0},"137":{"tf":2.6457513110645907},"159":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"273":{"tf":2.0},"274":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":98,"docs":{"1":{"tf":1.7320508075688772},"107":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":2.6457513110645907},"129":{"tf":1.0},"130":{"tf":2.449489742783178},"137":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"148":{"tf":1.7320508075688772},"149":{"tf":1.0},"150":{"tf":1.0},"155":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"161":{"tf":2.449489742783178},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.4142135623730951},"187":{"tf":2.23606797749979},"190":{"tf":1.0},"191":{"tf":3.0},"192":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":2.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"207":{"tf":1.0},"230":{"tf":1.0},"237":{"tf":2.8284271247461903},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"245":{"tf":1.0},"251":{"tf":1.4142135623730951},"254":{"tf":1.0},"265":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":3.0},"280":{"tf":1.0},"283":{"tf":3.1622776601683795},"284":{"tf":1.4142135623730951},"285":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"294":{"tf":3.1622776601683795},"295":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.7320508075688772},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":3.1622776601683795},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.4142135623730951},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"347":{"tf":1.7320508075688772},"349":{"tf":1.0},"355":{"tf":1.7320508075688772},"369":{"tf":1.0},"370":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.7320508075688772},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.7320508075688772},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":2.449489742783178},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"(":{"df":0,"docs":{},"h":{"df":1,"docs":{"383":{"tf":1.0}}}},"1":{"df":1,"docs":{"98":{"tf":1.0}}},"2":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":26,"docs":{"129":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"161":{"tf":1.7320508075688772},"172":{"tf":2.0},"173":{"tf":2.449489742783178},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"223":{"tf":1.0},"260":{"tf":1.4142135623730951},"342":{"tf":1.7320508075688772},"347":{"tf":1.0},"355":{"tf":2.449489742783178},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":2.8284271247461903},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"80":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"128":{"tf":1.7320508075688772},"342":{"tf":1.0}}}},"t":{"df":1,"docs":{"293":{"tf":1.0}}}},"df":2,"docs":{"193":{"tf":1.0},"333":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"291":{"tf":1.0},"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":3,"docs":{"253":{"tf":1.0},"346":{"tf":1.0},"82":{"tf":1.0}}}}}}},"df":8,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"302":{"tf":1.0},"355":{"tf":1.4142135623730951},"360":{"tf":1.0},"91":{"tf":1.0}},"e":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"(":{"b":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"u":{"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"y":{"<":{"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"1":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"128":{"tf":1.4142135623730951},"348":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"278":{"tf":1.0},"327":{"tf":1.0},"364":{"tf":1.0}}}}}},"df":3,"docs":{"278":{"tf":2.449489742783178},"280":{"tf":1.0},"327":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"277":{"tf":2.449489742783178},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},":":{":":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"369":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.4142135623730951}}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":1,"docs":{"360":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"276":{"tf":1.0}}},"l":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"128":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"126":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"28":{"tf":1.0}}}}},"u":{"1":{"2":{"8":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":14,"docs":{"124":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"161":{"tf":1.0},"260":{"tf":1.0},"262":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"286":{"tf":1.0},"344":{"tf":1.0},"348":{"tf":1.0},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"124":{"tf":1.0},"348":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"[":{"1":{",":{"2":{",":{"3":{",":{"4":{"df":1,"docs":{"360":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":1,"docs":{"124":{"tf":1.4142135623730951}},"u":{"8":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"91":{"tf":1.0}}},"3":{"0":{"df":1,"docs":{"124":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":31,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"118":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"124":{"tf":4.123105625617661},"125":{"tf":2.8284271247461903},"126":{"tf":3.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"132":{"tf":2.0},"136":{"tf":1.4142135623730951},"142":{"tf":1.0},"166":{"tf":1.0},"181":{"tf":1.0},"190":{"tf":1.0},"247":{"tf":1.0},"275":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.7320508075688772},"284":{"tf":1.0},"336":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"348":{"tf":3.1622776601683795},"349":{"tf":1.4142135623730951},"359":{"tf":1.7320508075688772},"360":{"tf":1.0},"369":{"tf":1.4142135623730951},"91":{"tf":2.23606797749979}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":15,"docs":{"128":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"197":{"tf":1.0},"218":{"tf":1.0},"220":{"tf":1.0},"231":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"95":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"213":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.4142135623730951},"250":{"tf":1.0},"256":{"tf":1.0},"274":{"tf":1.0},"32":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":1.0}}}}},"s":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"213":{"tf":1.7320508075688772},"214":{"tf":1.0},"22":{"tf":1.0},"257":{"tf":1.7320508075688772},"31":{"tf":1.0},"327":{"tf":2.0},"33":{"tf":1.0},"34":{"tf":2.0},"352":{"tf":1.0},"36":{"tf":1.7320508075688772},"362":{"tf":1.0},"363":{"tf":3.7416573867739413},"364":{"tf":2.0},"4":{"tf":1.0},"42":{"tf":3.1622776601683795},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.4142135623730951},"55":{"tf":2.23606797749979},"56":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0}}}}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":16,"docs":{"1":{"tf":1.0},"115":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"252":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":2.449489742783178},"286":{"tf":1.0},"287":{"tf":1.7320508075688772},"295":{"tf":1.0},"40":{"tf":1.0}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"213":{"tf":1.0},"326":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"_":{"df":1,"docs":{"165":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"165":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"165":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"165":{"tf":3.3166247903554}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"218":{"tf":1.0},"350":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":13,"docs":{"158":{"tf":1.0},"168":{"tf":2.6457513110645907},"169":{"tf":2.0},"170":{"tf":1.7320508075688772},"171":{"tf":2.23606797749979},"204":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"294":{"tf":1.0},"354":{"tf":1.0},"356":{"tf":1.4142135623730951},"357":{"tf":2.0},"362":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"260":{"tf":1.0},"343":{"tf":1.0},"373":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"10":{"tf":1.7320508075688772},"13":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"124":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"326":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"142":{"tf":1.0},"147":{"tf":1.0},"183":{"tf":1.0},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.7320508075688772},"20":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"279":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"250":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":53,"docs":{"1":{"tf":1.4142135623730951},"102":{"tf":1.0},"105":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"163":{"tf":1.0},"185":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.4142135623730951},"206":{"tf":1.0},"207":{"tf":1.4142135623730951},"238":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"283":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"312":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"331":{"tf":1.7320508075688772},"335":{"tf":1.0},"347":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"42":{"tf":1.0},"63":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"68":{"tf":1.0},"75":{"tf":1.0}}}},"df":2,"docs":{"307":{"tf":1.7320508075688772},"387":{"tf":1.0}},"e":{"'":{"d":{"df":1,"docs":{"192":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}},"v":{"df":2,"docs":{"143":{"tf":1.0},"259":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"285":{"tf":1.0}}}},"b":{"df":1,"docs":{"13":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"326":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"108":{"tf":1.0},"181":{"tf":1.0},"203":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"247":{"tf":1.0},"95":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"17":{"tf":1.0},"28":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":2,"docs":{"213":{"tf":1.0},"373":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"140":{"tf":1.0},"258":{"tf":1.0},"288":{"tf":1.0},"374":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"67":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"213":{"tf":1.0},"214":{"tf":1.0},"282":{"tf":1.0},"307":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"4":{"tf":1.0},"6":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":15,"docs":{"107":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"306":{"tf":2.23606797749979},"307":{"tf":3.4641016151377544},"308":{"tf":2.23606797749979},"309":{"tf":2.23606797749979},"310":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"312":{"tf":2.449489742783178},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.7320508075688772},"324":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"110":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.4142135623730951},"171":{"tf":1.4142135623730951},"19":{"tf":1.0},"207":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"264":{"tf":1.0},"288":{"tf":1.0},"366":{"tf":1.0},"384":{"tf":1.0},"44":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":30,"docs":{"101":{"tf":1.0},"105":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"165":{"tf":1.4142135623730951},"177":{"tf":1.0},"185":{"tf":1.4142135623730951},"195":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"238":{"tf":1.0},"271":{"tf":1.0},"294":{"tf":1.0},"323":{"tf":1.0},"325":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.0},"384":{"tf":1.0},"69":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"w":{"df":1,"docs":{"307":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":10,"docs":{"164":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"279":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"32":{"tf":1.0},"76":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":8,"docs":{"149":{"tf":1.0},"159":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"263":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"71":{"tf":1.0}}},"df":0,"docs":{},"k":{"df":25,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"101":{"tf":1.0},"117":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"136":{"tf":1.0},"144":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"189":{"tf":1.0},"193":{"tf":1.0},"242":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"366":{"tf":1.0},"389":{"tf":1.4142135623730951},"58":{"tf":1.0},"88":{"tf":1.0},"98":{"tf":1.0}}},"l":{"d":{"!":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"136":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"345":{"tf":1.4142135623730951},"359":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"210":{"tf":1.0},"22":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"—":{"df":0,"docs":{},"j":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"185":{"tf":1.0},"276":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":7,"docs":{"132":{"tf":1.0},"245":{"tf":1.0},"249":{"tf":1.0},"258":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.7320508075688772},"43":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"<":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"294":{"tf":1.0}}}},"df":0,"docs":{}}},"df":7,"docs":{"132":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"263":{"tf":1.0},"294":{"tf":1.0},"296":{"tf":1.0},"347":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":2.0},"15":{"tf":1.0},"189":{"tf":1.0},"200":{"tf":1.0},"218":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"14":{"tf":1.0},"149":{"tf":1.0},"155":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"388":{"tf":1.0},"51":{"tf":1.0},"93":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"x":{"\"":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"0":{"a":{"df":1,"docs":{"91":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":16,"docs":{"141":{"tf":2.449489742783178},"143":{"tf":3.0},"144":{"tf":2.449489742783178},"145":{"tf":2.6457513110645907},"146":{"tf":2.8284271247461903},"147":{"tf":1.7320508075688772},"204":{"tf":1.0},"210":{"tf":1.7320508075688772},"218":{"tf":1.0},"355":{"tf":3.0},"80":{"tf":1.7320508075688772},"81":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"91":{"tf":1.0}}},"y":{"/":{"df":0,"docs":{},"n":{"df":1,"docs":{"30":{"tf":1.0}}}},"df":9,"docs":{"141":{"tf":1.7320508075688772},"143":{"tf":2.0},"30":{"tf":1.0},"355":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.7320508075688772},"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"97":{"tf":1.7320508075688772}}}},"df":1,"docs":{"81":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"279":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"387":{"tf":1.0}}}},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"9":{"tf":1.0}}}},"r":{"df":5,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"75":{"tf":1.0}}}}}}}}}},"z":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":3,"docs":{"82":{"tf":1.0},"84":{"tf":1.4142135623730951},"85":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.4142135623730951}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"61":{"tf":1.0},"83":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"209":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"63":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"387":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"title":{"root":{"1":{"df":1,"docs":{"374":{"tf":1.0}}},"2":{"0":{"2":{"4":{"df":2,"docs":{"14":{"tf":1.0},"352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"375":{"tf":1.0}}},"3":{"df":1,"docs":{"376":{"tf":1.0}}},"8":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"179":{"tf":1.0},"181":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"385":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.0},"154":{"tf":1.0},"375":{"tf":1.0}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"160":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"30":{"tf":1.0},"63":{"tf":1.0}}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"389":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"d":{"d":{"df":1,"docs":{"28":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":10,"docs":{"119":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":1.0},"338":{"tf":1.0},"386":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"61":{"tf":1.0},"72":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}}},"df":1,"docs":{"115":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"270":{"tf":1.0},"319":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"259":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"366":{"tf":1.0}}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"361":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":5,"docs":{"384":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"291":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}}}}},"s":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"376":{"tf":1.0}}}},"t":{"df":1,"docs":{"207":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"201":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"300":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"37":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"343":{"tf":1.0}}},"df":1,"docs":{"386":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"2":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"2":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"373":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"341":{"tf":1.0},"4":{"tf":1.0}}}}},"d":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"176":{"tf":1.0},"77":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"0":{"tf":1.0}}},"l":{"df":1,"docs":{"376":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"81":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"360":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":4,"docs":{"29":{"tf":1.0},"366":{"tf":1.0},"42":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"359":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"132":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"203":{"tf":1.0},"242":{"tf":1.0}}},"t":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":1,"docs":{"387":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"224":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"36":{"tf":1.0},"37":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"6":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"42":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"122":{"tf":1.0},"28":{"tf":1.0},"340":{"tf":1.0},"375":{"tf":1.0},"377":{"tf":1.0}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"275":{"tf":1.0},"298":{"tf":1.0},"336":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"44":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"118":{"tf":1.0},"136":{"tf":1.0},"299":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"22":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"46":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"45":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"224":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"151":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":2,"docs":{"223":{"tf":1.0},"226":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"148":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"380":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"260":{"tf":1.0},"261":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"388":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"149":{"tf":1.0},"377":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0}}},"y":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"177":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"335":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"135":{"tf":1.0},"16":{"tf":1.0},"27":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"98":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"325":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"287":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"33":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"388":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"159":{"tf":1.0},"71":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"346":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"231":{"tf":1.0},"245":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"313":{"tf":1.0},"317":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"242":{"tf":1.0},"253":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"115":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"v":{"df":2,"docs":{"56":{"tf":1.0},"58":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"296":{"tf":1.0},"375":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"207":{"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":1,"docs":{"17":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"322":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"4":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"180":{"tf":1.0}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"289":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"298":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"145":{"tf":1.0},"147":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":1,"docs":{"389":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}}}},"m":{"a":{"c":{"df":1,"docs":{"12":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"332":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"344":{"tf":1.0},"345":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"373":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"35":{"tf":1.0},"372":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"188":{"tf":1.0},"246":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"119":{"tf":1.0},"338":{"tf":1.0}}}},"s":{"df":1,"docs":{"288":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"90":{"tf":1.0},"95":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"166":{"tf":1.0}}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":10,"docs":{"282":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"293":{"tf":1.0},"295":{"tf":1.0},"326":{"tf":1.0},"364":{"tf":1.0},"371":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"140":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"285":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"121":{"tf":1.0},"334":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":1,"docs":{"239":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"250":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"356":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"219":{"tf":1.0},"240":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"188":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"235":{"tf":1.0},"381":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":25,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"308":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"13":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"113":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"352":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":2,"docs":{"373":{"tf":1.0},"374":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"26":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"i":{"d":{"df":3,"docs":{"249":{"tf":1.0},"254":{"tf":1.0},"9":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"11":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"150":{"tf":1.0},"219":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"258":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"120":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"339":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"144":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"265":{"tf":1.0},"270":{"tf":1.0}},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"3":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"df":1,"docs":{"11":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"169":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"101":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}},"y":{"df":2,"docs":{"230":{"tf":1.0},"232":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"184":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"117":{"tf":1.0},"190":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"251":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"279":{"tf":1.0},"290":{"tf":1.0},"366":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"76":{"tf":1.0}}},"k":{"df":2,"docs":{"152":{"tf":1.0},"50":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"7":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":4,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":2,"docs":{"5":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"18":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"112":{"tf":1.0},"73":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":8,"docs":{"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"361":{"tf":1.0},"383":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"352":{"tf":1.0},"354":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"206":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"168":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":9,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"264":{"tf":1.0},"379":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}},"e":{"'":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"0":{"tf":1.0},"14":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"307":{"tf":1.0},"352":{"tf":1.0},"69":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"161":{"tf":1.0},"192":{"tf":1.0},"329":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"186":{"tf":1.0},"262":{"tf":1.0},"355":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"355":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":5,"docs":{"114":{"tf":1.0},"149":{"tf":1.0},"287":{"tf":1.0},"378":{"tf":1.0},"72":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"16":{"tf":1.0},"27":{"tf":1.0},"353":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"126":{"tf":1.0}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"b":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"301":{"tf":1.0}}}},"df":0,"docs":{}},"df":17,"docs":{"206":{"tf":1.0},"213":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"242":{"tf":1.0},"269":{"tf":1.0},"293":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"329":{"tf":1.0},"36":{"tf":1.0},"363":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"43":{"tf":1.0}},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"309":{"tf":1.0},"312":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"125":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"257":{"tf":1.0},"360":{"tf":1.0},"83":{"tf":1.0},"92":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"349":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"286":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"w":{"df":1,"docs":{"314":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"38":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"55":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"104":{"tf":1.0},"236":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"227":{"tf":1.0},"240":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"217":{"tf":1.4142135623730951},"220":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"172":{"tf":1.0},"173":{"tf":1.0},"216":{"tf":1.0},"237":{"tf":1.0}}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":11,"docs":{"116":{"tf":1.0},"16":{"tf":1.0},"171":{"tf":1.0},"22":{"tf":1.0},"27":{"tf":1.0},"29":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"175":{"tf":1.0},"187":{"tf":1.0},"43":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"223":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"151":{"tf":1.0},"268":{"tf":1.0},"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"194":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"374":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"129":{"tf":1.0},"198":{"tf":1.0},"362":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"41":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"296":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"79":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"325":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"259":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"170":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"387":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"316":{"tf":1.0},"319":{"tf":1.0},"32":{"tf":1.0},"49":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":26,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"109":{"tf":1.0},"127":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"205":{"tf":1.0},"209":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"330":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"74":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"237":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"183":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"386":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"114":{"tf":1.0},"55":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"147":{"tf":1.0},"161":{"tf":1.0},"174":{"tf":1.0},"376":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"319":{"tf":1.0},"320":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0}}}},"n":{"df":2,"docs":{"202":{"tf":1.0},"23":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":1,"docs":{"137":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"374":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"172":{"tf":1.0},"176":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"52":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"341":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":3,"docs":{"218":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":2,"docs":{"217":{"tf":1.0},"369":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"e":{"df":3,"docs":{"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"146":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"340":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"242":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"117":{"tf":1.0},"190":{"tf":1.0},"326":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"218":{"tf":1.0},"219":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"142":{"tf":1.0}}}}}}}}},"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"222":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"292":{"tf":1.0},"297":{"tf":1.0},"311":{"tf":1.0},"321":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"235":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"244":{"tf":1.0},"247":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"135":{"tf":1.0},"139":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"163":{"tf":1.0},"345":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"17":{"tf":1.0},"333":{"tf":1.0},"48":{"tf":1.0},"66":{"tf":1.0}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"df":5,"docs":{"121":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"208":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"228":{"tf":1.0},"280":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"351":{"tf":1.0}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":6,"docs":{"103":{"tf":1.0},"124":{"tf":1.0},"164":{"tf":1.0},"191":{"tf":1.0},"328":{"tf":1.0},"358":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"328":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}}}},"df":6,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"23":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":4,"docs":{"272":{"tf":1.0},"274":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"59":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"354":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"260":{"tf":1.0},"261":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"68":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"238":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":18,"docs":{"108":{"tf":1.0},"126":{"tf":1.0},"177":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"232":{"tf":1.0},"247":{"tf":1.0},"285":{"tf":1.0},"287":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"79":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"96":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"288":{"tf":1.0}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"263":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":2,"docs":{"30":{"tf":1.0},"9":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"284":{"tf":1.0},"295":{"tf":1.0},"318":{"tf":1.0}}}},"df":11,"docs":{"130":{"tf":1.0},"151":{"tf":1.0},"229":{"tf":1.0},"270":{"tf":1.0},"343":{"tf":1.0},"353":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"133":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"204":{"tf":1.0},"337":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":4,"docs":{"161":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"187":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"41":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"277":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0},"348":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"363":{"tf":1.0},"364":{"tf":1.0},"55":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"357":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"10":{"tf":1.0}}}},"df":0,"docs":{}}},"df":2,"docs":{"271":{"tf":1.0},"289":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"6":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":4,"docs":{"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"133":{"tf":1.0},"327":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"15":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}} \ No newline at end of file